body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Rock Salt', handwriting;
  font-size: 2.6rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'Rock Salt', handwriting;
  font-size: 0.8rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Architects Daughter', handwriting;
  font-size: 2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'Architects Daughter', handwriting;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((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: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #cc2952 !important;
}
.bg-success {
  background-color: #e1201d !important;
}
.bg-info {
  background-color: #e1201d !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #55b4d4 !important;
  border-color: #55b4d4 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2d8fb0 !important;
  border-color: #2d8fb0 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2d8fb0 !important;
  border-color: #2d8fb0 !important;
}
.btn-info,
.btn-info:active {
  background-color: #e1201d !important;
  border-color: #e1201d !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #9d1614 !important;
  border-color: #9d1614 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #9d1614 !important;
  border-color: #9d1614 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e1201d !important;
  border-color: #e1201d !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #9d1614 !important;
  border-color: #9d1614 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9d1614 !important;
  border-color: #9d1614 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #771830;
  color: #771830;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #cc2952;
  border-color: #cc2952;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #277e9c;
  color: #277e9c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #55b4d4;
  border-color: #55b4d4;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #55b4d4 !important;
  border-color: #55b4d4 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #871311;
  color: #871311;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #e1201d;
  border-color: #e1201d;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e1201d !important;
  border-color: #e1201d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #871311;
  color: #871311;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #e1201d;
  border-color: #e1201d;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #e1201d !important;
  border-color: #e1201d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #cc2952 !important;
}
.text-secondary {
  color: #55b4d4 !important;
}
.text-success {
  color: #e1201d !important;
}
.text-info {
  color: #e1201d !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #771830 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #277e9c !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #871311 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #871311 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e1201d;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #cc2952;
  border-color: #cc2952;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #cc2952;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5ccd6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f9d2d1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f9d2d1;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Architects Daughter', handwriting;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #cc2952;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #cc2952;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #cc2952;
  border-bottom-color: #cc2952;
}
.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: #cc2952 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #55b4d4 !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='%23cc2952' %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-scsNPfz8TI .navbar {
  background: #5b686b;
  transition: none;
  min-height: 30px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-scsNPfz8TI .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-scsNPfz8TI a {
  font-style: normal;
}
.cid-scsNPfz8TI .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-scsNPfz8TI .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-scsNPfz8TI .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-scsNPfz8TI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-scsNPfz8TI .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-scsNPfz8TI .nav-item:focus,
.cid-scsNPfz8TI .nav-link:focus {
  outline: none;
}
.cid-scsNPfz8TI .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-scsNPfz8TI .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-scsNPfz8TI .menu-logo {
  margin-right: auto;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-scsNPfz8TI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scsNPfz8TI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-scsNPfz8TI .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-scsNPfz8TI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-scsNPfz8TI button.navbar-toggler:focus {
  outline: none;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scsNPfz8TI .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-scsNPfz8TI .collapsed .btn {
  display: -webkit-flex;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-scsNPfz8TI .collapsed button.navbar-toggler {
  display: block;
}
.cid-scsNPfz8TI .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-scsNPfz8TI .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-scsNPfz8TI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-scsNPfz8TI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-scsNPfz8TI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-scsNPfz8TI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-scsNPfz8TI.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-scsNPfz8TI img {
    height: 3.8rem !important;
  }
  .cid-scsNPfz8TI .icon-wrap {
    margin-top: 1rem;
  }
  .cid-scsNPfz8TI .menu-wrap {
    flex-direction: column;
  }
  .cid-scsNPfz8TI .btn {
    display: -webkit-flex;
  }
  .cid-scsNPfz8TI button.navbar-toggler {
    display: block;
  }
  .cid-scsNPfz8TI .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-scsNPfz8TI .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-scsNPfz8TI .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing,
  .cid-scsNPfz8TI .navbar-collapse.show {
    display: block !important;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-nav,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-buttons,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-scsNPfz8TI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-scsNPfz8TI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-scsNPfz8TI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-scsNPfz8TI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-scsNPfz8TI .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-scsNPfz8TI .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-scsNPfz8TI .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-scsNPfz8TI .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-scsNPfz8TI .nav-link:hover,
.cid-scsNPfz8TI .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-rymwtkmLgB {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/01.jpg");
}
.cid-rymwtkmLgB h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-rymwtkmLgB h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymwtkmLgB h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymwtGlkdo {
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: #ffffff;
}
@media (max-width: 600px) {
  .cid-rymwtGlkdo .mbr-text {
    text-align: center;
  }
}
.cid-rymwtGlkdo .container-fluid {
  padding: 0;
}
.cid-rymwtGlkdo .media-content {
  max-width: 850px;
  margin: auto;
  padding: 1rem;
}
.cid-rymwtGlkdo img {
  height: 100%;
  object-fit: cover;
}
.cid-rymwtGlkdo .mbr-figure {
  height: 100%;
}
.cid-rymwtGlkdo .col-lg-6 {
  padding: 0;
}
.cid-rymwtGlkdo .row {
  margin: 0;
}
.cid-sK2Bz75wZI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #bae7f7;
}
.cid-sK2Bz75wZI h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-sK2Bz75wZI h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sK2Bz75wZI h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-sK2Bz75wZI h3:before,
  .cid-sK2Bz75wZI h3:after {
    display: none;
  }
}
.cid-sK2Bz75wZI H1 {
  color: #3b3ed1;
}
.cid-sK24tGWLy1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #bae7f7;
}
.cid-sK24tGWLy1 .mbr-text {
  color: #767676;
}
.cid-sK24tGWLy1 .card-subtitle {
  margin: 0;
}
.cid-sK24tGWLy1 .link {
  margin: 0;
  color: #e1201d;
}
.cid-sK24tGWLy1 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sK24tGWLy1 .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-sK24tGWLy1 img {
  transition: all 0.3s;
  object-fit: cover;
  height: auto;
}
.cid-sK24tGWLy1 .card-img {
  overflow: hidden;
  position: relative;
  height: auto;
  width: 100%;
}
.cid-sK24tGWLy1 .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sK24tGWLy1 .card-img:hover:before {
  opacity: 0.4;
}
.cid-sK24tGWLy1 .card-img:hover img {
  transform: scale(1.05);
}
.cid-sK24tGWLy1 .row {
  justify-content: center;
}
.cid-sK24tGWLy1 .card {
  margin-bottom: 3rem;
}
.cid-sK24tGWLy1 .card-title,
.cid-sK24tGWLy1 .card-img {
  color: #e1201d;
}
.cid-sK24tGWLy1 .mbr-text,
.cid-sK24tGWLy1 .link {
  color: #000000;
}
.cid-sK3Ex452hJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sK3Ex452hJ h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sK3Ex452hJ h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sK3Ex452hJ h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sK3Ex452hJ .mbr-text,
.cid-sK3Ex452hJ .mbr-section-btn {
  color: #767676;
}
.cid-sK3Ex452hJ H1 {
  color: #767676;
}
.cid-sK3BPoM6hT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dsc06611-2-2000x1333.jpg");
}
.cid-sK3BPoM6hT .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sK3BPoM6hT .mbr-figure img {
  height: 500px;
  width: 500px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-sK3BPoM6hT .mbr-text,
.cid-sK3BPoM6hT .mbr-section-btn {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sK3BPoM6hT img {
    height: 250px !important;
    width: 250px !important;
  }
}
.cid-sK3BPoM6hT H1 {
  color: #ffffff;
}
.cid-sK3EiVsuRY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sK3EiVsuRY h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sK3EiVsuRY h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sK3EiVsuRY h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sK3EiVsuRY .mbr-text,
.cid-sK3EiVsuRY .mbr-section-btn {
  color: #767676;
}
.cid-sK3EiVsuRY H1 {
  color: #767676;
}
.cid-sk0D72xcFj {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/where-1200x583.jpg");
}
.cid-sk0D72xcFj .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sk0D72xcFj .content-panel {
  padding: 3rem;
  background-color: #acd0b8;
}
@media (min-width: 767px) {
  .cid-sk0D72xcFj .text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-sk0D72xcFj .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-sk0D72xcFj .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-sk0D72xcFj .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-sk0D72xcFj .google-map .place-card {
  margin-left: 40px !important;
}
.cid-sk0D72xcFj .adress-block {
  text-align: left;
}
.cid-sfhcFahf3y {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-sfhcFahf3y img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-sfhcFahf3y .row {
  justify-content: center;
}
.cid-sfhcFahf3y .mbr-text,
.cid-sfhcFahf3y .mbr-section-btn {
  color: #cccccc;
}
.cid-sfhcFahf3y .icon-box {
  display: flex;
  align-items: center;
}
.cid-sfhcFahf3y .item {
  display: flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-sfhcFahf3y .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem !important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-sfhcFahf3y .date {
  margin: 0;
  color: #cccccc;
}
.cid-sfhcFahf3y .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-sfhcFahf3y .icon-box {
    flex-direction: column;
  }
  .cid-sfhcFahf3y .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-sfhcFahf3y img {
    margin-bottom: 2rem;
  }
}
.cid-sccbpeiy21 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sccbpeiy21 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sccbpeiy21 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sccbpeiy21 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sccbpeiy21 .mbr-text,
.cid-sccbpeiy21 .mbr-section-btn {
  color: #767676;
}
.cid-sccbpeiy21 H1 {
  color: #767676;
}
.cid-sccbcjlo7x {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sccbcjlo7x h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sccbcjlo7x h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sccbcjlo7x h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sccbcjlo7x .mbr-text,
.cid-sccbcjlo7x .mbr-section-btn {
  color: #767676;
}
.cid-sccbcjlo7x H1 {
  color: #767676;
}
.cid-sccfCtnJUo {
  background: #ffffff;
  padding-top: 105px;
  padding-bottom: 0px;
}
.cid-sccfCtnJUo .image-block {
  margin: auto;
  height: 400px;
  overflow: hidden;
}
.cid-sccfCtnJUo .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sccfCtnJUo .image-block:hover:before {
  opacity: 0.2;
}
.cid-sccfCtnJUo .image-block:hover .wrap {
  opacity: 1;
}
.cid-sccfCtnJUo h4 {
  letter-spacing: 2px;
}
.cid-sccfCtnJUo figcaption {
  position: relative;
}
.cid-sccfCtnJUo figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sccfCtnJUo img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sccfCtnJUo .card {
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sccfCtnJUo .wrap {
    opacity: 1!important;
  }
  .cid-sccfCtnJUo .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-scsNPfz8TI .navbar {
  background: #5b686b;
  transition: none;
  min-height: 30px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-scsNPfz8TI .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-scsNPfz8TI a {
  font-style: normal;
}
.cid-scsNPfz8TI .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-scsNPfz8TI .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-scsNPfz8TI .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-scsNPfz8TI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-scsNPfz8TI .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-scsNPfz8TI .nav-item:focus,
.cid-scsNPfz8TI .nav-link:focus {
  outline: none;
}
.cid-scsNPfz8TI .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-scsNPfz8TI .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-scsNPfz8TI .menu-logo {
  margin-right: auto;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-scsNPfz8TI .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-scsNPfz8TI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-scsNPfz8TI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-scsNPfz8TI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-scsNPfz8TI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-scsNPfz8TI .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-scsNPfz8TI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-scsNPfz8TI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-scsNPfz8TI button.navbar-toggler:focus {
  outline: none;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-scsNPfz8TI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-scsNPfz8TI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-scsNPfz8TI .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-scsNPfz8TI .collapsed .btn {
  display: -webkit-flex;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-scsNPfz8TI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-scsNPfz8TI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-scsNPfz8TI .collapsed button.navbar-toggler {
  display: block;
}
.cid-scsNPfz8TI .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-scsNPfz8TI .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-scsNPfz8TI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-scsNPfz8TI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-scsNPfz8TI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-scsNPfz8TI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-scsNPfz8TI.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-scsNPfz8TI img {
    height: 3.8rem !important;
  }
  .cid-scsNPfz8TI .icon-wrap {
    margin-top: 1rem;
  }
  .cid-scsNPfz8TI .menu-wrap {
    flex-direction: column;
  }
  .cid-scsNPfz8TI .btn {
    display: -webkit-flex;
  }
  .cid-scsNPfz8TI button.navbar-toggler {
    display: block;
  }
  .cid-scsNPfz8TI .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-scsNPfz8TI .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-scsNPfz8TI .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing,
  .cid-scsNPfz8TI .navbar-collapse.show {
    display: block !important;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-nav,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-buttons,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-scsNPfz8TI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-scsNPfz8TI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-scsNPfz8TI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-scsNPfz8TI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-scsNPfz8TI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-scsNPfz8TI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-scsNPfz8TI .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-scsNPfz8TI .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-scsNPfz8TI .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-scsNPfz8TI .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-scsNPfz8TI .nav-link:hover,
.cid-scsNPfz8TI .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-sctXF870oW .navbar {
  background: #5b686b;
  transition: none;
  min-height: 30px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-sctXF870oW .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-sctXF870oW a {
  font-style: normal;
}
.cid-sctXF870oW .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-sctXF870oW .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-sctXF870oW .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-sctXF870oW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sctXF870oW .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sctXF870oW .nav-item:focus,
.cid-sctXF870oW .nav-link:focus {
  outline: none;
}
.cid-sctXF870oW .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sctXF870oW .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sctXF870oW .menu-logo {
  margin-right: auto;
}
.cid-sctXF870oW .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sctXF870oW .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sctXF870oW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-sctXF870oW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sctXF870oW .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sctXF870oW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sctXF870oW .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sctXF870oW .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sctXF870oW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sctXF870oW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sctXF870oW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sctXF870oW .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sctXF870oW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sctXF870oW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sctXF870oW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sctXF870oW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sctXF870oW .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sctXF870oW .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sctXF870oW .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sctXF870oW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sctXF870oW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sctXF870oW .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sctXF870oW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sctXF870oW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sctXF870oW button.navbar-toggler:focus {
  outline: none;
}
.cid-sctXF870oW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sctXF870oW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sctXF870oW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sctXF870oW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sctXF870oW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sctXF870oW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sctXF870oW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sctXF870oW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sctXF870oW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sctXF870oW .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sctXF870oW .collapsed .btn {
  display: -webkit-flex;
}
.cid-sctXF870oW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sctXF870oW .collapsed .navbar-collapse.collapsing,
.cid-sctXF870oW .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sctXF870oW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sctXF870oW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sctXF870oW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sctXF870oW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sctXF870oW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sctXF870oW .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sctXF870oW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sctXF870oW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sctXF870oW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sctXF870oW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sctXF870oW .collapsed button.navbar-toggler {
  display: block;
}
.cid-sctXF870oW .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sctXF870oW .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sctXF870oW .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sctXF870oW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sctXF870oW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sctXF870oW .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sctXF870oW.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sctXF870oW img {
    height: 3.8rem !important;
  }
  .cid-sctXF870oW .icon-wrap {
    margin-top: 1rem;
  }
  .cid-sctXF870oW .menu-wrap {
    flex-direction: column;
  }
  .cid-sctXF870oW .btn {
    display: -webkit-flex;
  }
  .cid-sctXF870oW button.navbar-toggler {
    display: block;
  }
  .cid-sctXF870oW .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-sctXF870oW .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sctXF870oW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sctXF870oW .navbar-collapse.collapsing,
  .cid-sctXF870oW .navbar-collapse.show {
    display: block !important;
  }
  .cid-sctXF870oW .navbar-collapse.collapsing .navbar-nav,
  .cid-sctXF870oW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sctXF870oW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sctXF870oW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sctXF870oW .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sctXF870oW .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sctXF870oW .navbar-collapse.collapsing .navbar-buttons,
  .cid-sctXF870oW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sctXF870oW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sctXF870oW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sctXF870oW .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sctXF870oW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sctXF870oW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sctXF870oW .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sctXF870oW .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-sctXF870oW .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-sctXF870oW .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-sctXF870oW .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sctXF870oW .nav-link:hover,
.cid-sctXF870oW .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-sfeABrMiVj {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sfeABrMiVj h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-sfeABrMiVj h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sfeABrMiVj h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .cid-sfeABrMiVj h3:before,
  .cid-sfeABrMiVj h3:after {
    display: none;
  }
}
.cid-scunNBYXvy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-scunNBYXvy h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-scunNBYXvy h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-scunNBYXvy h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-scunNBYXvy .mbr-text,
.cid-scunNBYXvy .mbr-section-btn {
  color: #767676;
}
.cid-scunNBYXvy H1 {
  color: #767676;
}
.cid-scz1d0GD96 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-scz1d0GD96 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-scz1d0GD96 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-scz1d0GD96 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-scz1d0GD96 .mbr-text,
.cid-scz1d0GD96 .mbr-section-btn {
  color: #767676;
}
.cid-scz1d0GD96 H1 {
  color: #767676;
}
