@import url(https://fonts.googleapis.com/css?family=Cuprum:400,400i,700,700i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);





body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Cuprum', sans-serif;
  font-size: 4.6rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 7.36rem;
}
.display-2 {
  font-family: 'Cuprum', sans-serif;
  font-size: 2.5rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Cuprum', sans-serif;
  font-size: 1.8rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-5 {
  font-family: 'Cuprum', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.68rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #e44242 !important;
}
.bg-success {
  background-color: #232323 !important;
}
.bg-info {
  background-color: #f9e4d0 !important;
}
.bg-warning {
  background-color: #ececec !important;
}
.bg-danger {
  background-color: #767676 !important;
}
.btn-primary {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#e44242, #d51e1e);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
}
.btn-primary,
.btn-primary:active {
  background-color: #e44242 !important;
  border-color: #e44242 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #be1b1b !important;
  border-color: #be1b1b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #be1b1b !important;
  border-color: #be1b1b !important;
}
.btn-secondary {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#ff8d8d, #ff5a5a);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff8d8d !important;
  border-color: #ff8d8d !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff4141 !important;
  border-color: #ff4141 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff4141 !important;
  border-color: #ff4141 !important;
}
.btn-info {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#f9e4d0, #f3caa3);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
}
.btn-info,
.btn-info:active {
  background-color: #f9e4d0 !important;
  border-color: #f9e4d0 !important;
  color: #b36317 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #b36317 !important;
  background-color: #f0bd8c !important;
  border-color: #f0bd8c !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #b36317 !important;
  background-color: #f0bd8c !important;
  border-color: #f0bd8c !important;
}
.btn-success {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#232323, #0a0a0a);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
}
.btn-success,
.btn-success:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#ececec, #d3d3d3);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #6d6d6d !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-danger {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#767676, #5d5d5d);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
}
.btn-danger,
.btn-danger:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-white {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#ffffff, #e6e6e6);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
  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 {
  border-radius: 8px;
  border: 0.01px;
  background: linear-gradient(#333333, #1a1a1a);
  box-shadow: 0 -4px rgba(0, 0, 0, 0.2) inset, 0.15em 0.15em 0.5em #434242;
  transition: .7s;
}
.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: #a81818;
  color: #a81818;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #e44242;
  border-color: #e44242;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e44242 !important;
  border-color: #e44242 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #ff2727;
  color: #ff2727;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff8d8d;
  border-color: #ff8d8d;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8d8d !important;
  border-color: #ff8d8d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #edb076;
  color: #edb076;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b36317;
  background-color: #f9e4d0;
  border-color: #f9e4d0;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #b36317 !important;
  background-color: #f9e4d0 !important;
  border-color: #f9e4d0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #232323;
  border-color: #232323;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #6d6d6d;
  background-color: #ececec;
  border-color: #ececec;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #6d6d6d !important;
  background-color: #ececec !important;
  border-color: #ececec !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !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: #e44242 !important;
}
.text-secondary {
  color: #ff8d8d !important;
}
.text-success {
  color: #232323 !important;
}
.text-info {
  color: #f9e4d0 !important;
}
.text-warning {
  color: #ececec !important;
}
.text-danger {
  color: #767676 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #a81818 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff2727 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #edb076 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b9b9b9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #434343 !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: #f9e4d0;
}
.alert-warning {
  background-color: #ececec;
}
.alert-danger {
  background-color: #767676;
}
.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: #e44242;
  border-color: #e44242;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e44242;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef5f5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d5d5d5;
}
.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: #b6b6b6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #e44242;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #e44242;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #e44242;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e44242;
  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: #e44242;
  border-bottom-color: #e44242;
}
.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: #e44242 !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: #ff8d8d !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: 100px;
  height: 100px;
  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='%23e44242' %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.3;
}
.cid-sg82HGKWkj {
  padding-top: 175px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/01-2000x1014.jpg");
}
.cid-sg82HGKWkj h1 {
  color: #616161;
}
.cid-sg82HGKWkj h2,
.cid-sg82HGKWkj h3,
.cid-sg82HGKWkj p {
  color: #767676;
}
.cid-sg82HGKWkj .mbr-section-subtitle {
  font-style: italic;
}
.cid-sg82HGKWkj H1 {
  color: #ffffff;
}
.cid-sg82HGKWkj .mbr-text,
.cid-sg82HGKWkj .mbr-section-btn {
  color: #ffffff;
}
.cid-sg82HGKWkj H3 {
  color: #ffffff;
}
.cid-sg82HGKWkj P {
  text-align: center;
  color: #ffffff;
}
.cid-sg82HGKWkj .counter-container {
  color: #e44242;
}
.cid-sg82HGKWkj .counter-container ul {
  margin-bottom: 0;
}
.cid-sg82HGKWkj .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sg82HGKWkj .counter-container ul li:before {
  position: absolute;
  left: 0px;
  right: 15px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 10px 0px;
  line-height: 15px;
  transition: all .2s;
  color: #ffffff;
  background: #e44242;
  width: 40px;
  height: 5px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-sg82HGKWkj .mbr-text {
  color: #ffffff;
}
.cid-sg82HGKWkj .mbr-phone {
  padding: 1rem 0rem 0rem 0rem;
}
.cid-sg82HGKWkj .mbr-section-btn {
  padding: 0rem 0rem 0rem 0.5rem;
}
.cid-sg82HGKWkj .image-block {
  margin: auto;
  width: 100% !important;
  padding-top: 5rem;
}
.cid-six00RFcFl {
  padding-top: 75px;
  padding-bottom: 50px;
  background-color: #ffffff;
}
.cid-six00RFcFl .mbr-section-subtitle {
  color: #465052;
  text-align: center;
}
.cid-six00RFcFl .underline {
  align: center;
}
.cid-six00RFcFl .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six00RFcFl H2 {
  color: #232323;
  text-align: center;
}
.cid-six00RFcFl H3 {
  color: #232323;
}
.cid-six00RFcFl .title {
  padding-bottom: 1rem;
}
.cid-six00RFcFl .subtitle {
  padding-top: 1rem;
}
.cid-six0iekxGt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-six0iekxGt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-six0iekxGt p {
  color: #767676;
  text-align: left;
}
.cid-six0iekxGt .card-box {
  padding-top: 2rem;
}
.cid-six0iekxGt .pro-shadow img {
  border-radius: 8px;
  box-shadow: .25em .25em 1.7em #cfcfcf;
}
.cid-six0iekxGt .card-wrapper {
  height: 100%;
}
.cid-six0iekxGt H1 {
  color: #232323;
  text-align: left;
}
.cid-six0iekxGt H2 {
  color: #232323;
  text-align: left;
}
.cid-six0iekxGt .mbr-text {
  text-align: left;
  border-bottom: 1px solid #ececec;
}
.cid-six0iekxGt .card-title {
  text-align: left;
  color: #e44242;
}
.cid-six0iekxGt .mbr-section-btn {
  padding-bottom: 2rem;
}
.cid-six0iekxGt H3 {
  color: #232323;
}
.cid-six0iekxGt .card {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.cid-six0iekxGt P {
  color: #465052;
}
.cid-siLukXLPjJ {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-siLukXLPjJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-siLukXLPjJ .mbr-figure {
    padding-bottom: 3rem;
  }
}
.cid-siLukXLPjJ .pro-shadow img {
  border-radius: 8px;
  box-shadow: .25em .25em 1.7em #cfcfcf;
}
@media (max-width: 767px) {
  .cid-siLukXLPjJ .mbr-text {
    text-align: center;
  }
}
.cid-siLukXLPjJ DIV {
  color: #232323;
}
.cid-siLukXLPjJ H1 {
  color: #232323;
}
.cid-siLukXLPjJ H3 {
  color: #232323;
}
.cid-siLukXLPjJ .mbr-text,
.cid-siLukXLPjJ .mbr-section-btn {
  color: #465052;
}
.cid-siLukXLPjJ .inform {
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 8px;
}
.cid-siLukXLPjJ .inform2 {
  padding: 1rem 1.5rem 1rem 1.5rem;
  margin: 1.5rem 0rem 1.5rem 0rem;
}
.cid-sixLLjwAqV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sixLLjwAqV .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-sixLLjwAqV .section-text {
  padding: 2rem 0;
}
.cid-sixLLjwAqV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sixLLjwAqV .inner-container {
    width: 100% !important;
  }
}
.cid-six41jMjp2 {
  padding-top: 75px;
  padding-bottom: 25px;
  background-color: #ffffff;
}
.cid-six41jMjp2 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six41jMjp2 .underline {
  align: center;
}
.cid-six41jMjp2 .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six41jMjp2 H2 {
  color: #232323;
  text-align: center;
}
.cid-six41jMjp2 H3 {
  color: #232323;
}
.cid-six41jMjp2 .title {
  padding-bottom: 1rem;
}
.cid-six41jMjp2 .subtitle {
  padding-top: 1rem;
}
.cid-six0rGf1fz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six0rGf1fz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-six0rGf1fz p {
  color: #767676;
  text-align: left;
}
.cid-six0rGf1fz .card-box {
  padding-top: 2rem;
}
.cid-six0rGf1fz .card-wrapper {
  height: 100%;
}
.cid-six0rGf1fz H1 {
  color: #232323;
  text-align: left;
}
.cid-six0rGf1fz H2 {
  color: #232323;
  text-align: left;
}
.cid-six0rGf1fz .mbr-text,
.cid-six0rGf1fz .mbr-section-btn {
  text-align: left;
}
.cid-six0rGf1fz .card-title {
  text-align: left;
  color: #e44242;
}
.cid-six0rGf1fz P {
  color: #465052;
}
.cid-sixLMyVLTy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sixLMyVLTy .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-sixLMyVLTy .section-text {
  padding: 2rem 0;
}
.cid-sixLMyVLTy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sixLMyVLTy .inner-container {
    width: 100% !important;
  }
}
.cid-siLBj8Q5lI {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-siLBj8Q5lI .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-siLBj8Q5lI .underline {
  align: center;
}
.cid-siLBj8Q5lI .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-siLBj8Q5lI H2 {
  color: #232323;
  text-align: center;
}
.cid-siLBj8Q5lI H3 {
  color: #232323;
}
.cid-siLBj8Q5lI .title {
  padding-bottom: 1rem;
}
.cid-siLBj8Q5lI .subtitle {
  padding-top: 1rem;
}
.cid-sj8C98j3yk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sj8C98j3yk p {
  color: #767676;
  text-align: left;
}
.cid-sj8C98j3yk .pro-shadow img {
  border-radius: 8px;
  box-shadow: .25em .25em 1.7em #cfcfcf;
}
.cid-sj8C98j3yk .card-wrapper {
  height: 100%;
}
.cid-sj8C98j3yk H1 {
  color: #232323;
  text-align: left;
}
.cid-sj8C98j3yk H2 {
  color: #232323;
  text-align: left;
}
.cid-sj8C98j3yk .mbr-text,
.cid-sj8C98j3yk .mbr-section-btn {
  text-align: left;
}
.cid-sj8C98j3yk .card-title {
  text-align: left;
  color: #232323;
}
.cid-sj8C98j3yk .mbr-section-btn {
  padding-bottom: 2rem;
}
.cid-sj8C98j3yk H3 {
  color: #e44242;
  text-align: left;
}
.cid-sj8C98j3yk H4 {
  color: #333333;
  text-align: left;
}
.cid-sj8C98j3yk .card {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.cid-sj8C98j3yk .card-box {
  padding-top: 2rem;
}
.cid-sj8C98j3yk .card-box-dop {
  padding-top: 2rem;
  padding: 2rem;
}
.cid-sj8C98j3yk .dop {
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin: 0rem 0rem 1.5rem 0rem;
}
.cid-siLG9aHjTs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-siLG9aHjTs .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-siLG9aHjTs .section-text {
  padding: 2rem 0;
}
.cid-siLG9aHjTs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-siLG9aHjTs .inner-container {
    width: 100% !important;
  }
}
.cid-six0saANGR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-six0saANGR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-six0saANGR .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-six0saANGR .mbr-text {
    text-align: center;
  }
}
.cid-six0saANGR DIV {
  color: #232323;
}
.cid-six0saANGR H1 {
  color: #232323;
}
.cid-six0saANGR H3 {
  color: #232323;
}
.cid-six0saANGR .mbr-text,
.cid-six0saANGR .mbr-section-btn {
  color: #465052;
}
.cid-six0saANGR .inform {
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 8px;
}
.cid-six0saANGR .inform2 {
  padding: 1rem 1.5rem 1rem 1.5rem;
  margin: 1.5rem 0rem 1.5rem 0rem;
}
.cid-six0EpgXVC {
  padding-top: 100px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/10-fotor-2000x1014.jpg");
}
.cid-six0EpgXVC .form-control,
.cid-six0EpgXVC .form-control:focus {
  background: #efefef;
  border: 3px solid #cccccc;
}
.cid-six0EpgXVC .mbr-section-btn {
  padding-bottom: 2.0rem;
}
.cid-six0EpgXVC .underline {
  align: center;
}
.cid-six0EpgXVC .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six0EpgXVC .forma {
  padding-top: 2rem;
}
.cid-six0EpgXVC .form-container {
  transition: all .2s;
  border-radius: 8px;
  border: 5px solid #cccccc;
  box-shadow: .15em .15em .5em #434242;
  padding: 2.0rem;
  background: linear-gradient(#ffffff, #e3d6c8);
  border: none;
}
.cid-six0EpgXVC textarea.form-control {
  min-height: 188px;
}
.cid-six0EpgXVC .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-six0EpgXVC .content-container {
    padding-right: 5rem;
  }
}
.cid-six0EpgXVC H1 {
  text-align: left;
}
.cid-six0EpgXVC .mbr-text,
.cid-six0EpgXVC .mbr-section-btn {
  text-align: left;
}
.cid-six0EpgXVC .form-title {
  text-align: left;
  color: #333333;
}
.cid-six0EpgXVC .form-subtitle,
.cid-six0EpgXVC input.field {
  text-align: left;
}
.cid-six0EpgXVC .image-block {
  margin: auto;
  width: 100% !important;
  padding-top: 4rem;
}
.cid-six42AsCCw {
  padding-top: 100px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six42AsCCw .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six42AsCCw .underline {
  align: center;
}
.cid-six42AsCCw .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six42AsCCw H2 {
  color: #232323;
  text-align: center;
}
.cid-six42AsCCw H3 {
  color: #232323;
}
.cid-six42AsCCw .title {
  padding-bottom: 1rem;
}
.cid-six42AsCCw .subtitle {
  padding-top: 1rem;
}
.cid-six0tZutJv {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-six0tZutJv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-six0tZutJv .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-six0tZutJv .mbr-text {
    text-align: center;
  }
}
.cid-six0tZutJv .mbr-text,
.cid-six0tZutJv .mbr-section-btn {
  color: #767676;
}
.cid-six0tZutJv H1 {
  color: #232323;
}
.cid-six0tZutJv H3 {
  color: #232323;
}
.cid-six0tZutJv .card-title,
.cid-six0tZutJv .card-img {
  text-align: left;
}
.cid-six0tZutJv .card-box {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.cid-six0tZutJv .card-wrapper {
  height: 100%;
  padding: 1rem 0rem 1rem 0rem;
}
.cid-six0tZutJv .pro-shadow img {
  border-radius: 8px;
  box-shadow: .25em .25em 1.7em #cfcfcf;
}
.cid-six0tZutJv .mbr-section-btn {
  padding-top: 1.5rem;
}
.cid-sixLOZI9kj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sixLOZI9kj .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-sixLOZI9kj .section-text {
  padding: 2rem 0;
}
.cid-sixLOZI9kj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sixLOZI9kj .inner-container {
    width: 100% !important;
  }
}
.cid-six43GX9hV {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six43GX9hV .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six43GX9hV .underline {
  align: center;
}
.cid-six43GX9hV .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six43GX9hV H2 {
  color: #232323;
  text-align: center;
}
.cid-six43GX9hV H3 {
  color: #232323;
}
.cid-six43GX9hV .title {
  padding-bottom: 1rem;
}
.cid-six43GX9hV .subtitle {
  padding-top: 1rem;
}
.cid-six0wuKbld {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-six0wuKbld h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-six0wuKbld p {
  color: #767676;
  text-align: left;
}
.cid-six0wuKbld .card-box {
  padding-top: 0rem;
}
.cid-six0wuKbld .card-wrapper {
  height: 100%;
  padding: 1.5rem;
}
.cid-six0wuKbld H1 {
  color: #232323;
  text-align: left;
}
.cid-six0wuKbld H2 {
  color: #232323;
  text-align: left;
}
.cid-six0wuKbld .mbr-text,
.cid-six0wuKbld .mbr-section-btn {
  text-align: left;
}
.cid-six0wuKbld .card-title {
  text-align: center;
}
.cid-sixLQ7UqoX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sixLQ7UqoX .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-sixLQ7UqoX .section-text {
  padding: 2rem 0;
}
.cid-sixLQ7UqoX .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sixLQ7UqoX .inner-container {
    width: 100% !important;
  }
}
.cid-six446SPax {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six446SPax .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six446SPax .underline {
  align: center;
}
.cid-six446SPax .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six446SPax H2 {
  color: #232323;
  text-align: center;
}
.cid-six446SPax H3 {
  color: #232323;
}
.cid-six446SPax .title {
  padding-bottom: 1rem;
}
.cid-six446SPax .subtitle {
  padding-top: 1rem;
}
.cid-siMePynIen {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-siMePynIen .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-siMePynIen .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siMePynIen .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siMePynIen .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-siMePynIen .row > .row {
  display: block;
}
.cid-siMePynIen .mbr-gallery-item {
  width: 100%;
}
.cid-siMePynIen .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-siMePynIen .mbr-gallery-item > div {
  position: relative;
}
.cid-siMePynIen .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-siMePynIen .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-siMePynIen .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-siMePynIen .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-six0t5XyEu {
  padding-top: 175px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/11-fotor-2000x1014.jpg");
}
.cid-six0t5XyEu .form-control,
.cid-six0t5XyEu .form-control:focus {
  background: #efefef;
  border: 3px solid #cccccc;
}
.cid-six0t5XyEu .mbr-section-btn {
  padding-bottom: 2.0rem;
}
.cid-six0t5XyEu .underline {
  align: center;
}
.cid-six0t5XyEu .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six0t5XyEu .form-container {
  transition: all .2s;
  border-radius: 8px;
  border: 5px solid #cccccc;
  box-shadow: .15em .15em .5em #434242;
  padding: 2.0rem;
  background: linear-gradient(#ffffff, #e3d6c8);
  border: none;
}
.cid-six0t5XyEu textarea.form-control {
  min-height: 188px;
}
.cid-six0t5XyEu .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-six0t5XyEu .content-container {
    padding-right: 5rem;
  }
}
.cid-six0t5XyEu H1 {
  text-align: left;
}
.cid-six0t5XyEu .mbr-text,
.cid-six0t5XyEu .mbr-section-btn {
  text-align: left;
}
.cid-six0t5XyEu .form-title {
  text-align: center;
  color: #333333;
}
.cid-six0t5XyEu .form-subtitle,
.cid-six0t5XyEu input.field {
  text-align: center;
}
.cid-six0t5XyEu .image-block {
  margin: auto;
  width: 100% !important;
  padding-top: 5rem;
}
.cid-six44XxW2H {
  padding-top: 125px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six44XxW2H .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six44XxW2H .underline {
  align: center;
}
.cid-six44XxW2H .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six44XxW2H H2 {
  color: #232323;
  text-align: center;
}
.cid-six44XxW2H H3 {
  color: #232323;
}
.cid-six44XxW2H .title {
  padding-bottom: 1rem;
}
.cid-six44XxW2H .subtitle {
  padding-top: 1rem;
}
.cid-six0FwEXzI {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-six0FwEXzI .nav-tabs {
  -webkit-justify-content: left;
  justify-content: left;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-six0FwEXzI .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #767676;
  font-style: normal;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #767676;
  padding: 1rem 3rem;
  margin: 0.4rem .8rem !important;
  transition: all .3s;
}
.cid-six0FwEXzI .nav-tabs .nav-link:hover {
  background-color: #e44242;
}
.cid-six0FwEXzI .nav-tabs .nav-link:focus {
  box-shadow: none;
  background-color: #e44242;
}
.cid-six0FwEXzI .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  border: none;
  background: #e44242;
}
.cid-six0FwEXzI .nav-tabs .nav-link.active:hover {
  border: none;
}
.cid-six0FwEXzI .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-six0FwEXzI p {
  color: #767676;
}
.cid-six0FwEXzI .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-six0FwEXzI .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
  align-items: center;
  padding-right: 0;
  padding-left: 4rem;
}
.cid-six0FwEXzI .mbr-text {
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-six0FwEXzI .media-container-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-six0FwEXzI .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
    padding-bottom: 0;
    padding-top: 2rem;
  }
}
.cid-six0FwEXzI P {
  color: #465052;
}
.cid-six0FwEXzI H3 {
  color: #465052;
}
.cid-six0FwEXzI .inform {
  padding: 2rem 0rem 1rem 2rem;
}
.cid-six0FwEXzI .pro-shadow {
  padding-bottom: 2rem;
}
.cid-six0FwEXzI .pro-shadow img {
  border-radius: 8px;
  box-shadow: .25em .25em 1.7em #cfcfcf;
}
.cid-six0FwEXzI .mbr-section-btn {
  padding: 0rem 0rem 1rem 1.5rem;
}
.cid-sixLZfsEgo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sixLZfsEgo .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-sixLZfsEgo .section-text {
  padding: 2rem 0;
}
.cid-sixLZfsEgo .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sixLZfsEgo .inner-container {
    width: 100% !important;
  }
}
.cid-six45xERj5 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six45xERj5 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six45xERj5 .underline {
  align: center;
}
.cid-six45xERj5 .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six45xERj5 H2 {
  color: #232323;
  text-align: center;
}
.cid-six45xERj5 H3 {
  color: #232323;
}
.cid-six45xERj5 .title {
  padding-bottom: 1rem;
}
.cid-six45xERj5 .subtitle {
  padding-top: 1rem;
}
.cid-six0JPidHP {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-six0JPidHP .mbr-section-subtitle {
  color: #465052;
  font-weight: 300;
}
.cid-six0JPidHP .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-six0JPidHP .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-six0JPidHP .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-six0JPidHP .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-six0JPidHP .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-six0JPidHP .media-block {
    padding-right: 2rem;
  }
}
.cid-six0JPidHP .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-six0JPidHP .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-six0JPidHP .count {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .cid-six0JPidHP .panel-item {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cid-six0JPidHP .card-img {
    padding-bottom: 1rem;
    padding-right: 0 !important;
    margin: auto;
  }
}
.cid-six0JPidHP .mbr-section-btn {
  padding-left: 0rem;
}
.cid-six0JPidHP H3 {
  color: #e44242;
}
.cid-six0JPidHP .pro-shadow img {
  border-radius: 8px;
  box-shadow: .25em .25em 1.7em #cfcfcf;
}
.cid-six0JPidHP .inform2 {
  margin: 1.5rem 0rem 1.5rem 0rem;
}
.cid-six0JPidHP .inform {
  margin: 0.5rem 1rem 0.5rem 1rem;
}
.cid-sixM3ZDEVE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sixM3ZDEVE .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-sixM3ZDEVE .section-text {
  padding: 2rem 0;
}
.cid-sixM3ZDEVE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sixM3ZDEVE .inner-container {
    width: 100% !important;
  }
}
.cid-six465q97o {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six465q97o .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six465q97o .underline {
  align: center;
}
.cid-six465q97o .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six465q97o H2 {
  color: #232323;
  text-align: center;
}
.cid-six465q97o H3 {
  color: #232323;
}
.cid-six465q97o .title {
  padding-bottom: 1rem;
}
.cid-six465q97o .subtitle {
  padding-top: 1rem;
}
.cid-six0LI1f59 {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-six0LI1f59 p {
  color: #767676;
}
.cid-six0LI1f59 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-six0LI1f59 .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-six0LI1f59 .panel-group {
  width: 100%;
}
.cid-six0LI1f59 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-six0LI1f59 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-six0LI1f59 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-six0LI1f59 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-six0LI1f59 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-six0LI1f59 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-six0LI1f59 .mbr-figure {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-six0LI1f59 .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-six0LI1f59 H3 {
  padding-bottom: 2rem;
}
.cid-six0LI1f59 .pro-shadow img {
  border-radius: 8px;
  box-shadow: .25em .25em 1.7em #cfcfcf;
}
.cid-six0LI1f59 .otvechaet {
  padding-top: 1rem;
}
.cid-six0LI1f59 .otvechaet p {
  color: #767676;
}
.cid-six0LI1f59 .vopros {
  margin-top: 1rem;
  padding: 1rem 0rem 1rem 0rem;
  padding: 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 8px;
}
.cid-six0LI1f59 .vopros p {
  color: #767676;
}
.cid-six0Mg9VCt {
  padding-top: 125px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/02-fotor-2000x1014.jpg");
}
.cid-six0Mg9VCt .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-six0Mg9VCt .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-six0Mg9VCt .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-six0Mg9VCt .mbr-text {
  color: #ffffff;
}
.cid-six0Mg9VCt .card {
  padding-bottom: 1.5rem;
}
.cid-six0Mg9VCt H1 {
  text-align: left;
  padding-bottom: 2rem;
  color: #465052;
}
.cid-six0Mg9VCt .mbr-text,
.cid-six0Mg9VCt .mbr-section-btn {
  text-align: left;
  color: #465052;
}
.cid-six0Mg9VCt H5 {
  text-align: left;
}
.cid-six0Mg9VCt .image-block {
  margin: auto;
  width: 100% !important;
  padding-top: 5rem;
}
.cid-six47aFrAN {
  padding-top: 100px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-six47aFrAN .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-six47aFrAN .underline {
  align: center;
}
.cid-six47aFrAN .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six47aFrAN H2 {
  color: #232323;
  text-align: center;
}
.cid-six47aFrAN H3 {
  color: #232323;
}
.cid-six47aFrAN .title {
  padding-bottom: 1rem;
}
.cid-six47aFrAN .subtitle {
  padding-top: 1rem;
}
.cid-sixpHxc2le {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sixpHxc2le h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sixpHxc2le p {
  color: #767676;
  text-align: left;
}
.cid-sixpHxc2le .card-box {
  padding-top: 2rem;
}
.cid-sixpHxc2le .card-wrapper {
  height: 100%;
}
.cid-sixpHxc2le H1 {
  color: #232323;
  text-align: left;
}
.cid-sixpHxc2le H2 {
  color: #232323;
  text-align: left;
}
.cid-sixpHxc2le .mbr-text,
.cid-sixpHxc2le .mbr-section-btn {
  text-align: left;
}
.cid-sixpHxc2le .card-title {
  text-align: left;
  color: #e44242;
}
.cid-sixpHxc2le .mbr-section-btn {
  padding-bottom: 2rem;
}
.cid-sixpHxc2le H3 {
  color: #232323;
}
.cid-sixpHxc2le .card {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.cid-sixpHxc2le P {
  color: #5b686b;
}
.cid-sixMaadx0s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sixMaadx0s .line {
  background-color: #f6f6f6;
  color: #f6f6f6;
  align: center;
  height: 1px;
  margin: 0 auto;
}
.cid-sixMaadx0s .section-text {
  padding: 2rem 0;
}
.cid-sixMaadx0s .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sixMaadx0s .inner-container {
    width: 100% !important;
  }
}
.cid-six0MPD1V6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-six0MPD1V6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-six0MPD1V6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-six0MPD1V6 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-six0MPD1V6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-six0MPD1V6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-six0MPD1V6 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  color: #232323;
  cursor: pointer;
  border-color: #e44242;
}
.cid-six0MPD1V6 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-six0MPD1V6 .btn-social:hover {
  color: #fff;
  background: #e44242;
}
.cid-six0MPD1V6 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-six0MPD1V6 .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-six0MPD1V6 .btn {
    font-size: 20px !important;
  }
}
.cid-six0MPD1V6 .underline {
  align: center;
}
.cid-six0MPD1V6 .underline .line {
  width: 4rem;
  height: 4px;
  align: center;
  background: #e44242;
  display: inline-block;
}
.cid-six0OTVJ6y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-six0OTVJ6y .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-six0OTVJ6y .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-six0OTVJ6y .media-wrap img {
  height: 6rem;
}
.cid-six0OTVJ6y .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-six0OTVJ6y .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-six0OTVJ6y .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-six0OTVJ6y .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-six0OTVJ6y .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-six0OTVJ6y .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-six0OTVJ6y .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-six0OTVJ6y .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-six0OTVJ6y .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-siLnIHarZG .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-siLnIHarZG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-siLnIHarZG a {
  font-style: normal;
}
.cid-siLnIHarZG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-siLnIHarZG .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-siLnIHarZG .nav-item:focus,
.cid-siLnIHarZG .nav-link:focus {
  outline: none;
}
.cid-siLnIHarZG .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-siLnIHarZG .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-siLnIHarZG .menu-logo {
  margin-right: auto;
}
.cid-siLnIHarZG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siLnIHarZG .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-siLnIHarZG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-siLnIHarZG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.0rem;
  padding-bottom: 1.0rem;
  border-radius: 8px;
  text-align: left;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  border-radius: 8px;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-siLnIHarZG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siLnIHarZG .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-siLnIHarZG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-siLnIHarZG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-siLnIHarZG button.navbar-toggler:focus {
  outline: none;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-siLnIHarZG .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-siLnIHarZG .collapsed .btn {
  display: -webkit-flex;
}
.cid-siLnIHarZG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing,
.cid-siLnIHarZG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-siLnIHarZG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-siLnIHarZG .collapsed button.navbar-toggler {
  display: block;
}
.cid-siLnIHarZG .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-siLnIHarZG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-siLnIHarZG .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-siLnIHarZG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-siLnIHarZG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-siLnIHarZG .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-siLnIHarZG.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-siLnIHarZG img {
    height: 3.8rem !important;
  }
  .cid-siLnIHarZG .btn {
    display: -webkit-flex;
  }
  .cid-siLnIHarZG button.navbar-toggler {
    display: block;
  }
  .cid-siLnIHarZG .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-siLnIHarZG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-siLnIHarZG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing,
  .cid-siLnIHarZG .navbar-collapse.show {
    display: block !important;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-buttons,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-siLnIHarZG .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-siLnIHarZG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-siLnIHarZG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-siLnIHarZG .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-siLnIHarZG .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-siLnIHarZG .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-siLnIHarZG .nav-link:hover,
.cid-siLnIHarZG .dropdown-item:hover {
  color: #e44242 !important;
}
.cid-siLnIHarZG .mbr-iconfont-social {
  font-size: 32px;
}
.cid-siLnIHarZG .social-list .social-pad {
  padding: 0px 6px 0px 6px;
}
.cid-siLnIHarZG .social-list a:focus {
  text-decoration: none;
}
.cid-rqVnGf6Xs0 {
  padding-top: 175px;
  padding-bottom: 140px;
  background-image: url("../../../assets/images/01-2000x1014.jpg");
}
.cid-rqVnGf6Xs0 H1 {
  color: #ffffff;
  text-align: left;
}
.cid-rqVnGf6Xs0 .mbr-text,
.cid-rqVnGf6Xs0 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-siLnIHarZG .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-siLnIHarZG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-siLnIHarZG a {
  font-style: normal;
}
.cid-siLnIHarZG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-siLnIHarZG .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-siLnIHarZG .nav-item:focus,
.cid-siLnIHarZG .nav-link:focus {
  outline: none;
}
.cid-siLnIHarZG .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-siLnIHarZG .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-siLnIHarZG .menu-logo {
  margin-right: auto;
}
.cid-siLnIHarZG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siLnIHarZG .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-siLnIHarZG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-siLnIHarZG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.0rem;
  padding-bottom: 1.0rem;
  border-radius: 8px;
  text-align: left;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  border-radius: 8px;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-siLnIHarZG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siLnIHarZG .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-siLnIHarZG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-siLnIHarZG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-siLnIHarZG button.navbar-toggler:focus {
  outline: none;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-siLnIHarZG .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-siLnIHarZG .collapsed .btn {
  display: -webkit-flex;
}
.cid-siLnIHarZG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing,
.cid-siLnIHarZG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-siLnIHarZG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-siLnIHarZG .collapsed button.navbar-toggler {
  display: block;
}
.cid-siLnIHarZG .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-siLnIHarZG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-siLnIHarZG .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-siLnIHarZG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-siLnIHarZG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-siLnIHarZG .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-siLnIHarZG.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-siLnIHarZG img {
    height: 3.8rem !important;
  }
  .cid-siLnIHarZG .btn {
    display: -webkit-flex;
  }
  .cid-siLnIHarZG button.navbar-toggler {
    display: block;
  }
  .cid-siLnIHarZG .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-siLnIHarZG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-siLnIHarZG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing,
  .cid-siLnIHarZG .navbar-collapse.show {
    display: block !important;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-buttons,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-siLnIHarZG .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-siLnIHarZG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-siLnIHarZG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-siLnIHarZG .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-siLnIHarZG .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-siLnIHarZG .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-siLnIHarZG .nav-link:hover,
.cid-siLnIHarZG .dropdown-item:hover {
  color: #e44242 !important;
}
.cid-siLnIHarZG .mbr-iconfont-social {
  font-size: 32px;
}
.cid-siLnIHarZG .social-list .social-pad {
  padding: 0px 6px 0px 6px;
}
.cid-siLnIHarZG .social-list a:focus {
  text-decoration: none;
}
.cid-rqKNhMU138 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rqKNhMU138 h1 {
  color: #616161;
}
.cid-rqKNhMU138 h2,
.cid-rqKNhMU138 h3,
.cid-rqKNhMU138 p {
  color: #767676;
}
.cid-rqKNhMU138 .mbr-section-subtitle {
  font-style: italic;
}
.cid-rqKNhMU138 .mbr-text,
.cid-rqKNhMU138 .mbr-section-btn {
  color: #232323;
}
.cid-rqKNhMU138 H1 {
  color: #232323;
}
.cid-siLnIHarZG .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-siLnIHarZG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-siLnIHarZG a {
  font-style: normal;
}
.cid-siLnIHarZG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-siLnIHarZG .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-siLnIHarZG .nav-item:focus,
.cid-siLnIHarZG .nav-link:focus {
  outline: none;
}
.cid-siLnIHarZG .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-siLnIHarZG .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-siLnIHarZG .menu-logo {
  margin-right: auto;
}
.cid-siLnIHarZG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-siLnIHarZG .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-siLnIHarZG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-siLnIHarZG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-siLnIHarZG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.0rem;
  padding-bottom: 1.0rem;
  border-radius: 8px;
  text-align: left;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  border-radius: 8px;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-siLnIHarZG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-siLnIHarZG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-siLnIHarZG .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-siLnIHarZG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-siLnIHarZG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-siLnIHarZG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-siLnIHarZG button.navbar-toggler:focus {
  outline: none;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-siLnIHarZG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-siLnIHarZG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-siLnIHarZG .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-siLnIHarZG .collapsed .btn {
  display: -webkit-flex;
}
.cid-siLnIHarZG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing,
.cid-siLnIHarZG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-siLnIHarZG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-siLnIHarZG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-siLnIHarZG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-siLnIHarZG .collapsed button.navbar-toggler {
  display: block;
}
.cid-siLnIHarZG .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-siLnIHarZG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-siLnIHarZG .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-siLnIHarZG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-siLnIHarZG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-siLnIHarZG .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-siLnIHarZG.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-siLnIHarZG img {
    height: 3.8rem !important;
  }
  .cid-siLnIHarZG .btn {
    display: -webkit-flex;
  }
  .cid-siLnIHarZG button.navbar-toggler {
    display: block;
  }
  .cid-siLnIHarZG .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-siLnIHarZG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-siLnIHarZG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing,
  .cid-siLnIHarZG .navbar-collapse.show {
    display: block !important;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-buttons,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-siLnIHarZG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-siLnIHarZG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-siLnIHarZG .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-siLnIHarZG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-siLnIHarZG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-siLnIHarZG .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-siLnIHarZG .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-siLnIHarZG .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-siLnIHarZG .nav-link:hover,
.cid-siLnIHarZG .dropdown-item:hover {
  color: #e44242 !important;
}
.cid-siLnIHarZG .mbr-iconfont-social {
  font-size: 32px;
}
.cid-siLnIHarZG .social-list .social-pad {
  padding: 0px 6px 0px 6px;
}
.cid-siLnIHarZG .social-list a:focus {
  text-decoration: none;
}
