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





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}
/* ---- 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f93908 !important;
}
.bg-success {
  background-color: #ffcc00 !important;
}
.bg-info {
  background-color: #ff3300 !important;
}
.bg-warning {
  background-color: #1dadea !important;
}
.bg-danger {
  background-color: #666666 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #f93908 !important;
  border-color: #f93908 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #b02704 !important;
  border-color: #b02704 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b02704 !important;
  border-color: #b02704 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f93908 !important;
  border-color: #f93908 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #b02704 !important;
  border-color: #b02704 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b02704 !important;
  border-color: #b02704 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff3300 !important;
  border-color: #ff3300 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32400 !important;
  border-color: #b32400 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32400 !important;
  border-color: #b32400 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #000000 !important;
  background-color: #b38f00 !important;
  border-color: #b38f00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b38f00 !important;
  border-color: #b38f00 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #1dadea !important;
  border-color: #1dadea !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #107dab !important;
  border-color: #107dab !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #107dab !important;
  border-color: #107dab !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #666666 !important;
  border-color: #666666 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #972204;
  color: #972204 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #f93908;
  border-color: #f93908;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f93908 !important;
  border-color: #f93908 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #972204;
  color: #972204 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #f93908;
  border-color: #f93908;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f93908 !important;
  border-color: #f93908 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #991f00;
  color: #991f00 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff3300;
  border-color: #ff3300;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3300 !important;
  border-color: #ff3300 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #997a00;
  color: #997a00 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #000000 !important;
  background-color: #ffcc00;
  border-color: #ffcc00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #0e6c93;
  color: #0e6c93 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #1dadea;
  border-color: #1dadea;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1dadea !important;
  border-color: #1dadea !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #333333;
  color: #333333 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #666666;
  border-color: #666666;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #666666 !important;
  border-color: #666666 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f93908 !important;
}
.text-secondary {
  color: #f93908 !important;
}
.text-success {
  color: #ffcc00 !important;
}
.text-info {
  color: #ff3300 !important;
}
.text-warning {
  color: #1dadea !important;
}
.text-danger {
  color: #666666 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #972204 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #972204 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #997a00 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #991f00 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #0e6c93 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #333333 !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: #ffcc00;
}
.alert-info {
  background-color: #ff3300;
}
.alert-warning {
  background-color: #1dadea;
}
.alert-danger {
  background-color: #666666;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f93908;
  border-color: #f93908;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f93908;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fed9cf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff5cc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd6cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d8f1fb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a6a6a6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}
blockquote {
  border-color: #f93908;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f93908;
  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: #f93908;
  border-bottom-color: #f93908;
}
.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: #f93908 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #f93908 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f93908' %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-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJR56rGqU {
  padding-top: 105px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bg-2000x1333.png");
}
.cid-stJR56rGqU .title-align {
  width: 100%;
}
.cid-stJR56rGqU .pricetitle {
  margin: 0;
  text-align: left;
}
.cid-stJR56rGqU .img-col {
  position: relative;
  padding-top: 2rem;
}
.cid-stJR56rGqU .img-col img {
  z-index: 2;
  position: relative;
}
.cid-stJR56rGqU .pricebox {
  position: absolute;
  z-index: 1;
  top: -5rem;
  left: 2rem;
  width: 180px;
  height: 180px;
  background: #fbbe36;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-stJR56rGqU H2 {
  color: #e7272d;
  position: relative;
  display: inline-block;
  width: fit-content;
  text-align: left;
}
.cid-stJR56rGqU H2:before {
  position: absolute;
  content: '';
  right: -120px;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
}
.cid-stJR56rGqU img {
  max-width: 500px;
  margin: auto;
}
.cid-stJR56rGqU .mbr-section-subtitle,
.cid-stJR56rGqU .title-align {
  color: #ffffff;
}
.cid-stJR56rGqU .price {
  color: #e7272d;
}
@media (max-width: 992px) {
  .cid-stJR56rGqU .pricebox {
    top: -2rem;
    right: 2rem;
    left: auto;
  }
}
@media (max-width: 767px) {
  .cid-stJR56rGqU .pricebox {
    width: 100px;
    height: 100px;
    top: 0rem;
    right: 2rem;
    left: auto;
  }
  .cid-stJR56rGqU H2:before {
    width: 70px;
    right: -90px;
  }
  .cid-stJR56rGqU .img-col {
    padding-top: 4rem;
  }
}
.cid-stJR56rGqU H1 {
  color: #ffffff;
  text-align: left;
}
.cid-stJR56rGqU .mbr-text,
.cid-stJR56rGqU .mbr-section-btn {
  text-align: left;
}
.cid-stLr3Vp0Qx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-stLr3Vp0Qx .item {
  padding-bottom: 2rem;
}
.cid-stLr3Vp0Qx .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-stLr3Vp0Qx .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-stLr3Vp0Qx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-stLr3Vp0Qx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-stLr3Vp0Qx .carousel-control,
.cid-stLr3Vp0Qx .close {
  background: #1b1b1b;
}
.cid-stLr3Vp0Qx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-stLr3Vp0Qx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-stLr3Vp0Qx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-stLr3Vp0Qx .carousel-control-next span {
  margin-left: 5px;
}
.cid-stLr3Vp0Qx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-stLr3Vp0Qx .close::before {
  content: '\e91a';
}
.cid-stLr3Vp0Qx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-stLr3Vp0Qx .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-stLr3Vp0Qx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stLr3Vp0Qx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-stLr3Vp0Qx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stLr3Vp0Qx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-stLr3Vp0Qx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-stLr3Vp0Qx .carousel-indicators li.active,
.cid-stLr3Vp0Qx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-stLr3Vp0Qx .carousel-indicators li::after,
.cid-stLr3Vp0Qx .carousel-indicators li::before {
  content: none;
}
.cid-stLr3Vp0Qx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-stLr3Vp0Qx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-stLr3Vp0Qx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-stLr3Vp0Qx .carousel-indicators {
    display: none;
  }
}
.cid-stLr3Vp0Qx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-stLr3Vp0Qx .carousel-inner > .active {
  display: block;
}
.cid-stLr3Vp0Qx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stLr3Vp0Qx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stLr3Vp0Qx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-stLr3Vp0Qx .carousel-control,
  .cid-stLr3Vp0Qx .carousel-indicators,
  .cid-stLr3Vp0Qx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-stLr3Vp0Qx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-stLr3Vp0Qx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stLr3Vp0Qx .carousel-indicators .active,
.cid-stLr3Vp0Qx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-stLr3Vp0Qx .carousel-indicators .active {
  background: #fff;
}
.cid-stLr3Vp0Qx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-stLr3Vp0Qx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-stLr3Vp0Qx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stLr3Vp0Qx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-stLr3Vp0Qx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-stLr3Vp0Qx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-stLr3Vp0Qx .carousel {
  width: 100%;
}
.cid-stLr3Vp0Qx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-stLr3Vp0Qx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-stLr3Vp0Qx .modal.fade .modal-dialog,
.cid-stLr3Vp0Qx .modal.in .modal-dialog {
  transform: none;
}
.cid-stLr3Vp0Qx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-stLr3Vp0Qx H6 {
  text-align: center;
}
.cid-stLr3Vp0Qx H3 {
  color: #383838;
  text-align: left;
}
.cid-stJQTpZIl3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: linear-gradient(122deg, #f93908 10%, #f93908 100%) !important;
}
.cid-stJQTpZIl3 .mbr-text,
.cid-stJQTpZIl3 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-stJQTpZIl3 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-stJUk4QHN7 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-stJUk4QHN7 .card {
  display: block;
  position: relative;
}
.cid-stJUk4QHN7 .card .card-wrapper {
  background: #f93908;
  height: 1%;
}
.cid-stJUk4QHN7 .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stJUk4QHN7 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stJUk4QHN7 .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ff3300;
}
.cid-stJUk4QHN7 .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stJUk4QHN7 .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stJUk4QHN7 .mbr-card-text {
  margin: 0;
}
.cid-stJUk4QHN7 .mbr-section-title {
  text-align: left;
  color: #f93908;
}
.cid-stJUk4QHN7 .mbr-title {
  color: #ffffff;
}
.cid-stJUzjJnLB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f8f8;
}
.cid-stJUzjJnLB .card {
  display: block;
  position: relative;
}
.cid-stJUzjJnLB .card .card-wrapper {
  background: #f93908;
  height: 1%;
}
.cid-stJUzjJnLB .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stJUzjJnLB .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stJUzjJnLB .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ff3300;
}
.cid-stJUzjJnLB .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stJUzjJnLB .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stJUzjJnLB .mbr-card-text {
  margin: 0;
}
.cid-stJUzjJnLB .mbr-section-title {
  text-align: center;
}
.cid-stJUzjJnLB .mbr-title {
  color: #ffffff;
}
.cid-stJUIEQdaS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.cid-stJUIEQdaS .card {
  display: block;
  position: relative;
}
.cid-stJUIEQdaS .card .card-wrapper {
  background: #f93908;
  height: 1%;
}
.cid-stJUIEQdaS .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-stJUIEQdaS .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-stJUIEQdaS .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ff3300;
}
.cid-stJUIEQdaS .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-stJUIEQdaS .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-stJUIEQdaS .mbr-card-text {
  margin: 0;
}
.cid-stJUIEQdaS .mbr-section-title {
  text-align: center;
}
.cid-stJUIEQdaS .mbr-title {
  color: #ffffff;
}
.cid-stLfdFBZmF {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/placasolar-2000x1334.jpg");
}
.cid-stLfdFBZmF .link-wrapper {
  width: 100%;
}
.cid-stLfdFBZmF .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-stLfdFBZmF .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-stLfdFBZmF .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-stLfdFBZmF .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-stLfdFBZmF .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-stLfdFBZmF .mbr-section-title DIV {
  text-align: center;
}
.cid-stLfdFBZmF .mbr-text,
.cid-stLfdFBZmF .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-stLfdFBZmF .link,
.cid-stLfdFBZmF .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-stLfdFBZmF .mbr-section-title {
  color: #ffffff;
}
.cid-rHLXfloUiH {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ff3300;
}
.cid-rHLXfloUiH .mbr-text,
.cid-rHLXfloUiH .mbr-section-subtitle {
  color: #767676;
}
.cid-rHLXfloUiH .card-title {
  color: #66458e;
}
.cid-rHLXfloUiH .card .card-img span {
  color: #ffffff;
  font-size: 60px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rHLXfloUiH .mbr-section-subtitle,
  .cid-rHLXfloUiH .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rHLXfloUiH .card .card-img span {
    background: none;
  }
}
.cid-rHLXfloUiH .card-title,
.cid-rHLXfloUiH .card-img {
  color: #ffffff;
}
.cid-rHLXfloUiH .mbr-section-title {
  color: #ffffff;
}
.cid-rHLXfloUiH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rHLXfloUiH .mbr-text {
  color: #ffffff;
}
.cid-stLrqd7LNH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-stLrqd7LNH .item {
  padding-bottom: 2rem;
}
.cid-stLrqd7LNH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-stLrqd7LNH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-stLrqd7LNH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-stLrqd7LNH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-stLrqd7LNH .carousel-control,
.cid-stLrqd7LNH .close {
  background: #1b1b1b;
}
.cid-stLrqd7LNH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-stLrqd7LNH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-stLrqd7LNH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-stLrqd7LNH .carousel-control-next span {
  margin-left: 5px;
}
.cid-stLrqd7LNH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-stLrqd7LNH .close::before {
  content: '\e91a';
}
.cid-stLrqd7LNH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-stLrqd7LNH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-stLrqd7LNH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stLrqd7LNH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-stLrqd7LNH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stLrqd7LNH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-stLrqd7LNH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-stLrqd7LNH .carousel-indicators li.active,
.cid-stLrqd7LNH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-stLrqd7LNH .carousel-indicators li::after,
.cid-stLrqd7LNH .carousel-indicators li::before {
  content: none;
}
.cid-stLrqd7LNH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-stLrqd7LNH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-stLrqd7LNH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-stLrqd7LNH .carousel-indicators {
    display: none;
  }
}
.cid-stLrqd7LNH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-stLrqd7LNH .carousel-inner > .active {
  display: block;
}
.cid-stLrqd7LNH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stLrqd7LNH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stLrqd7LNH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-stLrqd7LNH .carousel-control,
  .cid-stLrqd7LNH .carousel-indicators,
  .cid-stLrqd7LNH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-stLrqd7LNH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-stLrqd7LNH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stLrqd7LNH .carousel-indicators .active,
.cid-stLrqd7LNH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-stLrqd7LNH .carousel-indicators .active {
  background: #fff;
}
.cid-stLrqd7LNH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-stLrqd7LNH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-stLrqd7LNH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-stLrqd7LNH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-stLrqd7LNH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-stLrqd7LNH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-stLrqd7LNH .carousel {
  width: 100%;
}
.cid-stLrqd7LNH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-stLrqd7LNH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-stLrqd7LNH .modal.fade .modal-dialog,
.cid-stLrqd7LNH .modal.in .modal-dialog {
  transform: none;
}
.cid-stLrqd7LNH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-stLrqd7LNH H6 {
  text-align: center;
}
.cid-stLrqd7LNH H3 {
  color: #383838;
  text-align: left;
}
.cid-stJR6v16TC {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-stJR6v16TC .mbr-section-title {
  color: #06182d;
}
.cid-stJR6v16TC .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-stJR6v16TC .mbr-section-subtitle {
  color: #06182d;
}
.cid-stJR6v16TC .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-stJR6v16TC .mbr-section-text {
  color: #999999;
}
.cid-stJR6v16TC .carousel-control {
  background: #000;
  opacity: 0.2;
}
.cid-stJR6v16TC .carousel {
  width: 85%;
  margin: auto;
}
.cid-stJR6v16TC .carousel-item {
  justify-content: center;
}
.cid-stJR6v16TC .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-stJR6v16TC .carousel-item .wrap-img {
  text-align: center;
}
.cid-stJR6v16TC .carousel-item .wrap-img img {
  transition: all 0.3s;
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-stJR6v16TC .carousel-controls {
  display: flex;
  justify-content: center;
}
.cid-stJR6v16TC .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-stJR6v16TC .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-stJR6v16TC .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-stJR6v16TC .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-stJR6v16TC .cloneditem-1,
.cid-stJR6v16TC .cloneditem-2,
.cid-stJR6v16TC .cloneditem-3,
.cid-stJR6v16TC .cloneditem-4,
.cid-stJR6v16TC .cloneditem-5 {
  display: none;
}
.cid-stJR6v16TC .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-stJR6v16TC .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-stJR6v16TC .carousel-inner {
    opacity: 0.8;
  }
  .cid-stJR6v16TC .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides2 .cloneditem-1,
  .cid-stJR6v16TC .carousel-inner.slides2 .cloneditem-2,
  .cid-stJR6v16TC .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-stJR6v16TC .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides3 .cloneditem-1,
  .cid-stJR6v16TC .carousel-inner.slides3 .cloneditem-2,
  .cid-stJR6v16TC .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-stJR6v16TC .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(25%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-25%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides4 .cloneditem-1,
  .cid-stJR6v16TC .carousel-inner.slides4 .cloneditem-2,
  .cid-stJR6v16TC .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-stJR6v16TC .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(20%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-20%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides5 .cloneditem-1,
  .cid-stJR6v16TC .carousel-inner.slides5 .cloneditem-2,
  .cid-stJR6v16TC .carousel-inner.slides5 .cloneditem-3,
  .cid-stJR6v16TC .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-stJR6v16TC .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-stJR6v16TC .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-stJR6v16TC .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-stJR6v16TC .carousel-inner.slides6 .cloneditem-1,
  .cid-stJR6v16TC .carousel-inner.slides6 .cloneditem-2,
  .cid-stJR6v16TC .carousel-inner.slides6 .cloneditem-3,
  .cid-stJR6v16TC .carousel-inner.slides6 .cloneditem-4,
  .cid-stJR6v16TC .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-stJR6v16TC .carousel-control-prev {
  position: absolute !important;
  left: -50px !important;
}
.cid-stJR6v16TC .carousel-control-next {
  position: absolute !important;
  right: -50px !important;
}
@media (max-width: 576px) {
  .cid-stJR6v16TC .carousel-control-prev {
    left: -10px !important;
  }
  .cid-stJR6v16TC .carousel-control-next {
    right: -10px !important;
  }
}
.cid-stLsTYHb5y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stLsTYHb5y .mbr-text,
.cid-stLsTYHb5y .mbr-section-subtitle {
  color: #767676;
}
.cid-stLsTYHb5y .mbr-text {
  margin-bottom: 0 !important;
  color: #ffffff;
  transition: .2s all;
}
.cid-stLsTYHb5y .card-title {
  color: #66458e;
}
.cid-stLsTYHb5y .card .card-img span {
  color: #ffffff;
  font-size: 60px;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-stLsTYHb5y .card-img {
  padding-bottom: 2.65rem !important;
}
@media (max-width: 767px) {
  .cid-stLsTYHb5y .mbr-section-subtitle,
  .cid-stLsTYHb5y .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stLsTYHb5y .card .card-img span {
    background: none;
  }
}
.cid-stLsTYHb5y .card-wrap {
  border-radius: 5px;
  padding: 4.2rem 2rem 4.1rem;
}
.cid-stLsTYHb5y .card1 {
  background-color: #ff3300;
}
.cid-stLsTYHb5y .card2 {
  background-color: #ff3300;
}
.cid-stLsTYHb5y .card3 {
  background-color: #ffd655;
}
.cid-stLsTYHb5y .card4 {
  background-color: #bbbbbb;
}
.cid-stLsTYHb5y .card-title,
.cid-stLsTYHb5y .card-img {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-stLsTYHb5y H4 {
  color: #666666;
}
.cid-stJSM4R0rO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-stJSM4R0rO .google-map {
  height: 25rem;
  position: relative;
}
.cid-stJSM4R0rO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-stJSM4R0rO .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-stJSM4R0rO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-stJSM4R0rO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (min-width: 1200px) {
  .cid-stJSM4R0rO .map1 {
    padding-right: 2rem;
  }
  .cid-stJSM4R0rO .map2 {
    padding-left: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-stJSM4R0rO .map1 {
    padding-bottom: 2rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ1sqEOAE {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ1sqEOAE .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ1sqEOAE .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ1sqEOAE .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ1sqEOAE img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ1sqEOAE .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ1sqEOAE H1 {
  text-align: right;
  color: #ffffff;
}
.cid-twdo8tDvAu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdo8tDvAu .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdo8tDvAu .row-element,
.cid-twdo8tDvAu .image-element {
  padding: 0;
}
.cid-twdo8tDvAu .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdo8tDvAu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdo8tDvAu .text-content {
  padding: 3rem;
}
.cid-twdo8tDvAu .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdo8tDvAu .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdo8tDvAu .mbr-title,
  .cid-twdo8tDvAu .underline,
  .cid-twdo8tDvAu .mbr-text,
  .cid-twdo8tDvAu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdo8tDvAu .mbr-text,
.cid-twdo8tDvAu .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdo8tDvAu .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdoxJPJ0M {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdoxJPJ0M .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdoxJPJ0M .row-element,
.cid-twdoxJPJ0M .image-element {
  padding: 0;
}
.cid-twdoxJPJ0M .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdoxJPJ0M .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdoxJPJ0M .text-content {
  padding: 3rem;
}
.cid-twdoxJPJ0M .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdoxJPJ0M .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdoxJPJ0M .mbr-title,
  .cid-twdoxJPJ0M .underline,
  .cid-twdoxJPJ0M .mbr-text,
  .cid-twdoxJPJ0M .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdoxJPJ0M .mbr-text,
.cid-twdoxJPJ0M .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdoxJPJ0M .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twdoylinBy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdoylinBy .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdoylinBy .row-element,
.cid-twdoylinBy .image-element {
  padding: 0;
}
.cid-twdoylinBy .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdoylinBy .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdoylinBy .text-content {
  padding: 3rem;
}
.cid-twdoylinBy .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdoylinBy .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdoylinBy .mbr-title,
  .cid-twdoylinBy .underline,
  .cid-twdoylinBy .mbr-text,
  .cid-twdoylinBy .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdoylinBy .mbr-text,
.cid-twdoylinBy .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdoylinBy .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdoyOnCUI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdoyOnCUI .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdoyOnCUI .row-element,
.cid-twdoyOnCUI .image-element {
  padding: 0;
}
.cid-twdoyOnCUI .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdoyOnCUI .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdoyOnCUI .text-content {
  padding: 3rem;
}
.cid-twdoyOnCUI .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdoyOnCUI .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdoyOnCUI .mbr-title,
  .cid-twdoyOnCUI .underline,
  .cid-twdoyOnCUI .mbr-text,
  .cid-twdoyOnCUI .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdoyOnCUI .mbr-text,
.cid-twdoyOnCUI .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdoyOnCUI .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdoBDTWJb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdoBDTWJb .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdoBDTWJb .row-element,
.cid-twdoBDTWJb .image-element {
  padding: 0;
}
.cid-twdoBDTWJb .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdoBDTWJb .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdoBDTWJb .text-content {
  padding: 3rem;
}
.cid-twdoBDTWJb .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdoBDTWJb .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdoBDTWJb .mbr-title,
  .cid-twdoBDTWJb .underline,
  .cid-twdoBDTWJb .mbr-text,
  .cid-twdoBDTWJb .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdoBDTWJb .mbr-text,
.cid-twdoBDTWJb .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdoBDTWJb .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdozB4WSW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdozB4WSW .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdozB4WSW .row-element,
.cid-twdozB4WSW .image-element {
  padding: 0;
}
.cid-twdozB4WSW .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdozB4WSW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdozB4WSW .text-content {
  padding: 3rem;
}
.cid-twdozB4WSW .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdozB4WSW .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdozB4WSW .mbr-title,
  .cid-twdozB4WSW .underline,
  .cid-twdozB4WSW .mbr-text,
  .cid-twdozB4WSW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdozB4WSW .mbr-text,
.cid-twdozB4WSW .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdozB4WSW .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdozWKQkj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdozWKQkj .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdozWKQkj .row-element,
.cid-twdozWKQkj .image-element {
  padding: 0;
}
.cid-twdozWKQkj .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdozWKQkj .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdozWKQkj .text-content {
  padding: 3rem;
}
.cid-twdozWKQkj .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdozWKQkj .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdozWKQkj .mbr-title,
  .cid-twdozWKQkj .underline,
  .cid-twdozWKQkj .mbr-text,
  .cid-twdozWKQkj .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdozWKQkj .mbr-text,
.cid-twdozWKQkj .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdozWKQkj .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdoAp8QFZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdoAp8QFZ .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdoAp8QFZ .row-element,
.cid-twdoAp8QFZ .image-element {
  padding: 0;
}
.cid-twdoAp8QFZ .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdoAp8QFZ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdoAp8QFZ .text-content {
  padding: 3rem;
}
.cid-twdoAp8QFZ .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdoAp8QFZ .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdoAp8QFZ .mbr-title,
  .cid-twdoAp8QFZ .underline,
  .cid-twdoAp8QFZ .mbr-text,
  .cid-twdoAp8QFZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdoAp8QFZ .mbr-text,
.cid-twdoAp8QFZ .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdoAp8QFZ .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdoAMiHR1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdoAMiHR1 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdoAMiHR1 .row-element,
.cid-twdoAMiHR1 .image-element {
  padding: 0;
}
.cid-twdoAMiHR1 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdoAMiHR1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdoAMiHR1 .text-content {
  padding: 3rem;
}
.cid-twdoAMiHR1 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdoAMiHR1 .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdoAMiHR1 .mbr-title,
  .cid-twdoAMiHR1 .underline,
  .cid-twdoAMiHR1 .mbr-text,
  .cid-twdoAMiHR1 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdoAMiHR1 .mbr-text,
.cid-twdoAMiHR1 .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdoAMiHR1 .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdoC7H8s1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdoC7H8s1 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdoC7H8s1 .row-element,
.cid-twdoC7H8s1 .image-element {
  padding: 0;
}
.cid-twdoC7H8s1 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdoC7H8s1 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdoC7H8s1 .text-content {
  padding: 3rem;
}
.cid-twdoC7H8s1 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdoC7H8s1 .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdoC7H8s1 .mbr-title,
  .cid-twdoC7H8s1 .underline,
  .cid-twdoC7H8s1 .mbr-text,
  .cid-twdoC7H8s1 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdoC7H8s1 .mbr-text,
.cid-twdoC7H8s1 .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdoC7H8s1 .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdtxwIsFG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdtxwIsFG .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdtxwIsFG .row-element,
.cid-twdtxwIsFG .image-element {
  padding: 0;
}
.cid-twdtxwIsFG .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdtxwIsFG .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdtxwIsFG .text-content {
  padding: 3rem;
}
.cid-twdtxwIsFG .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdtxwIsFG .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdtxwIsFG .mbr-title,
  .cid-twdtxwIsFG .underline,
  .cid-twdtxwIsFG .mbr-text,
  .cid-twdtxwIsFG .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdtxwIsFG .mbr-text,
.cid-twdtxwIsFG .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdtxwIsFG .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdty9qANX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdty9qANX .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdty9qANX .row-element,
.cid-twdty9qANX .image-element {
  padding: 0;
}
.cid-twdty9qANX .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdty9qANX .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdty9qANX .text-content {
  padding: 3rem;
}
.cid-twdty9qANX .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdty9qANX .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdty9qANX .mbr-title,
  .cid-twdty9qANX .underline,
  .cid-twdty9qANX .mbr-text,
  .cid-twdty9qANX .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdty9qANX .mbr-text,
.cid-twdty9qANX .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdty9qANX .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdtyEygjq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdtyEygjq .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdtyEygjq .row-element,
.cid-twdtyEygjq .image-element {
  padding: 0;
}
.cid-twdtyEygjq .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdtyEygjq .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdtyEygjq .text-content {
  padding: 3rem;
}
.cid-twdtyEygjq .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdtyEygjq .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdtyEygjq .mbr-title,
  .cid-twdtyEygjq .underline,
  .cid-twdtyEygjq .mbr-text,
  .cid-twdtyEygjq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdtyEygjq .mbr-text,
.cid-twdtyEygjq .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdtyEygjq .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdtz9ZKOk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdtz9ZKOk .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdtz9ZKOk .row-element,
.cid-twdtz9ZKOk .image-element {
  padding: 0;
}
.cid-twdtz9ZKOk .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdtz9ZKOk .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdtz9ZKOk .text-content {
  padding: 3rem;
}
.cid-twdtz9ZKOk .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdtz9ZKOk .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdtz9ZKOk .mbr-title,
  .cid-twdtz9ZKOk .underline,
  .cid-twdtz9ZKOk .mbr-text,
  .cid-twdtz9ZKOk .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdtz9ZKOk .mbr-text,
.cid-twdtz9ZKOk .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdtz9ZKOk .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdtzHjXZB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdtzHjXZB .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdtzHjXZB .row-element,
.cid-twdtzHjXZB .image-element {
  padding: 0;
}
.cid-twdtzHjXZB .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdtzHjXZB .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdtzHjXZB .text-content {
  padding: 3rem;
}
.cid-twdtzHjXZB .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdtzHjXZB .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdtzHjXZB .mbr-title,
  .cid-twdtzHjXZB .underline,
  .cid-twdtzHjXZB .mbr-text,
  .cid-twdtzHjXZB .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdtzHjXZB .mbr-text,
.cid-twdtzHjXZB .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdtzHjXZB .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdtAbauIk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdtAbauIk .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdtAbauIk .row-element,
.cid-twdtAbauIk .image-element {
  padding: 0;
}
.cid-twdtAbauIk .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdtAbauIk .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdtAbauIk .text-content {
  padding: 3rem;
}
.cid-twdtAbauIk .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdtAbauIk .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdtAbauIk .mbr-title,
  .cid-twdtAbauIk .underline,
  .cid-twdtAbauIk .mbr-text,
  .cid-twdtAbauIk .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdtAbauIk .mbr-text,
.cid-twdtAbauIk .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdtAbauIk .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdtB9jnho {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twdtB9jnho .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdtB9jnho .row-element,
.cid-twdtB9jnho .image-element {
  padding: 0;
}
.cid-twdtB9jnho .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdtB9jnho .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdtB9jnho .text-content {
  padding: 3rem;
}
.cid-twdtB9jnho .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdtB9jnho .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdtB9jnho .mbr-title,
  .cid-twdtB9jnho .underline,
  .cid-twdtB9jnho .mbr-text,
  .cid-twdtB9jnho .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdtB9jnho .mbr-text,
.cid-twdtB9jnho .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdtB9jnho .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-twdtBSbYn4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-twdtBSbYn4 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twdtBSbYn4 .row-element,
.cid-twdtBSbYn4 .image-element {
  padding: 0;
}
.cid-twdtBSbYn4 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twdtBSbYn4 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-twdtBSbYn4 .text-content {
  padding: 3rem;
}
.cid-twdtBSbYn4 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-twdtBSbYn4 .text-content {
    padding: 2rem 1rem;
  }
  .cid-twdtBSbYn4 .mbr-title,
  .cid-twdtBSbYn4 .underline,
  .cid-twdtBSbYn4 .mbr-text,
  .cid-twdtBSbYn4 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-twdtBSbYn4 .mbr-text,
.cid-twdtBSbYn4 .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-twdtBSbYn4 .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6dPRj1Ao {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tI6dPRj1Ao .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6dPRj1Ao .row-element,
.cid-tI6dPRj1Ao .image-element {
  padding: 0;
}
.cid-tI6dPRj1Ao .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6dPRj1Ao .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6dPRj1Ao .text-content {
  padding: 3rem;
}
.cid-tI6dPRj1Ao .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6dPRj1Ao .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6dPRj1Ao .mbr-title,
  .cid-tI6dPRj1Ao .underline,
  .cid-tI6dPRj1Ao .mbr-text,
  .cid-tI6dPRj1Ao .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6dPRj1Ao .mbr-text,
.cid-tI6dPRj1Ao .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6dPRj1Ao .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6dQeGVhu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tI6dQeGVhu .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6dQeGVhu .row-element,
.cid-tI6dQeGVhu .image-element {
  padding: 0;
}
.cid-tI6dQeGVhu .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6dQeGVhu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6dQeGVhu .text-content {
  padding: 3rem;
}
.cid-tI6dQeGVhu .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6dQeGVhu .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6dQeGVhu .mbr-title,
  .cid-tI6dQeGVhu .underline,
  .cid-tI6dQeGVhu .mbr-text,
  .cid-tI6dQeGVhu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6dQeGVhu .mbr-text,
.cid-tI6dQeGVhu .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6dQeGVhu .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6dQBObrA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tI6dQBObrA .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6dQBObrA .row-element,
.cid-tI6dQBObrA .image-element {
  padding: 0;
}
.cid-tI6dQBObrA .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6dQBObrA .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6dQBObrA .text-content {
  padding: 3rem;
}
.cid-tI6dQBObrA .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6dQBObrA .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6dQBObrA .mbr-title,
  .cid-tI6dQBObrA .underline,
  .cid-tI6dQBObrA .mbr-text,
  .cid-tI6dQBObrA .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6dQBObrA .mbr-text,
.cid-tI6dQBObrA .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6dQBObrA .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6dQZp2p7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tI6dQZp2p7 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6dQZp2p7 .row-element,
.cid-tI6dQZp2p7 .image-element {
  padding: 0;
}
.cid-tI6dQZp2p7 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6dQZp2p7 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6dQZp2p7 .text-content {
  padding: 3rem;
}
.cid-tI6dQZp2p7 .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6dQZp2p7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6dQZp2p7 .mbr-title,
  .cid-tI6dQZp2p7 .underline,
  .cid-tI6dQZp2p7 .mbr-text,
  .cid-tI6dQZp2p7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6dQZp2p7 .mbr-text,
.cid-tI6dQZp2p7 .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6dQZp2p7 .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6dRr88jC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tI6dRr88jC .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6dRr88jC .row-element,
.cid-tI6dRr88jC .image-element {
  padding: 0;
}
.cid-tI6dRr88jC .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6dRr88jC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6dRr88jC .text-content {
  padding: 3rem;
}
.cid-tI6dRr88jC .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6dRr88jC .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6dRr88jC .mbr-title,
  .cid-tI6dRr88jC .underline,
  .cid-tI6dRr88jC .mbr-text,
  .cid-tI6dRr88jC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6dRr88jC .mbr-text,
.cid-tI6dRr88jC .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6dRr88jC .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6dPr0vWm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tI6dPr0vWm .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6dPr0vWm .row-element,
.cid-tI6dPr0vWm .image-element {
  padding: 0;
}
.cid-tI6dPr0vWm .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6dPr0vWm .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6dPr0vWm .text-content {
  padding: 3rem;
}
.cid-tI6dPr0vWm .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6dPr0vWm .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6dPr0vWm .mbr-title,
  .cid-tI6dPr0vWm .underline,
  .cid-tI6dPr0vWm .mbr-text,
  .cid-tI6dPr0vWm .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6dPr0vWm .mbr-text,
.cid-tI6dPr0vWm .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6dPr0vWm .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6exFEmfh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tI6exFEmfh .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6exFEmfh .row-element,
.cid-tI6exFEmfh .image-element {
  padding: 0;
}
.cid-tI6exFEmfh .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6exFEmfh .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6exFEmfh .text-content {
  padding: 3rem;
}
.cid-tI6exFEmfh .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6exFEmfh .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6exFEmfh .mbr-title,
  .cid-tI6exFEmfh .underline,
  .cid-tI6exFEmfh .mbr-text,
  .cid-tI6exFEmfh .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6exFEmfh .mbr-text,
.cid-tI6exFEmfh .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6exFEmfh .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-tI6ey4Gk3S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tI6ey4Gk3S .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tI6ey4Gk3S .row-element,
.cid-tI6ey4Gk3S .image-element {
  padding: 0;
}
.cid-tI6ey4Gk3S .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tI6ey4Gk3S .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tI6ey4Gk3S .text-content {
  padding: 3rem;
}
.cid-tI6ey4Gk3S .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tI6ey4Gk3S .text-content {
    padding: 2rem 1rem;
  }
  .cid-tI6ey4Gk3S .mbr-title,
  .cid-tI6ey4Gk3S .underline,
  .cid-tI6ey4Gk3S .mbr-text,
  .cid-tI6ey4Gk3S .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tI6ey4Gk3S .mbr-text,
.cid-tI6ey4Gk3S .mbr-section-btn {
  text-align: left;
  color: #666666;
}
.cid-tI6ey4Gk3S .mbr-title {
  text-align: left;
  color: #1dadea;
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ1mf7pN3 {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ1mf7pN3 .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ1mf7pN3 .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ1mf7pN3 .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ1mf7pN3 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ1mf7pN3 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ1mf7pN3 H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIlOv98ZZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIlOv98ZZ .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIlOv98ZZ .title,
.cid-rNIlOv98ZZ .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIlOv98ZZ .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIlOv98ZZ .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIlOv98ZZ .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIlOv98ZZ .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIlOv98ZZ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIlOv98ZZ .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIlOv98ZZ .card-img {
  overflow: hidden;
}
.cid-rNIlOv98ZZ .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIlOv98ZZ .card-box {
  padding: 0rem;
}
.cid-rNIlOv98ZZ img {
  transition: all 0.3s;
}
.cid-rNIlOv98ZZ .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIlOv98ZZ .status {
  color: #767676;
  text-align: left;
}
.cid-rNIms3l3Co {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIms3l3Co .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIms3l3Co .title,
.cid-rNIms3l3Co .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIms3l3Co .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIms3l3Co .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIms3l3Co .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIms3l3Co .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIms3l3Co .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIms3l3Co .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIms3l3Co .card-img {
  overflow: hidden;
}
.cid-rNIms3l3Co .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIms3l3Co .card-box {
  padding: 0rem;
}
.cid-rNIms3l3Co img {
  transition: all 0.3s;
}
.cid-rNIms3l3Co .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIms3l3Co .status {
  color: #767676;
  text-align: left;
}
.cid-rNImWnWOHZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNImWnWOHZ .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNImWnWOHZ .title,
.cid-rNImWnWOHZ .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNImWnWOHZ .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNImWnWOHZ .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNImWnWOHZ .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNImWnWOHZ .text-box {
  padding: 0rem;
}
.cid-rNImWnWOHZ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNImWnWOHZ .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNImWnWOHZ .card-img {
  overflow: hidden;
}
.cid-rNImWnWOHZ .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNImWnWOHZ .card-box {
  padding: 0rem;
}
.cid-rNImWnWOHZ img {
  transition: all 0.3s;
}
.cid-rNImWnWOHZ .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNImWnWOHZ .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNImWnWOHZ .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNImWnWOHZ .card-img {
    width: 30%;
  }
  .cid-rNImWnWOHZ .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNImWnWOHZ .card-img {
    width: 50%;
  }
  .cid-rNImWnWOHZ .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNImWnWOHZ .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNImWnWOHZ .card-img {
    width: 100%;
  }
  .cid-rNImWnWOHZ .card-box {
    width: 100%;
  }
}
.cid-rNImWnWOHZ .card-box > p,
.cid-rNImWnWOHZ .mbr-section-btn {
  color: #767676;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ1iX6MoQ {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ1iX6MoQ .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ1iX6MoQ .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ1iX6MoQ .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ1iX6MoQ img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ1iX6MoQ .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ1iX6MoQ H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNInKSMFSS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNInKSMFSS .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNInKSMFSS .title,
.cid-rNInKSMFSS .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNInKSMFSS .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNInKSMFSS .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNInKSMFSS .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNInKSMFSS .text-box {
  padding: 0rem;
}
.cid-rNInKSMFSS .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNInKSMFSS .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNInKSMFSS .card-img {
  overflow: hidden;
}
.cid-rNInKSMFSS .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNInKSMFSS .card-box {
  padding: 0rem;
}
.cid-rNInKSMFSS img {
  transition: all 0.3s;
}
.cid-rNInKSMFSS .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNInKSMFSS .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNInKSMFSS .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNInKSMFSS .card-img {
    width: 30%;
  }
  .cid-rNInKSMFSS .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNInKSMFSS .card-img {
    width: 50%;
  }
  .cid-rNInKSMFSS .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNInKSMFSS .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNInKSMFSS .card-img {
    width: 100%;
  }
  .cid-rNInKSMFSS .card-box {
    width: 100%;
  }
}
.cid-rNInKSMFSS .card-box > p,
.cid-rNInKSMFSS .mbr-section-btn {
  color: #767676;
}
.cid-rSGbQ5mbaH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSGbQ5mbaH .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rSGbQ5mbaH .title,
.cid-rSGbQ5mbaH .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rSGbQ5mbaH .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rSGbQ5mbaH .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rSGbQ5mbaH .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rSGbQ5mbaH .text-box {
  padding: 0rem;
}
.cid-rSGbQ5mbaH .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rSGbQ5mbaH .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rSGbQ5mbaH .card-img {
  overflow: hidden;
}
.cid-rSGbQ5mbaH .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rSGbQ5mbaH .card-box {
  padding: 0rem;
}
.cid-rSGbQ5mbaH img {
  transition: all 0.3s;
}
.cid-rSGbQ5mbaH .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rSGbQ5mbaH .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rSGbQ5mbaH .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rSGbQ5mbaH .card-img {
    width: 30%;
  }
  .cid-rSGbQ5mbaH .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rSGbQ5mbaH .card-img {
    width: 50%;
  }
  .cid-rSGbQ5mbaH .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rSGbQ5mbaH .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rSGbQ5mbaH .card-img {
    width: 100%;
  }
  .cid-rSGbQ5mbaH .card-box {
    width: 100%;
  }
}
.cid-rSGbQ5mbaH .card-box > p,
.cid-rSGbQ5mbaH .mbr-section-btn {
  color: #767676;
}
.cid-rSGar1omi6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSGar1omi6 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rSGar1omi6 .title,
.cid-rSGar1omi6 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rSGar1omi6 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rSGar1omi6 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rSGar1omi6 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rSGar1omi6 .text-box {
  padding: 0rem;
}
.cid-rSGar1omi6 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rSGar1omi6 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rSGar1omi6 .card-img {
  overflow: hidden;
}
.cid-rSGar1omi6 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rSGar1omi6 .card-box {
  padding: 0rem;
}
.cid-rSGar1omi6 img {
  transition: all 0.3s;
}
.cid-rSGar1omi6 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rSGar1omi6 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rSGar1omi6 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rSGar1omi6 .card-img {
    width: 30%;
  }
  .cid-rSGar1omi6 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rSGar1omi6 .card-img {
    width: 50%;
  }
  .cid-rSGar1omi6 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rSGar1omi6 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rSGar1omi6 .card-img {
    width: 100%;
  }
  .cid-rSGar1omi6 .card-box {
    width: 100%;
  }
}
.cid-rSGar1omi6 .card-box > p,
.cid-rSGar1omi6 .mbr-section-btn {
  color: #767676;
}
.cid-rSGarCUMdx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSGarCUMdx .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rSGarCUMdx .title,
.cid-rSGarCUMdx .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rSGarCUMdx .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rSGarCUMdx .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rSGarCUMdx .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rSGarCUMdx .text-box {
  padding: 0rem;
}
.cid-rSGarCUMdx .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rSGarCUMdx .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rSGarCUMdx .card-img {
  overflow: hidden;
}
.cid-rSGarCUMdx .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rSGarCUMdx .card-box {
  padding: 0rem;
}
.cid-rSGarCUMdx img {
  transition: all 0.3s;
}
.cid-rSGarCUMdx .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rSGarCUMdx .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rSGarCUMdx .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rSGarCUMdx .card-img {
    width: 30%;
  }
  .cid-rSGarCUMdx .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rSGarCUMdx .card-img {
    width: 50%;
  }
  .cid-rSGarCUMdx .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rSGarCUMdx .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rSGarCUMdx .card-img {
    width: 100%;
  }
  .cid-rSGarCUMdx .card-box {
    width: 100%;
  }
}
.cid-rSGarCUMdx .card-box > p,
.cid-rSGarCUMdx .mbr-section-btn {
  color: #767676;
}
.cid-rSGas0ytmb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSGas0ytmb .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rSGas0ytmb .title,
.cid-rSGas0ytmb .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rSGas0ytmb .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rSGas0ytmb .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rSGas0ytmb .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rSGas0ytmb .text-box {
  padding: 0rem;
}
.cid-rSGas0ytmb .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rSGas0ytmb .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rSGas0ytmb .card-img {
  overflow: hidden;
}
.cid-rSGas0ytmb .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rSGas0ytmb .card-box {
  padding: 0rem;
}
.cid-rSGas0ytmb img {
  transition: all 0.3s;
}
.cid-rSGas0ytmb .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rSGas0ytmb .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rSGas0ytmb .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rSGas0ytmb .card-img {
    width: 30%;
  }
  .cid-rSGas0ytmb .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rSGas0ytmb .card-img {
    width: 50%;
  }
  .cid-rSGas0ytmb .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rSGas0ytmb .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rSGas0ytmb .card-img {
    width: 100%;
  }
  .cid-rSGas0ytmb .card-box {
    width: 100%;
  }
}
.cid-rSGas0ytmb .card-box > p,
.cid-rSGas0ytmb .mbr-section-btn {
  color: #767676;
}
.cid-rNInNltGTX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNInNltGTX .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNInNltGTX .title,
.cid-rNInNltGTX .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNInNltGTX .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNInNltGTX .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNInNltGTX .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNInNltGTX .text-box {
  padding: 0rem;
}
.cid-rNInNltGTX .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNInNltGTX .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNInNltGTX .card-img {
  overflow: hidden;
}
.cid-rNInNltGTX .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNInNltGTX .card-box {
  padding: 0rem;
}
.cid-rNInNltGTX img {
  transition: all 0.3s;
}
.cid-rNInNltGTX .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNInNltGTX .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNInNltGTX .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNInNltGTX .card-img {
    width: 30%;
  }
  .cid-rNInNltGTX .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNInNltGTX .card-img {
    width: 50%;
  }
  .cid-rNInNltGTX .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNInNltGTX .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNInNltGTX .card-img {
    width: 100%;
  }
  .cid-rNInNltGTX .card-box {
    width: 100%;
  }
}
.cid-rNInNltGTX .card-box > p,
.cid-rNInNltGTX .mbr-section-btn {
  color: #767676;
}
.cid-rNInLIB2FH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNInLIB2FH .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNInLIB2FH .title,
.cid-rNInLIB2FH .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNInLIB2FH .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNInLIB2FH .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNInLIB2FH .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNInLIB2FH .text-box {
  padding: 0rem;
}
.cid-rNInLIB2FH .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNInLIB2FH .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNInLIB2FH .card-img {
  overflow: hidden;
}
.cid-rNInLIB2FH .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNInLIB2FH .card-box {
  padding: 0rem;
}
.cid-rNInLIB2FH img {
  transition: all 0.3s;
}
.cid-rNInLIB2FH .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNInLIB2FH .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNInLIB2FH .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNInLIB2FH .card-img {
    width: 30%;
  }
  .cid-rNInLIB2FH .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNInLIB2FH .card-img {
    width: 50%;
  }
  .cid-rNInLIB2FH .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNInLIB2FH .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNInLIB2FH .card-img {
    width: 100%;
  }
  .cid-rNInLIB2FH .card-box {
    width: 100%;
  }
}
.cid-rNInLIB2FH .card-box > p,
.cid-rNInLIB2FH .mbr-section-btn {
  color: #767676;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ1cgMRuv {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ1cgMRuv .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ1cgMRuv .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ1cgMRuv .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ1cgMRuv img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ1cgMRuv .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ1cgMRuv H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIoMu3rPV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIoMu3rPV .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIoMu3rPV .title,
.cid-rNIoMu3rPV .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIoMu3rPV .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIoMu3rPV .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIoMu3rPV .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIoMu3rPV .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIoMu3rPV .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIoMu3rPV .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIoMu3rPV .card-img {
  overflow: hidden;
}
.cid-rNIoMu3rPV .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIoMu3rPV .card-box {
  padding: 0rem;
}
.cid-rNIoMu3rPV img {
  transition: all 0.3s;
}
.cid-rNIoMu3rPV .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIoMu3rPV .status {
  color: #767676;
  text-align: left;
}
.cid-t3sTk30vda {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3sTk30vda .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-t3sTk30vda .title,
.cid-t3sTk30vda .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-t3sTk30vda .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-t3sTk30vda .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-t3sTk30vda .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-t3sTk30vda .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-t3sTk30vda .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-t3sTk30vda .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-t3sTk30vda .card-img {
  overflow: hidden;
}
.cid-t3sTk30vda .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-t3sTk30vda .card-box {
  padding: 0rem;
}
.cid-t3sTk30vda img {
  transition: all 0.3s;
}
.cid-t3sTk30vda .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-t3sTk30vda .status {
  color: #767676;
  text-align: left;
}
.cid-rNIptKYsJF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIptKYsJF .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIptKYsJF .title,
.cid-rNIptKYsJF .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIptKYsJF .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIptKYsJF .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIptKYsJF .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIptKYsJF .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIptKYsJF .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIptKYsJF .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIptKYsJF .card-img {
  overflow: hidden;
}
.cid-rNIptKYsJF .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIptKYsJF .card-box {
  padding: 0rem;
}
.cid-rNIptKYsJF img {
  transition: all 0.3s;
}
.cid-rNIptKYsJF .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIptKYsJF .status {
  color: #767676;
  text-align: left;
}
.cid-rNIpuge5wB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIpuge5wB .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIpuge5wB .title,
.cid-rNIpuge5wB .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIpuge5wB .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIpuge5wB .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIpuge5wB .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIpuge5wB .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIpuge5wB .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIpuge5wB .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIpuge5wB .card-img {
  overflow: hidden;
}
.cid-rNIpuge5wB .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIpuge5wB .card-box {
  padding: 0rem;
}
.cid-rNIpuge5wB img {
  transition: all 0.3s;
}
.cid-rNIpuge5wB .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIpuge5wB .status {
  color: #767676;
  text-align: left;
}
.cid-rNIpvwgefc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIpvwgefc .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIpvwgefc .title,
.cid-rNIpvwgefc .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIpvwgefc .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIpvwgefc .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIpvwgefc .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIpvwgefc .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIpvwgefc .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIpvwgefc .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIpvwgefc .card-img {
  overflow: hidden;
}
.cid-rNIpvwgefc .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIpvwgefc .card-box {
  padding: 0rem;
}
.cid-rNIpvwgefc img {
  transition: all 0.3s;
}
.cid-rNIpvwgefc .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIpvwgefc .status {
  color: #767676;
  text-align: left;
}
.cid-rNIpvVxdKG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIpvVxdKG .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIpvVxdKG .title,
.cid-rNIpvVxdKG .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIpvVxdKG .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIpvVxdKG .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIpvVxdKG .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIpvVxdKG .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIpvVxdKG .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIpvVxdKG .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIpvVxdKG .card-img {
  overflow: hidden;
}
.cid-rNIpvVxdKG .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIpvVxdKG .card-box {
  padding: 0rem;
}
.cid-rNIpvVxdKG img {
  transition: all 0.3s;
}
.cid-rNIpvVxdKG .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIpvVxdKG .status {
  color: #767676;
  text-align: left;
}
.cid-t3sTVtam2Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3sTVtam2Z .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-t3sTVtam2Z .title,
.cid-t3sTVtam2Z .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-t3sTVtam2Z .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-t3sTVtam2Z .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-t3sTVtam2Z .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-t3sTVtam2Z .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-t3sTVtam2Z .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-t3sTVtam2Z .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-t3sTVtam2Z .card-img {
  overflow: hidden;
}
.cid-t3sTVtam2Z .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-t3sTVtam2Z .card-box {
  padding: 0rem;
}
.cid-t3sTVtam2Z img {
  transition: all 0.3s;
}
.cid-t3sTVtam2Z .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-t3sTVtam2Z .status {
  color: #767676;
  text-align: left;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ12V9uak {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ12V9uak .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ12V9uak .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ12V9uak .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ12V9uak img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ12V9uak .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ12V9uak H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIuicj6yt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIuicj6yt .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIuicj6yt .title,
.cid-rNIuicj6yt .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIuicj6yt .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIuicj6yt .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIuicj6yt .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIuicj6yt .text-box {
  padding: 0rem;
}
.cid-rNIuicj6yt .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIuicj6yt .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIuicj6yt .card-img {
  overflow: hidden;
}
.cid-rNIuicj6yt .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIuicj6yt .card-box {
  padding: 0rem;
}
.cid-rNIuicj6yt img {
  transition: all 0.3s;
}
.cid-rNIuicj6yt .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIuicj6yt .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIuicj6yt .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIuicj6yt .card-img {
    width: 30%;
  }
  .cid-rNIuicj6yt .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIuicj6yt .card-img {
    width: 50%;
  }
  .cid-rNIuicj6yt .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIuicj6yt .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIuicj6yt .card-img {
    width: 100%;
  }
  .cid-rNIuicj6yt .card-box {
    width: 100%;
  }
}
.cid-rNIuicj6yt .card-box > p,
.cid-rNIuicj6yt .mbr-section-btn {
  color: #767676;
}
.cid-rNIuiGzEiT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIuiGzEiT .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIuiGzEiT .title,
.cid-rNIuiGzEiT .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIuiGzEiT .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIuiGzEiT .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIuiGzEiT .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIuiGzEiT .text-box {
  padding: 0rem;
}
.cid-rNIuiGzEiT .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIuiGzEiT .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIuiGzEiT .card-img {
  overflow: hidden;
}
.cid-rNIuiGzEiT .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIuiGzEiT .card-box {
  padding: 0rem;
}
.cid-rNIuiGzEiT img {
  transition: all 0.3s;
}
.cid-rNIuiGzEiT .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIuiGzEiT .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIuiGzEiT .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIuiGzEiT .card-img {
    width: 30%;
  }
  .cid-rNIuiGzEiT .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIuiGzEiT .card-img {
    width: 50%;
  }
  .cid-rNIuiGzEiT .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIuiGzEiT .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIuiGzEiT .card-img {
    width: 100%;
  }
  .cid-rNIuiGzEiT .card-box {
    width: 100%;
  }
}
.cid-rNIuiGzEiT .card-box > p,
.cid-rNIuiGzEiT .mbr-section-btn {
  color: #767676;
}
.cid-rNIujnsLTq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIujnsLTq .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIujnsLTq .title,
.cid-rNIujnsLTq .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIujnsLTq .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIujnsLTq .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIujnsLTq .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIujnsLTq .text-box {
  padding: 0rem;
}
.cid-rNIujnsLTq .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIujnsLTq .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIujnsLTq .card-img {
  overflow: hidden;
}
.cid-rNIujnsLTq .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIujnsLTq .card-box {
  padding: 0rem;
}
.cid-rNIujnsLTq img {
  transition: all 0.3s;
}
.cid-rNIujnsLTq .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIujnsLTq .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIujnsLTq .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIujnsLTq .card-img {
    width: 30%;
  }
  .cid-rNIujnsLTq .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIujnsLTq .card-img {
    width: 50%;
  }
  .cid-rNIujnsLTq .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIujnsLTq .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIujnsLTq .card-img {
    width: 100%;
  }
  .cid-rNIujnsLTq .card-box {
    width: 100%;
  }
}
.cid-rNIujnsLTq .card-box > p,
.cid-rNIujnsLTq .mbr-section-btn {
  color: #767676;
}
.cid-rNIuj0by5D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIuj0by5D .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIuj0by5D .title,
.cid-rNIuj0by5D .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIuj0by5D .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIuj0by5D .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIuj0by5D .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIuj0by5D .text-box {
  padding: 0rem;
}
.cid-rNIuj0by5D .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIuj0by5D .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIuj0by5D .card-img {
  overflow: hidden;
}
.cid-rNIuj0by5D .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIuj0by5D .card-box {
  padding: 0rem;
}
.cid-rNIuj0by5D img {
  transition: all 0.3s;
}
.cid-rNIuj0by5D .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIuj0by5D .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIuj0by5D .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIuj0by5D .card-img {
    width: 30%;
  }
  .cid-rNIuj0by5D .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIuj0by5D .card-img {
    width: 50%;
  }
  .cid-rNIuj0by5D .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIuj0by5D .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIuj0by5D .card-img {
    width: 100%;
  }
  .cid-rNIuj0by5D .card-box {
    width: 100%;
  }
}
.cid-rNIuj0by5D .card-box > p,
.cid-rNIuj0by5D .mbr-section-btn {
  color: #767676;
}
.cid-rSG8Vai0bm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSG8Vai0bm .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rSG8Vai0bm .title,
.cid-rSG8Vai0bm .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rSG8Vai0bm .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rSG8Vai0bm .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rSG8Vai0bm .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rSG8Vai0bm .text-box {
  padding: 0rem;
}
.cid-rSG8Vai0bm .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rSG8Vai0bm .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rSG8Vai0bm .card-img {
  overflow: hidden;
}
.cid-rSG8Vai0bm .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rSG8Vai0bm .card-box {
  padding: 0rem;
}
.cid-rSG8Vai0bm img {
  transition: all 0.3s;
}
.cid-rSG8Vai0bm .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rSG8Vai0bm .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rSG8Vai0bm .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rSG8Vai0bm .card-img {
    width: 30%;
  }
  .cid-rSG8Vai0bm .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rSG8Vai0bm .card-img {
    width: 50%;
  }
  .cid-rSG8Vai0bm .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rSG8Vai0bm .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rSG8Vai0bm .card-img {
    width: 100%;
  }
  .cid-rSG8Vai0bm .card-box {
    width: 100%;
  }
}
.cid-rSG8Vai0bm .card-box > p,
.cid-rSG8Vai0bm .mbr-section-btn {
  color: #767676;
}
.cid-rSG8VWwPXt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSG8VWwPXt .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rSG8VWwPXt .title,
.cid-rSG8VWwPXt .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rSG8VWwPXt .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rSG8VWwPXt .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rSG8VWwPXt .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rSG8VWwPXt .text-box {
  padding: 0rem;
}
.cid-rSG8VWwPXt .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rSG8VWwPXt .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rSG8VWwPXt .card-img {
  overflow: hidden;
}
.cid-rSG8VWwPXt .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rSG8VWwPXt .card-box {
  padding: 0rem;
}
.cid-rSG8VWwPXt img {
  transition: all 0.3s;
}
.cid-rSG8VWwPXt .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rSG8VWwPXt .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rSG8VWwPXt .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rSG8VWwPXt .card-img {
    width: 30%;
  }
  .cid-rSG8VWwPXt .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rSG8VWwPXt .card-img {
    width: 50%;
  }
  .cid-rSG8VWwPXt .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rSG8VWwPXt .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rSG8VWwPXt .card-img {
    width: 100%;
  }
  .cid-rSG8VWwPXt .card-box {
    width: 100%;
  }
}
.cid-rSG8VWwPXt .card-box > p,
.cid-rSG8VWwPXt .mbr-section-btn {
  color: #767676;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sM779ZjEk5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM779ZjEk5 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM779ZjEk5 .title,
.cid-sM779ZjEk5 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM779ZjEk5 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM779ZjEk5 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM779ZjEk5 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM779ZjEk5 .text-box {
  padding: 0rem;
}
.cid-sM779ZjEk5 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM779ZjEk5 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM779ZjEk5 .card-img {
  overflow: hidden;
}
.cid-sM779ZjEk5 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM779ZjEk5 .card-box {
  padding: 0rem;
}
.cid-sM779ZjEk5 img {
  transition: all 0.3s;
}
.cid-sM779ZjEk5 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM779ZjEk5 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM779ZjEk5 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM779ZjEk5 .card-img {
    width: 30%;
  }
  .cid-sM779ZjEk5 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM779ZjEk5 .card-img {
    width: 50%;
  }
  .cid-sM779ZjEk5 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM779ZjEk5 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM779ZjEk5 .card-img {
    width: 100%;
  }
  .cid-sM779ZjEk5 .card-box {
    width: 100%;
  }
}
.cid-sM779ZjEk5 .card-box > p,
.cid-sM779ZjEk5 .mbr-section-btn {
  color: #767676;
}
.cid-sM77c9kXgl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77c9kXgl .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77c9kXgl .title,
.cid-sM77c9kXgl .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77c9kXgl .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77c9kXgl .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77c9kXgl .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77c9kXgl .text-box {
  padding: 0rem;
}
.cid-sM77c9kXgl .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77c9kXgl .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77c9kXgl .card-img {
  overflow: hidden;
}
.cid-sM77c9kXgl .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77c9kXgl .card-box {
  padding: 0rem;
}
.cid-sM77c9kXgl img {
  transition: all 0.3s;
}
.cid-sM77c9kXgl .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77c9kXgl .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77c9kXgl .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77c9kXgl .card-img {
    width: 30%;
  }
  .cid-sM77c9kXgl .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77c9kXgl .card-img {
    width: 50%;
  }
  .cid-sM77c9kXgl .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77c9kXgl .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77c9kXgl .card-img {
    width: 100%;
  }
  .cid-sM77c9kXgl .card-box {
    width: 100%;
  }
}
.cid-sM77c9kXgl .card-box > p,
.cid-sM77c9kXgl .mbr-section-btn {
  color: #767676;
}
.cid-sM77cuhZMU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77cuhZMU .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77cuhZMU .title,
.cid-sM77cuhZMU .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77cuhZMU .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77cuhZMU .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77cuhZMU .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77cuhZMU .text-box {
  padding: 0rem;
}
.cid-sM77cuhZMU .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77cuhZMU .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77cuhZMU .card-img {
  overflow: hidden;
}
.cid-sM77cuhZMU .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77cuhZMU .card-box {
  padding: 0rem;
}
.cid-sM77cuhZMU img {
  transition: all 0.3s;
}
.cid-sM77cuhZMU .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77cuhZMU .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77cuhZMU .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77cuhZMU .card-img {
    width: 30%;
  }
  .cid-sM77cuhZMU .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77cuhZMU .card-img {
    width: 50%;
  }
  .cid-sM77cuhZMU .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77cuhZMU .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77cuhZMU .card-img {
    width: 100%;
  }
  .cid-sM77cuhZMU .card-box {
    width: 100%;
  }
}
.cid-sM77cuhZMU .card-box > p,
.cid-sM77cuhZMU .mbr-section-btn {
  color: #767676;
}
.cid-sM77cNFaKL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77cNFaKL .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77cNFaKL .title,
.cid-sM77cNFaKL .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77cNFaKL .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77cNFaKL .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77cNFaKL .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77cNFaKL .text-box {
  padding: 0rem;
}
.cid-sM77cNFaKL .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77cNFaKL .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77cNFaKL .card-img {
  overflow: hidden;
}
.cid-sM77cNFaKL .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77cNFaKL .card-box {
  padding: 0rem;
}
.cid-sM77cNFaKL img {
  transition: all 0.3s;
}
.cid-sM77cNFaKL .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77cNFaKL .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77cNFaKL .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77cNFaKL .card-img {
    width: 30%;
  }
  .cid-sM77cNFaKL .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77cNFaKL .card-img {
    width: 50%;
  }
  .cid-sM77cNFaKL .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77cNFaKL .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77cNFaKL .card-img {
    width: 100%;
  }
  .cid-sM77cNFaKL .card-box {
    width: 100%;
  }
}
.cid-sM77cNFaKL .card-box > p,
.cid-sM77cNFaKL .mbr-section-btn {
  color: #767676;
}
.cid-sM77d8csCB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77d8csCB .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77d8csCB .title,
.cid-sM77d8csCB .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77d8csCB .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77d8csCB .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77d8csCB .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77d8csCB .text-box {
  padding: 0rem;
}
.cid-sM77d8csCB .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77d8csCB .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77d8csCB .card-img {
  overflow: hidden;
}
.cid-sM77d8csCB .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77d8csCB .card-box {
  padding: 0rem;
}
.cid-sM77d8csCB img {
  transition: all 0.3s;
}
.cid-sM77d8csCB .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77d8csCB .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77d8csCB .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77d8csCB .card-img {
    width: 30%;
  }
  .cid-sM77d8csCB .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77d8csCB .card-img {
    width: 50%;
  }
  .cid-sM77d8csCB .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77d8csCB .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77d8csCB .card-img {
    width: 100%;
  }
  .cid-sM77d8csCB .card-box {
    width: 100%;
  }
}
.cid-sM77d8csCB .card-box > p,
.cid-sM77d8csCB .mbr-section-btn {
  color: #767676;
}
.cid-sM77dzzPy4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77dzzPy4 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77dzzPy4 .title,
.cid-sM77dzzPy4 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77dzzPy4 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77dzzPy4 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77dzzPy4 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77dzzPy4 .text-box {
  padding: 0rem;
}
.cid-sM77dzzPy4 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77dzzPy4 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77dzzPy4 .card-img {
  overflow: hidden;
}
.cid-sM77dzzPy4 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77dzzPy4 .card-box {
  padding: 0rem;
}
.cid-sM77dzzPy4 img {
  transition: all 0.3s;
}
.cid-sM77dzzPy4 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77dzzPy4 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77dzzPy4 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77dzzPy4 .card-img {
    width: 30%;
  }
  .cid-sM77dzzPy4 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77dzzPy4 .card-img {
    width: 50%;
  }
  .cid-sM77dzzPy4 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77dzzPy4 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77dzzPy4 .card-img {
    width: 100%;
  }
  .cid-sM77dzzPy4 .card-box {
    width: 100%;
  }
}
.cid-sM77dzzPy4 .card-box > p,
.cid-sM77dzzPy4 .mbr-section-btn {
  color: #767676;
}
.cid-sM77dS1OvR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77dS1OvR .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77dS1OvR .title,
.cid-sM77dS1OvR .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77dS1OvR .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77dS1OvR .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77dS1OvR .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77dS1OvR .text-box {
  padding: 0rem;
}
.cid-sM77dS1OvR .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77dS1OvR .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77dS1OvR .card-img {
  overflow: hidden;
}
.cid-sM77dS1OvR .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77dS1OvR .card-box {
  padding: 0rem;
}
.cid-sM77dS1OvR img {
  transition: all 0.3s;
}
.cid-sM77dS1OvR .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77dS1OvR .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77dS1OvR .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77dS1OvR .card-img {
    width: 30%;
  }
  .cid-sM77dS1OvR .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77dS1OvR .card-img {
    width: 50%;
  }
  .cid-sM77dS1OvR .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77dS1OvR .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77dS1OvR .card-img {
    width: 100%;
  }
  .cid-sM77dS1OvR .card-box {
    width: 100%;
  }
}
.cid-sM77dS1OvR .card-box > p,
.cid-sM77dS1OvR .mbr-section-btn {
  color: #767676;
}
.cid-sM77bUOMuL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77bUOMuL .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77bUOMuL .title,
.cid-sM77bUOMuL .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77bUOMuL .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77bUOMuL .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77bUOMuL .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77bUOMuL .text-box {
  padding: 0rem;
}
.cid-sM77bUOMuL .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77bUOMuL .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77bUOMuL .card-img {
  overflow: hidden;
}
.cid-sM77bUOMuL .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77bUOMuL .card-box {
  padding: 0rem;
}
.cid-sM77bUOMuL img {
  transition: all 0.3s;
}
.cid-sM77bUOMuL .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77bUOMuL .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77bUOMuL .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77bUOMuL .card-img {
    width: 30%;
  }
  .cid-sM77bUOMuL .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77bUOMuL .card-img {
    width: 50%;
  }
  .cid-sM77bUOMuL .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77bUOMuL .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77bUOMuL .card-img {
    width: 100%;
  }
  .cid-sM77bUOMuL .card-box {
    width: 100%;
  }
}
.cid-sM77bUOMuL .card-box > p,
.cid-sM77bUOMuL .mbr-section-btn {
  color: #767676;
}
.cid-sM77ebZ37W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77ebZ37W .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77ebZ37W .title,
.cid-sM77ebZ37W .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77ebZ37W .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77ebZ37W .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77ebZ37W .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77ebZ37W .text-box {
  padding: 0rem;
}
.cid-sM77ebZ37W .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77ebZ37W .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77ebZ37W .card-img {
  overflow: hidden;
}
.cid-sM77ebZ37W .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77ebZ37W .card-box {
  padding: 0rem;
}
.cid-sM77ebZ37W img {
  transition: all 0.3s;
}
.cid-sM77ebZ37W .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77ebZ37W .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77ebZ37W .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77ebZ37W .card-img {
    width: 30%;
  }
  .cid-sM77ebZ37W .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77ebZ37W .card-img {
    width: 50%;
  }
  .cid-sM77ebZ37W .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77ebZ37W .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77ebZ37W .card-img {
    width: 100%;
  }
  .cid-sM77ebZ37W .card-box {
    width: 100%;
  }
}
.cid-sM77ebZ37W .card-box > p,
.cid-sM77ebZ37W .mbr-section-btn {
  color: #767676;
}
.cid-sM77eVUxSx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77eVUxSx .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77eVUxSx .title,
.cid-sM77eVUxSx .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77eVUxSx .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77eVUxSx .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77eVUxSx .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77eVUxSx .text-box {
  padding: 0rem;
}
.cid-sM77eVUxSx .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77eVUxSx .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77eVUxSx .card-img {
  overflow: hidden;
}
.cid-sM77eVUxSx .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77eVUxSx .card-box {
  padding: 0rem;
}
.cid-sM77eVUxSx img {
  transition: all 0.3s;
}
.cid-sM77eVUxSx .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77eVUxSx .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77eVUxSx .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77eVUxSx .card-img {
    width: 30%;
  }
  .cid-sM77eVUxSx .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77eVUxSx .card-img {
    width: 50%;
  }
  .cid-sM77eVUxSx .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77eVUxSx .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77eVUxSx .card-img {
    width: 100%;
  }
  .cid-sM77eVUxSx .card-box {
    width: 100%;
  }
}
.cid-sM77eVUxSx .card-box > p,
.cid-sM77eVUxSx .mbr-section-btn {
  color: #767676;
}
.cid-sM77ffZrQS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77ffZrQS .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77ffZrQS .title,
.cid-sM77ffZrQS .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77ffZrQS .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77ffZrQS .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77ffZrQS .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77ffZrQS .text-box {
  padding: 0rem;
}
.cid-sM77ffZrQS .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77ffZrQS .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77ffZrQS .card-img {
  overflow: hidden;
}
.cid-sM77ffZrQS .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77ffZrQS .card-box {
  padding: 0rem;
}
.cid-sM77ffZrQS img {
  transition: all 0.3s;
}
.cid-sM77ffZrQS .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77ffZrQS .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77ffZrQS .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77ffZrQS .card-img {
    width: 30%;
  }
  .cid-sM77ffZrQS .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77ffZrQS .card-img {
    width: 50%;
  }
  .cid-sM77ffZrQS .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77ffZrQS .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77ffZrQS .card-img {
    width: 100%;
  }
  .cid-sM77ffZrQS .card-box {
    width: 100%;
  }
}
.cid-sM77ffZrQS .card-box > p,
.cid-sM77ffZrQS .mbr-section-btn {
  color: #767676;
}
.cid-sM77eyR1IE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77eyR1IE .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77eyR1IE .title,
.cid-sM77eyR1IE .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77eyR1IE .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77eyR1IE .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77eyR1IE .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77eyR1IE .text-box {
  padding: 0rem;
}
.cid-sM77eyR1IE .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77eyR1IE .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77eyR1IE .card-img {
  overflow: hidden;
}
.cid-sM77eyR1IE .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77eyR1IE .card-box {
  padding: 0rem;
}
.cid-sM77eyR1IE img {
  transition: all 0.3s;
}
.cid-sM77eyR1IE .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77eyR1IE .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77eyR1IE .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77eyR1IE .card-img {
    width: 30%;
  }
  .cid-sM77eyR1IE .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77eyR1IE .card-img {
    width: 50%;
  }
  .cid-sM77eyR1IE .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77eyR1IE .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77eyR1IE .card-img {
    width: 100%;
  }
  .cid-sM77eyR1IE .card-box {
    width: 100%;
  }
}
.cid-sM77eyR1IE .card-box > p,
.cid-sM77eyR1IE .mbr-section-btn {
  color: #767676;
}
.cid-sM77byNrsi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77byNrsi .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77byNrsi .title,
.cid-sM77byNrsi .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77byNrsi .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77byNrsi .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77byNrsi .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77byNrsi .text-box {
  padding: 0rem;
}
.cid-sM77byNrsi .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77byNrsi .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77byNrsi .card-img {
  overflow: hidden;
}
.cid-sM77byNrsi .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77byNrsi .card-box {
  padding: 0rem;
}
.cid-sM77byNrsi img {
  transition: all 0.3s;
}
.cid-sM77byNrsi .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77byNrsi .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77byNrsi .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77byNrsi .card-img {
    width: 30%;
  }
  .cid-sM77byNrsi .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77byNrsi .card-img {
    width: 50%;
  }
  .cid-sM77byNrsi .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77byNrsi .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77byNrsi .card-img {
    width: 100%;
  }
  .cid-sM77byNrsi .card-box {
    width: 100%;
  }
}
.cid-sM77byNrsi .card-box > p,
.cid-sM77byNrsi .mbr-section-btn {
  color: #767676;
}
.cid-sM77bdXgmF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77bdXgmF .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77bdXgmF .title,
.cid-sM77bdXgmF .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77bdXgmF .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77bdXgmF .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77bdXgmF .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77bdXgmF .text-box {
  padding: 0rem;
}
.cid-sM77bdXgmF .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77bdXgmF .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77bdXgmF .card-img {
  overflow: hidden;
}
.cid-sM77bdXgmF .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77bdXgmF .card-box {
  padding: 0rem;
}
.cid-sM77bdXgmF img {
  transition: all 0.3s;
}
.cid-sM77bdXgmF .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77bdXgmF .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77bdXgmF .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77bdXgmF .card-img {
    width: 30%;
  }
  .cid-sM77bdXgmF .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77bdXgmF .card-img {
    width: 50%;
  }
  .cid-sM77bdXgmF .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77bdXgmF .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77bdXgmF .card-img {
    width: 100%;
  }
  .cid-sM77bdXgmF .card-box {
    width: 100%;
  }
}
.cid-sM77bdXgmF .card-box > p,
.cid-sM77bdXgmF .mbr-section-btn {
  color: #767676;
}
.cid-sM77anXyEr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77anXyEr .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77anXyEr .title,
.cid-sM77anXyEr .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77anXyEr .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77anXyEr .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77anXyEr .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77anXyEr .text-box {
  padding: 0rem;
}
.cid-sM77anXyEr .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77anXyEr .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77anXyEr .card-img {
  overflow: hidden;
}
.cid-sM77anXyEr .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77anXyEr .card-box {
  padding: 0rem;
}
.cid-sM77anXyEr img {
  transition: all 0.3s;
}
.cid-sM77anXyEr .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77anXyEr .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77anXyEr .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77anXyEr .card-img {
    width: 30%;
  }
  .cid-sM77anXyEr .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77anXyEr .card-img {
    width: 50%;
  }
  .cid-sM77anXyEr .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77anXyEr .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77anXyEr .card-img {
    width: 100%;
  }
  .cid-sM77anXyEr .card-box {
    width: 100%;
  }
}
.cid-sM77anXyEr .card-box > p,
.cid-sM77anXyEr .mbr-section-btn {
  color: #767676;
}
.cid-sM77aLWRne {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM77aLWRne .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM77aLWRne .title,
.cid-sM77aLWRne .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM77aLWRne .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM77aLWRne .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM77aLWRne .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM77aLWRne .text-box {
  padding: 0rem;
}
.cid-sM77aLWRne .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM77aLWRne .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM77aLWRne .card-img {
  overflow: hidden;
}
.cid-sM77aLWRne .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM77aLWRne .card-box {
  padding: 0rem;
}
.cid-sM77aLWRne img {
  transition: all 0.3s;
}
.cid-sM77aLWRne .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM77aLWRne .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM77aLWRne .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM77aLWRne .card-img {
    width: 30%;
  }
  .cid-sM77aLWRne .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM77aLWRne .card-img {
    width: 50%;
  }
  .cid-sM77aLWRne .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM77aLWRne .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM77aLWRne .card-img {
    width: 100%;
  }
  .cid-sM77aLWRne .card-box {
    width: 100%;
  }
}
.cid-sM77aLWRne .card-box > p,
.cid-sM77aLWRne .mbr-section-btn {
  color: #767676;
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ0W1xy26 {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ0W1xy26 .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ0W1xy26 .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ0W1xy26 .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ0W1xy26 img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ0W1xy26 .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ0W1xy26 H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIvHmIO9i {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIvHmIO9i .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIvHmIO9i .title,
.cid-rNIvHmIO9i .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIvHmIO9i .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIvHmIO9i .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIvHmIO9i .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIvHmIO9i .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIvHmIO9i .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIvHmIO9i .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIvHmIO9i .card-img {
  overflow: hidden;
}
.cid-rNIvHmIO9i .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIvHmIO9i .card-box {
  padding: 0rem;
}
.cid-rNIvHmIO9i img {
  transition: all 0.3s;
}
.cid-rNIvHmIO9i .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIvHmIO9i .status {
  color: #767676;
  text-align: left;
}
.cid-rNIvHRSmyf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIvHRSmyf .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIvHRSmyf .title,
.cid-rNIvHRSmyf .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIvHRSmyf .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIvHRSmyf .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIvHRSmyf .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIvHRSmyf .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIvHRSmyf .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIvHRSmyf .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIvHRSmyf .card-img {
  overflow: hidden;
}
.cid-rNIvHRSmyf .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIvHRSmyf .card-box {
  padding: 0rem;
}
.cid-rNIvHRSmyf img {
  transition: all 0.3s;
}
.cid-rNIvHRSmyf .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIvHRSmyf .status {
  color: #767676;
  text-align: left;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ0QATejY {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ0QATejY .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ0QATejY .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ0QATejY .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ0QATejY img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ0QATejY .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ0QATejY H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIwnSFqIc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIwnSFqIc .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIwnSFqIc .title,
.cid-rNIwnSFqIc .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIwnSFqIc .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIwnSFqIc .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIwnSFqIc .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIwnSFqIc .text-box {
  padding: 0rem;
}
.cid-rNIwnSFqIc .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIwnSFqIc .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIwnSFqIc .card-img {
  overflow: hidden;
}
.cid-rNIwnSFqIc .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIwnSFqIc .card-box {
  padding: 0rem;
}
.cid-rNIwnSFqIc img {
  transition: all 0.3s;
}
.cid-rNIwnSFqIc .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIwnSFqIc .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIwnSFqIc .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIwnSFqIc .card-img {
    width: 30%;
  }
  .cid-rNIwnSFqIc .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIwnSFqIc .card-img {
    width: 50%;
  }
  .cid-rNIwnSFqIc .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIwnSFqIc .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIwnSFqIc .card-img {
    width: 100%;
  }
  .cid-rNIwnSFqIc .card-box {
    width: 100%;
  }
}
.cid-rNIwnSFqIc .card-box > p,
.cid-rNIwnSFqIc .mbr-section-btn {
  color: #767676;
}
.cid-rNIwojbatH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIwojbatH .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIwojbatH .title,
.cid-rNIwojbatH .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIwojbatH .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIwojbatH .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIwojbatH .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIwojbatH .text-box {
  padding: 0rem;
}
.cid-rNIwojbatH .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIwojbatH .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIwojbatH .card-img {
  overflow: hidden;
}
.cid-rNIwojbatH .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIwojbatH .card-box {
  padding: 0rem;
}
.cid-rNIwojbatH img {
  transition: all 0.3s;
}
.cid-rNIwojbatH .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIwojbatH .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIwojbatH .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIwojbatH .card-img {
    width: 30%;
  }
  .cid-rNIwojbatH .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIwojbatH .card-img {
    width: 50%;
  }
  .cid-rNIwojbatH .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIwojbatH .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIwojbatH .card-img {
    width: 100%;
  }
  .cid-rNIwojbatH .card-box {
    width: 100%;
  }
}
.cid-rNIwojbatH .card-box > p,
.cid-rNIwojbatH .mbr-section-btn {
  color: #767676;
}
.cid-rNIwpibFyX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIwpibFyX .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIwpibFyX .title,
.cid-rNIwpibFyX .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIwpibFyX .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIwpibFyX .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIwpibFyX .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIwpibFyX .text-box {
  padding: 0rem;
}
.cid-rNIwpibFyX .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIwpibFyX .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIwpibFyX .card-img {
  overflow: hidden;
}
.cid-rNIwpibFyX .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIwpibFyX .card-box {
  padding: 0rem;
}
.cid-rNIwpibFyX img {
  transition: all 0.3s;
}
.cid-rNIwpibFyX .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIwpibFyX .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIwpibFyX .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIwpibFyX .card-img {
    width: 30%;
  }
  .cid-rNIwpibFyX .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIwpibFyX .card-img {
    width: 50%;
  }
  .cid-rNIwpibFyX .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIwpibFyX .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIwpibFyX .card-img {
    width: 100%;
  }
  .cid-rNIwpibFyX .card-box {
    width: 100%;
  }
}
.cid-rNIwpibFyX .card-box > p,
.cid-rNIwpibFyX .mbr-section-btn {
  color: #767676;
}
.cid-rNIwoTtAGC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIwoTtAGC .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIwoTtAGC .title,
.cid-rNIwoTtAGC .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIwoTtAGC .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIwoTtAGC .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIwoTtAGC .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIwoTtAGC .text-box {
  padding: 0rem;
}
.cid-rNIwoTtAGC .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIwoTtAGC .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIwoTtAGC .card-img {
  overflow: hidden;
}
.cid-rNIwoTtAGC .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIwoTtAGC .card-box {
  padding: 0rem;
}
.cid-rNIwoTtAGC img {
  transition: all 0.3s;
}
.cid-rNIwoTtAGC .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIwoTtAGC .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIwoTtAGC .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIwoTtAGC .card-img {
    width: 30%;
  }
  .cid-rNIwoTtAGC .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIwoTtAGC .card-img {
    width: 50%;
  }
  .cid-rNIwoTtAGC .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIwoTtAGC .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIwoTtAGC .card-img {
    width: 100%;
  }
  .cid-rNIwoTtAGC .card-box {
    width: 100%;
  }
}
.cid-rNIwoTtAGC .card-box > p,
.cid-rNIwoTtAGC .mbr-section-btn {
  color: #767676;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ0Me6dnb {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ0Me6dnb .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ0Me6dnb .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ0Me6dnb .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ0Me6dnb img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ0Me6dnb .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ0Me6dnb H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIxmba3uf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxmba3uf .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxmba3uf .title,
.cid-rNIxmba3uf .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxmba3uf .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxmba3uf .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxmba3uf .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxmba3uf .text-box {
  padding: 0rem;
}
.cid-rNIxmba3uf .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxmba3uf .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxmba3uf .card-img {
  overflow: hidden;
}
.cid-rNIxmba3uf .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxmba3uf .card-box {
  padding: 0rem;
}
.cid-rNIxmba3uf img {
  transition: all 0.3s;
}
.cid-rNIxmba3uf .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxmba3uf .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxmba3uf .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxmba3uf .card-img {
    width: 30%;
  }
  .cid-rNIxmba3uf .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxmba3uf .card-img {
    width: 50%;
  }
  .cid-rNIxmba3uf .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxmba3uf .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxmba3uf .card-img {
    width: 100%;
  }
  .cid-rNIxmba3uf .card-box {
    width: 100%;
  }
}
.cid-rNIxmba3uf .card-box > p,
.cid-rNIxmba3uf .mbr-section-btn {
  color: #767676;
}
.cid-rNIxnnFv0p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxnnFv0p .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxnnFv0p .title,
.cid-rNIxnnFv0p .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxnnFv0p .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxnnFv0p .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxnnFv0p .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxnnFv0p .text-box {
  padding: 0rem;
}
.cid-rNIxnnFv0p .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxnnFv0p .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxnnFv0p .card-img {
  overflow: hidden;
}
.cid-rNIxnnFv0p .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxnnFv0p .card-box {
  padding: 0rem;
}
.cid-rNIxnnFv0p img {
  transition: all 0.3s;
}
.cid-rNIxnnFv0p .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxnnFv0p .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxnnFv0p .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxnnFv0p .card-img {
    width: 30%;
  }
  .cid-rNIxnnFv0p .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxnnFv0p .card-img {
    width: 50%;
  }
  .cid-rNIxnnFv0p .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxnnFv0p .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxnnFv0p .card-img {
    width: 100%;
  }
  .cid-rNIxnnFv0p .card-box {
    width: 100%;
  }
}
.cid-rNIxnnFv0p .card-box > p,
.cid-rNIxnnFv0p .mbr-section-btn {
  color: #767676;
}
.cid-rNIxo4Ao8v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxo4Ao8v .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxo4Ao8v .title,
.cid-rNIxo4Ao8v .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxo4Ao8v .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxo4Ao8v .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxo4Ao8v .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxo4Ao8v .text-box {
  padding: 0rem;
}
.cid-rNIxo4Ao8v .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxo4Ao8v .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxo4Ao8v .card-img {
  overflow: hidden;
}
.cid-rNIxo4Ao8v .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxo4Ao8v .card-box {
  padding: 0rem;
}
.cid-rNIxo4Ao8v img {
  transition: all 0.3s;
}
.cid-rNIxo4Ao8v .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxo4Ao8v .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxo4Ao8v .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxo4Ao8v .card-img {
    width: 30%;
  }
  .cid-rNIxo4Ao8v .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxo4Ao8v .card-img {
    width: 50%;
  }
  .cid-rNIxo4Ao8v .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxo4Ao8v .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxo4Ao8v .card-img {
    width: 100%;
  }
  .cid-rNIxo4Ao8v .card-box {
    width: 100%;
  }
}
.cid-rNIxo4Ao8v .card-box > p,
.cid-rNIxo4Ao8v .mbr-section-btn {
  color: #767676;
}
.cid-rNIxoxxKfP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxoxxKfP .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxoxxKfP .title,
.cid-rNIxoxxKfP .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxoxxKfP .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxoxxKfP .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxoxxKfP .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxoxxKfP .text-box {
  padding: 0rem;
}
.cid-rNIxoxxKfP .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxoxxKfP .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxoxxKfP .card-img {
  overflow: hidden;
}
.cid-rNIxoxxKfP .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxoxxKfP .card-box {
  padding: 0rem;
}
.cid-rNIxoxxKfP img {
  transition: all 0.3s;
}
.cid-rNIxoxxKfP .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxoxxKfP .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxoxxKfP .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxoxxKfP .card-img {
    width: 30%;
  }
  .cid-rNIxoxxKfP .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxoxxKfP .card-img {
    width: 50%;
  }
  .cid-rNIxoxxKfP .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxoxxKfP .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxoxxKfP .card-img {
    width: 100%;
  }
  .cid-rNIxoxxKfP .card-box {
    width: 100%;
  }
}
.cid-rNIxoxxKfP .card-box > p,
.cid-rNIxoxxKfP .mbr-section-btn {
  color: #767676;
}
.cid-rNIxpd90HD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxpd90HD .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxpd90HD .title,
.cid-rNIxpd90HD .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxpd90HD .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxpd90HD .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxpd90HD .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxpd90HD .text-box {
  padding: 0rem;
}
.cid-rNIxpd90HD .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxpd90HD .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxpd90HD .card-img {
  overflow: hidden;
}
.cid-rNIxpd90HD .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxpd90HD .card-box {
  padding: 0rem;
}
.cid-rNIxpd90HD img {
  transition: all 0.3s;
}
.cid-rNIxpd90HD .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxpd90HD .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxpd90HD .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxpd90HD .card-img {
    width: 30%;
  }
  .cid-rNIxpd90HD .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxpd90HD .card-img {
    width: 50%;
  }
  .cid-rNIxpd90HD .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxpd90HD .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxpd90HD .card-img {
    width: 100%;
  }
  .cid-rNIxpd90HD .card-box {
    width: 100%;
  }
}
.cid-rNIxpd90HD .card-box > p,
.cid-rNIxpd90HD .mbr-section-btn {
  color: #767676;
}
.cid-rNIxpDLmpJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxpDLmpJ .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxpDLmpJ .title,
.cid-rNIxpDLmpJ .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxpDLmpJ .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxpDLmpJ .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxpDLmpJ .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxpDLmpJ .text-box {
  padding: 0rem;
}
.cid-rNIxpDLmpJ .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxpDLmpJ .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxpDLmpJ .card-img {
  overflow: hidden;
}
.cid-rNIxpDLmpJ .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxpDLmpJ .card-box {
  padding: 0rem;
}
.cid-rNIxpDLmpJ img {
  transition: all 0.3s;
}
.cid-rNIxpDLmpJ .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxpDLmpJ .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxpDLmpJ .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxpDLmpJ .card-img {
    width: 30%;
  }
  .cid-rNIxpDLmpJ .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxpDLmpJ .card-img {
    width: 50%;
  }
  .cid-rNIxpDLmpJ .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxpDLmpJ .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxpDLmpJ .card-img {
    width: 100%;
  }
  .cid-rNIxpDLmpJ .card-box {
    width: 100%;
  }
}
.cid-rNIxpDLmpJ .card-box > p,
.cid-rNIxpDLmpJ .mbr-section-btn {
  color: #767676;
}
.cid-rNIxq4MQ0s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxq4MQ0s .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxq4MQ0s .title,
.cid-rNIxq4MQ0s .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxq4MQ0s .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxq4MQ0s .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxq4MQ0s .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxq4MQ0s .text-box {
  padding: 0rem;
}
.cid-rNIxq4MQ0s .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxq4MQ0s .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxq4MQ0s .card-img {
  overflow: hidden;
}
.cid-rNIxq4MQ0s .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxq4MQ0s .card-box {
  padding: 0rem;
}
.cid-rNIxq4MQ0s img {
  transition: all 0.3s;
}
.cid-rNIxq4MQ0s .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxq4MQ0s .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxq4MQ0s .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxq4MQ0s .card-img {
    width: 30%;
  }
  .cid-rNIxq4MQ0s .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxq4MQ0s .card-img {
    width: 50%;
  }
  .cid-rNIxq4MQ0s .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxq4MQ0s .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxq4MQ0s .card-img {
    width: 100%;
  }
  .cid-rNIxq4MQ0s .card-box {
    width: 100%;
  }
}
.cid-rNIxq4MQ0s .card-box > p,
.cid-rNIxq4MQ0s .mbr-section-btn {
  color: #767676;
}
.cid-rNIxqvVKM4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxqvVKM4 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxqvVKM4 .title,
.cid-rNIxqvVKM4 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxqvVKM4 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxqvVKM4 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxqvVKM4 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxqvVKM4 .text-box {
  padding: 0rem;
}
.cid-rNIxqvVKM4 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxqvVKM4 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxqvVKM4 .card-img {
  overflow: hidden;
}
.cid-rNIxqvVKM4 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxqvVKM4 .card-box {
  padding: 0rem;
}
.cid-rNIxqvVKM4 img {
  transition: all 0.3s;
}
.cid-rNIxqvVKM4 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxqvVKM4 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxqvVKM4 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxqvVKM4 .card-img {
    width: 30%;
  }
  .cid-rNIxqvVKM4 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxqvVKM4 .card-img {
    width: 50%;
  }
  .cid-rNIxqvVKM4 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxqvVKM4 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxqvVKM4 .card-img {
    width: 100%;
  }
  .cid-rNIxqvVKM4 .card-box {
    width: 100%;
  }
}
.cid-rNIxqvVKM4 .card-box > p,
.cid-rNIxqvVKM4 .mbr-section-btn {
  color: #767676;
}
.cid-rNIxqXoSDM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxqXoSDM .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxqXoSDM .title,
.cid-rNIxqXoSDM .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxqXoSDM .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxqXoSDM .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxqXoSDM .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxqXoSDM .text-box {
  padding: 0rem;
}
.cid-rNIxqXoSDM .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxqXoSDM .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxqXoSDM .card-img {
  overflow: hidden;
}
.cid-rNIxqXoSDM .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxqXoSDM .card-box {
  padding: 0rem;
}
.cid-rNIxqXoSDM img {
  transition: all 0.3s;
}
.cid-rNIxqXoSDM .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxqXoSDM .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxqXoSDM .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxqXoSDM .card-img {
    width: 30%;
  }
  .cid-rNIxqXoSDM .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxqXoSDM .card-img {
    width: 50%;
  }
  .cid-rNIxqXoSDM .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxqXoSDM .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxqXoSDM .card-img {
    width: 100%;
  }
  .cid-rNIxqXoSDM .card-box {
    width: 100%;
  }
}
.cid-rNIxqXoSDM .card-box > p,
.cid-rNIxqXoSDM .mbr-section-btn {
  color: #767676;
}
.cid-rSGbaGY3RB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSGbaGY3RB .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rSGbaGY3RB .title,
.cid-rSGbaGY3RB .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rSGbaGY3RB .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rSGbaGY3RB .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rSGbaGY3RB .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rSGbaGY3RB .text-box {
  padding: 0rem;
}
.cid-rSGbaGY3RB .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rSGbaGY3RB .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rSGbaGY3RB .card-img {
  overflow: hidden;
}
.cid-rSGbaGY3RB .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rSGbaGY3RB .card-box {
  padding: 0rem;
}
.cid-rSGbaGY3RB img {
  transition: all 0.3s;
}
.cid-rSGbaGY3RB .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rSGbaGY3RB .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rSGbaGY3RB .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rSGbaGY3RB .card-img {
    width: 30%;
  }
  .cid-rSGbaGY3RB .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rSGbaGY3RB .card-img {
    width: 50%;
  }
  .cid-rSGbaGY3RB .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rSGbaGY3RB .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rSGbaGY3RB .card-img {
    width: 100%;
  }
  .cid-rSGbaGY3RB .card-box {
    width: 100%;
  }
}
.cid-rSGbaGY3RB .card-box > p,
.cid-rSGbaGY3RB .mbr-section-btn {
  color: #767676;
}
.cid-rNIxrprMho {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxrprMho .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxrprMho .title,
.cid-rNIxrprMho .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxrprMho .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxrprMho .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxrprMho .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxrprMho .text-box {
  padding: 0rem;
}
.cid-rNIxrprMho .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxrprMho .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxrprMho .card-img {
  overflow: hidden;
}
.cid-rNIxrprMho .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxrprMho .card-box {
  padding: 0rem;
}
.cid-rNIxrprMho img {
  transition: all 0.3s;
}
.cid-rNIxrprMho .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxrprMho .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxrprMho .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxrprMho .card-img {
    width: 30%;
  }
  .cid-rNIxrprMho .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxrprMho .card-img {
    width: 50%;
  }
  .cid-rNIxrprMho .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxrprMho .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxrprMho .card-img {
    width: 100%;
  }
  .cid-rNIxrprMho .card-box {
    width: 100%;
  }
}
.cid-rNIxrprMho .card-box > p,
.cid-rNIxrprMho .mbr-section-btn {
  color: #767676;
}
.cid-rNIxmDoVTR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxmDoVTR .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxmDoVTR .title,
.cid-rNIxmDoVTR .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxmDoVTR .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxmDoVTR .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxmDoVTR .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxmDoVTR .text-box {
  padding: 0rem;
}
.cid-rNIxmDoVTR .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxmDoVTR .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxmDoVTR .card-img {
  overflow: hidden;
}
.cid-rNIxmDoVTR .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxmDoVTR .card-box {
  padding: 0rem;
}
.cid-rNIxmDoVTR img {
  transition: all 0.3s;
}
.cid-rNIxmDoVTR .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxmDoVTR .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxmDoVTR .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxmDoVTR .card-img {
    width: 30%;
  }
  .cid-rNIxmDoVTR .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxmDoVTR .card-img {
    width: 50%;
  }
  .cid-rNIxmDoVTR .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxmDoVTR .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxmDoVTR .card-img {
    width: 100%;
  }
  .cid-rNIxmDoVTR .card-box {
    width: 100%;
  }
}
.cid-rNIxmDoVTR .card-box > p,
.cid-rNIxmDoVTR .mbr-section-btn {
  color: #767676;
}
.cid-rNIxT308gV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIxT308gV .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIxT308gV .title,
.cid-rNIxT308gV .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIxT308gV .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIxT308gV .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIxT308gV .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIxT308gV .text-box {
  padding: 0rem;
}
.cid-rNIxT308gV .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIxT308gV .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIxT308gV .card-img {
  overflow: hidden;
}
.cid-rNIxT308gV .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIxT308gV .card-box {
  padding: 0rem;
}
.cid-rNIxT308gV img {
  transition: all 0.3s;
}
.cid-rNIxT308gV .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIxT308gV .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIxT308gV .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIxT308gV .card-img {
    width: 30%;
  }
  .cid-rNIxT308gV .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIxT308gV .card-img {
    width: 50%;
  }
  .cid-rNIxT308gV .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIxT308gV .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIxT308gV .card-img {
    width: 100%;
  }
  .cid-rNIxT308gV .card-box {
    width: 100%;
  }
}
.cid-rNIxT308gV .card-box > p,
.cid-rNIxT308gV .mbr-section-btn {
  color: #767676;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ0DvNZfr {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ0DvNZfr .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ0DvNZfr .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ0DvNZfr .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ0DvNZfr img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ0DvNZfr .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ0DvNZfr H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIA5aeKd2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIA5aeKd2 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIA5aeKd2 .title,
.cid-rNIA5aeKd2 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIA5aeKd2 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIA5aeKd2 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIA5aeKd2 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIA5aeKd2 .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIA5aeKd2 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIA5aeKd2 .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIA5aeKd2 .card-img {
  overflow: hidden;
}
.cid-rNIA5aeKd2 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIA5aeKd2 .card-box {
  padding: 0rem;
}
.cid-rNIA5aeKd2 img {
  transition: all 0.3s;
}
.cid-rNIA5aeKd2 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIA5aeKd2 .status {
  color: #767676;
  text-align: left;
}
.cid-rNIAclxsOj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rNIAclxsOj .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIAclxsOj .title,
.cid-rNIAclxsOj .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIAclxsOj .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIAclxsOj .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIAclxsOj .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIAclxsOj .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIAclxsOj .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIAclxsOj .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIAclxsOj .card-img {
  overflow: hidden;
}
.cid-rNIAclxsOj .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIAclxsOj .card-box {
  padding: 0rem;
}
.cid-rNIAclxsOj img {
  transition: all 0.3s;
}
.cid-rNIAclxsOj .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIAclxsOj .status {
  color: #767676;
  text-align: left;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ0x3KkLL {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ0x3KkLL .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ0x3KkLL .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ0x3KkLL .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ0x3KkLL img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ0x3KkLL .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ0x3KkLL H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIARsqI3L {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIARsqI3L .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIARsqI3L .title,
.cid-rNIARsqI3L .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIARsqI3L .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIARsqI3L .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIARsqI3L .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIARsqI3L .text-box {
  padding: 0rem;
}
.cid-rNIARsqI3L .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIARsqI3L .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIARsqI3L .card-img {
  overflow: hidden;
}
.cid-rNIARsqI3L .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIARsqI3L .card-box {
  padding: 0rem;
}
.cid-rNIARsqI3L img {
  transition: all 0.3s;
}
.cid-rNIARsqI3L .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIARsqI3L .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIARsqI3L .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIARsqI3L .card-img {
    width: 30%;
  }
  .cid-rNIARsqI3L .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIARsqI3L .card-img {
    width: 50%;
  }
  .cid-rNIARsqI3L .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIARsqI3L .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIARsqI3L .card-img {
    width: 100%;
  }
  .cid-rNIARsqI3L .card-box {
    width: 100%;
  }
}
.cid-rNIARsqI3L .card-box > p,
.cid-rNIARsqI3L .mbr-section-btn {
  color: #767676;
}
.cid-rNIARTMdg9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIARTMdg9 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIARTMdg9 .title,
.cid-rNIARTMdg9 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIARTMdg9 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIARTMdg9 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIARTMdg9 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIARTMdg9 .text-box {
  padding: 0rem;
}
.cid-rNIARTMdg9 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIARTMdg9 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIARTMdg9 .card-img {
  overflow: hidden;
}
.cid-rNIARTMdg9 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIARTMdg9 .card-box {
  padding: 0rem;
}
.cid-rNIARTMdg9 img {
  transition: all 0.3s;
}
.cid-rNIARTMdg9 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIARTMdg9 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIARTMdg9 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIARTMdg9 .card-img {
    width: 30%;
  }
  .cid-rNIARTMdg9 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIARTMdg9 .card-img {
    width: 50%;
  }
  .cid-rNIARTMdg9 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIARTMdg9 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIARTMdg9 .card-img {
    width: 100%;
  }
  .cid-rNIARTMdg9 .card-box {
    width: 100%;
  }
}
.cid-rNIARTMdg9 .card-box > p,
.cid-rNIARTMdg9 .mbr-section-btn {
  color: #767676;
}
.cid-rNIAST1nki {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIAST1nki .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIAST1nki .title,
.cid-rNIAST1nki .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIAST1nki .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIAST1nki .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIAST1nki .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIAST1nki .text-box {
  padding: 0rem;
}
.cid-rNIAST1nki .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIAST1nki .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIAST1nki .card-img {
  overflow: hidden;
}
.cid-rNIAST1nki .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIAST1nki .card-box {
  padding: 0rem;
}
.cid-rNIAST1nki img {
  transition: all 0.3s;
}
.cid-rNIAST1nki .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIAST1nki .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIAST1nki .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIAST1nki .card-img {
    width: 30%;
  }
  .cid-rNIAST1nki .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIAST1nki .card-img {
    width: 50%;
  }
  .cid-rNIAST1nki .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIAST1nki .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIAST1nki .card-img {
    width: 100%;
  }
  .cid-rNIAST1nki .card-box {
    width: 100%;
  }
}
.cid-rNIAST1nki .card-box > p,
.cid-rNIAST1nki .mbr-section-btn {
  color: #767676;
}
.cid-rNIATkcKw1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIATkcKw1 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIATkcKw1 .title,
.cid-rNIATkcKw1 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIATkcKw1 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIATkcKw1 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIATkcKw1 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIATkcKw1 .text-box {
  padding: 0rem;
}
.cid-rNIATkcKw1 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIATkcKw1 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIATkcKw1 .card-img {
  overflow: hidden;
}
.cid-rNIATkcKw1 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIATkcKw1 .card-box {
  padding: 0rem;
}
.cid-rNIATkcKw1 img {
  transition: all 0.3s;
}
.cid-rNIATkcKw1 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIATkcKw1 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIATkcKw1 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIATkcKw1 .card-img {
    width: 30%;
  }
  .cid-rNIATkcKw1 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIATkcKw1 .card-img {
    width: 50%;
  }
  .cid-rNIATkcKw1 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIATkcKw1 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIATkcKw1 .card-img {
    width: 100%;
  }
  .cid-rNIATkcKw1 .card-box {
    width: 100%;
  }
}
.cid-rNIATkcKw1 .card-box > p,
.cid-rNIATkcKw1 .mbr-section-btn {
  color: #767676;
}
.cid-rNIATJlat3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIATJlat3 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIATJlat3 .title,
.cid-rNIATJlat3 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIATJlat3 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIATJlat3 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIATJlat3 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIATJlat3 .text-box {
  padding: 0rem;
}
.cid-rNIATJlat3 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIATJlat3 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIATJlat3 .card-img {
  overflow: hidden;
}
.cid-rNIATJlat3 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIATJlat3 .card-box {
  padding: 0rem;
}
.cid-rNIATJlat3 img {
  transition: all 0.3s;
}
.cid-rNIATJlat3 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIATJlat3 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIATJlat3 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIATJlat3 .card-img {
    width: 30%;
  }
  .cid-rNIATJlat3 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIATJlat3 .card-img {
    width: 50%;
  }
  .cid-rNIATJlat3 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIATJlat3 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIATJlat3 .card-img {
    width: 100%;
  }
  .cid-rNIATJlat3 .card-box {
    width: 100%;
  }
}
.cid-rNIATJlat3 .card-box > p,
.cid-rNIATJlat3 .mbr-section-btn {
  color: #767676;
}
.cid-rNIASuLBaT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIASuLBaT .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIASuLBaT .title,
.cid-rNIASuLBaT .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIASuLBaT .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIASuLBaT .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIASuLBaT .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIASuLBaT .text-box {
  padding: 0rem;
}
.cid-rNIASuLBaT .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIASuLBaT .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIASuLBaT .card-img {
  overflow: hidden;
}
.cid-rNIASuLBaT .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIASuLBaT .card-box {
  padding: 0rem;
}
.cid-rNIASuLBaT img {
  transition: all 0.3s;
}
.cid-rNIASuLBaT .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIASuLBaT .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIASuLBaT .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIASuLBaT .card-img {
    width: 30%;
  }
  .cid-rNIASuLBaT .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIASuLBaT .card-img {
    width: 50%;
  }
  .cid-rNIASuLBaT .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIASuLBaT .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIASuLBaT .card-img {
    width: 100%;
  }
  .cid-rNIASuLBaT .card-box {
    width: 100%;
  }
}
.cid-rNIASuLBaT .card-box > p,
.cid-rNIASuLBaT .mbr-section-btn {
  color: #767676;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNIZh2E4Zk {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNIZh2E4Zk .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNIZh2E4Zk .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNIZh2E4Zk .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNIZh2E4Zk img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNIZh2E4Zk .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNIZh2E4Zk H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIC1ovrRw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIC1ovrRw .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIC1ovrRw .title,
.cid-rNIC1ovrRw .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIC1ovrRw .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIC1ovrRw .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIC1ovrRw .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIC1ovrRw .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIC1ovrRw .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIC1ovrRw .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIC1ovrRw .card-img {
  overflow: hidden;
}
.cid-rNIC1ovrRw .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIC1ovrRw .card-box {
  padding: 0rem;
}
.cid-rNIC1ovrRw img {
  transition: all 0.3s;
}
.cid-rNIC1ovrRw .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIC1ovrRw .status {
  color: #767676;
  text-align: left;
}
.cid-rNIC9MXmn4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIC9MXmn4 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIC9MXmn4 .title,
.cid-rNIC9MXmn4 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIC9MXmn4 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-rNIC9MXmn4 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIC9MXmn4 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIC9MXmn4 .text-box {
  padding: 1.5rem 2rem;
  padding-bottom: 0;
}
.cid-rNIC9MXmn4 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIC9MXmn4 .card-title {
  color: #149dcc;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIC9MXmn4 .card-img {
  overflow: hidden;
}
.cid-rNIC9MXmn4 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIC9MXmn4 .card-box {
  padding: 0rem;
}
.cid-rNIC9MXmn4 img {
  transition: all 0.3s;
}
.cid-rNIC9MXmn4 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIC9MXmn4 .status {
  color: #767676;
  text-align: left;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ1ycetZx {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ1ycetZx .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ1ycetZx .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ1ycetZx .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ1ycetZx img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ1ycetZx .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ1ycetZx H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNObSWnInY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rNObSWnInY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rNObSWnInY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rNObSWnInY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rNObSWnInY .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rNObSWnInY .container {
  padding: 0;
}
.cid-rNObSWnInY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rNObSWnInY .icon-focus {
  display: none;
}
.cid-rNObSWnInY .btn[class*=-outline] {
  border: none!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  color: #808080 !important;
  font-weight: 400;
  box-shadow: none !important;
}
.cid-rNObSWnInY .btn[class*=-outline]:hover,
.cid-rNObSWnInY .btn[class*=-outline]:active {
  background: transparent!important;
}
.cid-rNObSWnInY li:hover .btn-primary-outline,
.cid-rNObSWnInY li:active .btn-primary-outline,
.cid-rNObSWnInY li.active .btn-primary-outline {
  color: #f93908 !important;
}
.cid-rNObSWnInY li:hover .btn-secondary-outline,
.cid-rNObSWnInY li:active .btn-secondary-outline,
.cid-rNObSWnInY li.active .btn-secondary-outline {
  color: #f93908 !important;
}
.cid-rNObSWnInY li:hover .btn-info-outline,
.cid-rNObSWnInY li:active .btn-info-outline,
.cid-rNObSWnInY li.active .btn-info-outline {
  color: #ff3300 !important;
}
.cid-rNObSWnInY li:hover .btn-warning-outline,
.cid-rNObSWnInY li:active .btn-warning-outline,
.cid-rNObSWnInY li.active .btn-warning-outline {
  color: #1dadea !important;
}
.cid-rNObSWnInY li:hover .btn-white-outline,
.cid-rNObSWnInY li:active .btn-white-outline,
.cid-rNObSWnInY li.active .btn-white-outline {
  color: #ffffff !important;
}
.cid-rNObSWnInY li:hover .btn-black-outline,
.cid-rNObSWnInY li:active .btn-black-outline,
.cid-rNObSWnInY li.active .btn-black-outline {
  color: #000000 !important;
}
.cid-rNObSWnInY li:hover .btn-success-outline,
.cid-rNObSWnInY li:active .btn-success-outline,
.cid-rNObSWnInY li.active .btn-success-outline {
  color: #ffcc00 !important;
}
.cid-rNObSWnInY li:hover .btn-danger-outline,
.cid-rNObSWnInY li:active .btn-danger-outline,
.cid-rNObSWnInY li.active .btn-danger-outline {
  color: #666666 !important;
}
.cid-rNObSWnInY li {
  position: relative;
}
.cid-rNObSWnInY li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 6px;
  top: 50%;
  background: #d3d3d3 !important;
  transform: rotate(35deg) translateY(-59%);
}
.cid-rNObSWnInY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rNObSWnInY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rNObSWnInY .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-rNObSWnInY .btn {
  font-family: Poppins !important;
}
.cid-rNObSWnInY .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-rNObSWnInY .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-rNObSWnInY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-rNObSWnInY .btn[class*="-outline"] {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNJ17LxNWi {
  padding-top: 135px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/1-2000x1333.jpg");
  background-position: right;
}
.cid-rNJ17LxNWi .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-rNJ17LxNWi .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-rNJ17LxNWi .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-rNJ17LxNWi img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-rNJ17LxNWi .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-rNJ17LxNWi H1 {
  text-align: right;
  color: #ffffff;
}
.cid-rNIrjGDvA5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrjGDvA5 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrjGDvA5 .title,
.cid-rNIrjGDvA5 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrjGDvA5 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrjGDvA5 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrjGDvA5 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrjGDvA5 .text-box {
  padding: 0rem;
}
.cid-rNIrjGDvA5 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrjGDvA5 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrjGDvA5 .card-img {
  overflow: hidden;
}
.cid-rNIrjGDvA5 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrjGDvA5 .card-box {
  padding: 0rem;
}
.cid-rNIrjGDvA5 img {
  transition: all 0.3s;
}
.cid-rNIrjGDvA5 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrjGDvA5 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrjGDvA5 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrjGDvA5 .card-img {
    width: 30%;
  }
  .cid-rNIrjGDvA5 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrjGDvA5 .card-img {
    width: 50%;
  }
  .cid-rNIrjGDvA5 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrjGDvA5 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrjGDvA5 .card-img {
    width: 100%;
  }
  .cid-rNIrjGDvA5 .card-box {
    width: 100%;
  }
}
.cid-rNIrjGDvA5 .card-box > p,
.cid-rNIrjGDvA5 .mbr-section-btn {
  color: #767676;
}
.cid-rNIrq6PJqo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrq6PJqo .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrq6PJqo .title,
.cid-rNIrq6PJqo .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrq6PJqo .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrq6PJqo .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrq6PJqo .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrq6PJqo .text-box {
  padding: 0rem;
}
.cid-rNIrq6PJqo .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrq6PJqo .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrq6PJqo .card-img {
  overflow: hidden;
}
.cid-rNIrq6PJqo .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrq6PJqo .card-box {
  padding: 0rem;
}
.cid-rNIrq6PJqo img {
  transition: all 0.3s;
}
.cid-rNIrq6PJqo .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrq6PJqo .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrq6PJqo .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrq6PJqo .card-img {
    width: 30%;
  }
  .cid-rNIrq6PJqo .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrq6PJqo .card-img {
    width: 50%;
  }
  .cid-rNIrq6PJqo .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrq6PJqo .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrq6PJqo .card-img {
    width: 100%;
  }
  .cid-rNIrq6PJqo .card-box {
    width: 100%;
  }
}
.cid-rNIrq6PJqo .card-box > p,
.cid-rNIrq6PJqo .mbr-section-btn {
  color: #767676;
}
.cid-rNIrqEkXc9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrqEkXc9 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrqEkXc9 .title,
.cid-rNIrqEkXc9 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrqEkXc9 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrqEkXc9 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrqEkXc9 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrqEkXc9 .text-box {
  padding: 0rem;
}
.cid-rNIrqEkXc9 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrqEkXc9 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrqEkXc9 .card-img {
  overflow: hidden;
}
.cid-rNIrqEkXc9 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrqEkXc9 .card-box {
  padding: 0rem;
}
.cid-rNIrqEkXc9 img {
  transition: all 0.3s;
}
.cid-rNIrqEkXc9 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrqEkXc9 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrqEkXc9 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrqEkXc9 .card-img {
    width: 30%;
  }
  .cid-rNIrqEkXc9 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrqEkXc9 .card-img {
    width: 50%;
  }
  .cid-rNIrqEkXc9 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrqEkXc9 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrqEkXc9 .card-img {
    width: 100%;
  }
  .cid-rNIrqEkXc9 .card-box {
    width: 100%;
  }
}
.cid-rNIrqEkXc9 .card-box > p,
.cid-rNIrqEkXc9 .mbr-section-btn {
  color: #767676;
}
.cid-rNIrr5hqho {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrr5hqho .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrr5hqho .title,
.cid-rNIrr5hqho .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrr5hqho .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrr5hqho .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrr5hqho .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrr5hqho .text-box {
  padding: 0rem;
}
.cid-rNIrr5hqho .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrr5hqho .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrr5hqho .card-img {
  overflow: hidden;
}
.cid-rNIrr5hqho .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrr5hqho .card-box {
  padding: 0rem;
}
.cid-rNIrr5hqho img {
  transition: all 0.3s;
}
.cid-rNIrr5hqho .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrr5hqho .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrr5hqho .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrr5hqho .card-img {
    width: 30%;
  }
  .cid-rNIrr5hqho .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrr5hqho .card-img {
    width: 50%;
  }
  .cid-rNIrr5hqho .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrr5hqho .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrr5hqho .card-img {
    width: 100%;
  }
  .cid-rNIrr5hqho .card-box {
    width: 100%;
  }
}
.cid-rNIrr5hqho .card-box > p,
.cid-rNIrr5hqho .mbr-section-btn {
  color: #767676;
}
.cid-rNIrrw7kwT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrrw7kwT .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrrw7kwT .title,
.cid-rNIrrw7kwT .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrrw7kwT .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrrw7kwT .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrrw7kwT .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrrw7kwT .text-box {
  padding: 0rem;
}
.cid-rNIrrw7kwT .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrrw7kwT .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrrw7kwT .card-img {
  overflow: hidden;
}
.cid-rNIrrw7kwT .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrrw7kwT .card-box {
  padding: 0rem;
}
.cid-rNIrrw7kwT img {
  transition: all 0.3s;
}
.cid-rNIrrw7kwT .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrrw7kwT .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrrw7kwT .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrrw7kwT .card-img {
    width: 30%;
  }
  .cid-rNIrrw7kwT .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrrw7kwT .card-img {
    width: 50%;
  }
  .cid-rNIrrw7kwT .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrrw7kwT .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrrw7kwT .card-img {
    width: 100%;
  }
  .cid-rNIrrw7kwT .card-box {
    width: 100%;
  }
}
.cid-rNIrrw7kwT .card-box > p,
.cid-rNIrrw7kwT .mbr-section-btn {
  color: #767676;
}
.cid-rNIrrXY27W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrrXY27W .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrrXY27W .title,
.cid-rNIrrXY27W .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrrXY27W .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrrXY27W .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrrXY27W .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrrXY27W .text-box {
  padding: 0rem;
}
.cid-rNIrrXY27W .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrrXY27W .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrrXY27W .card-img {
  overflow: hidden;
}
.cid-rNIrrXY27W .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrrXY27W .card-box {
  padding: 0rem;
}
.cid-rNIrrXY27W img {
  transition: all 0.3s;
}
.cid-rNIrrXY27W .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrrXY27W .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrrXY27W .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrrXY27W .card-img {
    width: 30%;
  }
  .cid-rNIrrXY27W .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrrXY27W .card-img {
    width: 50%;
  }
  .cid-rNIrrXY27W .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrrXY27W .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrrXY27W .card-img {
    width: 100%;
  }
  .cid-rNIrrXY27W .card-box {
    width: 100%;
  }
}
.cid-rNIrrXY27W .card-box > p,
.cid-rNIrrXY27W .mbr-section-btn {
  color: #767676;
}
.cid-rNIrspLaPf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrspLaPf .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrspLaPf .title,
.cid-rNIrspLaPf .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrspLaPf .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrspLaPf .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrspLaPf .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrspLaPf .text-box {
  padding: 0rem;
}
.cid-rNIrspLaPf .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrspLaPf .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrspLaPf .card-img {
  overflow: hidden;
}
.cid-rNIrspLaPf .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrspLaPf .card-box {
  padding: 0rem;
}
.cid-rNIrspLaPf img {
  transition: all 0.3s;
}
.cid-rNIrspLaPf .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrspLaPf .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrspLaPf .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrspLaPf .card-img {
    width: 30%;
  }
  .cid-rNIrspLaPf .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrspLaPf .card-img {
    width: 50%;
  }
  .cid-rNIrspLaPf .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrspLaPf .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrspLaPf .card-img {
    width: 100%;
  }
  .cid-rNIrspLaPf .card-box {
    width: 100%;
  }
}
.cid-rNIrspLaPf .card-box > p,
.cid-rNIrspLaPf .mbr-section-btn {
  color: #767676;
}
.cid-rNIrsRDvQx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrsRDvQx .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrsRDvQx .title,
.cid-rNIrsRDvQx .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrsRDvQx .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrsRDvQx .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrsRDvQx .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrsRDvQx .text-box {
  padding: 0rem;
}
.cid-rNIrsRDvQx .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrsRDvQx .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrsRDvQx .card-img {
  overflow: hidden;
}
.cid-rNIrsRDvQx .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrsRDvQx .card-box {
  padding: 0rem;
}
.cid-rNIrsRDvQx img {
  transition: all 0.3s;
}
.cid-rNIrsRDvQx .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrsRDvQx .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrsRDvQx .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrsRDvQx .card-img {
    width: 30%;
  }
  .cid-rNIrsRDvQx .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrsRDvQx .card-img {
    width: 50%;
  }
  .cid-rNIrsRDvQx .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrsRDvQx .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrsRDvQx .card-img {
    width: 100%;
  }
  .cid-rNIrsRDvQx .card-box {
    width: 100%;
  }
}
.cid-rNIrsRDvQx .card-box > p,
.cid-rNIrsRDvQx .mbr-section-btn {
  color: #767676;
}
.cid-rNIrtjwS4S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrtjwS4S .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrtjwS4S .title,
.cid-rNIrtjwS4S .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrtjwS4S .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrtjwS4S .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrtjwS4S .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrtjwS4S .text-box {
  padding: 0rem;
}
.cid-rNIrtjwS4S .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrtjwS4S .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrtjwS4S .card-img {
  overflow: hidden;
}
.cid-rNIrtjwS4S .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrtjwS4S .card-box {
  padding: 0rem;
}
.cid-rNIrtjwS4S img {
  transition: all 0.3s;
}
.cid-rNIrtjwS4S .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrtjwS4S .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrtjwS4S .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrtjwS4S .card-img {
    width: 30%;
  }
  .cid-rNIrtjwS4S .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrtjwS4S .card-img {
    width: 50%;
  }
  .cid-rNIrtjwS4S .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrtjwS4S .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrtjwS4S .card-img {
    width: 100%;
  }
  .cid-rNIrtjwS4S .card-box {
    width: 100%;
  }
}
.cid-rNIrtjwS4S .card-box > p,
.cid-rNIrtjwS4S .mbr-section-btn {
  color: #767676;
}
.cid-rNIrtTKHoi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrtTKHoi .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrtTKHoi .title,
.cid-rNIrtTKHoi .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrtTKHoi .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrtTKHoi .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrtTKHoi .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrtTKHoi .text-box {
  padding: 0rem;
}
.cid-rNIrtTKHoi .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrtTKHoi .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrtTKHoi .card-img {
  overflow: hidden;
}
.cid-rNIrtTKHoi .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrtTKHoi .card-box {
  padding: 0rem;
}
.cid-rNIrtTKHoi img {
  transition: all 0.3s;
}
.cid-rNIrtTKHoi .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrtTKHoi .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrtTKHoi .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrtTKHoi .card-img {
    width: 30%;
  }
  .cid-rNIrtTKHoi .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrtTKHoi .card-img {
    width: 50%;
  }
  .cid-rNIrtTKHoi .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrtTKHoi .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrtTKHoi .card-img {
    width: 100%;
  }
  .cid-rNIrtTKHoi .card-box {
    width: 100%;
  }
}
.cid-rNIrtTKHoi .card-box > p,
.cid-rNIrtTKHoi .mbr-section-btn {
  color: #767676;
}
.cid-rNIruesoz2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIruesoz2 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIruesoz2 .title,
.cid-rNIruesoz2 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIruesoz2 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIruesoz2 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIruesoz2 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIruesoz2 .text-box {
  padding: 0rem;
}
.cid-rNIruesoz2 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIruesoz2 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIruesoz2 .card-img {
  overflow: hidden;
}
.cid-rNIruesoz2 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIruesoz2 .card-box {
  padding: 0rem;
}
.cid-rNIruesoz2 img {
  transition: all 0.3s;
}
.cid-rNIruesoz2 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIruesoz2 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIruesoz2 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIruesoz2 .card-img {
    width: 30%;
  }
  .cid-rNIruesoz2 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIruesoz2 .card-img {
    width: 50%;
  }
  .cid-rNIruesoz2 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIruesoz2 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIruesoz2 .card-img {
    width: 100%;
  }
  .cid-rNIruesoz2 .card-box {
    width: 100%;
  }
}
.cid-rNIruesoz2 .card-box > p,
.cid-rNIruesoz2 .mbr-section-btn {
  color: #767676;
}
.cid-rNIruGzBzc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIruGzBzc .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIruGzBzc .title,
.cid-rNIruGzBzc .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIruGzBzc .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIruGzBzc .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIruGzBzc .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIruGzBzc .text-box {
  padding: 0rem;
}
.cid-rNIruGzBzc .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIruGzBzc .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIruGzBzc .card-img {
  overflow: hidden;
}
.cid-rNIruGzBzc .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIruGzBzc .card-box {
  padding: 0rem;
}
.cid-rNIruGzBzc img {
  transition: all 0.3s;
}
.cid-rNIruGzBzc .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIruGzBzc .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIruGzBzc .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIruGzBzc .card-img {
    width: 30%;
  }
  .cid-rNIruGzBzc .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIruGzBzc .card-img {
    width: 50%;
  }
  .cid-rNIruGzBzc .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIruGzBzc .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIruGzBzc .card-img {
    width: 100%;
  }
  .cid-rNIruGzBzc .card-box {
    width: 100%;
  }
}
.cid-rNIruGzBzc .card-box > p,
.cid-rNIruGzBzc .mbr-section-btn {
  color: #767676;
}
.cid-rNIrv88lPR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrv88lPR .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrv88lPR .title,
.cid-rNIrv88lPR .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrv88lPR .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrv88lPR .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrv88lPR .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrv88lPR .text-box {
  padding: 0rem;
}
.cid-rNIrv88lPR .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrv88lPR .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrv88lPR .card-img {
  overflow: hidden;
}
.cid-rNIrv88lPR .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrv88lPR .card-box {
  padding: 0rem;
}
.cid-rNIrv88lPR img {
  transition: all 0.3s;
}
.cid-rNIrv88lPR .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrv88lPR .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrv88lPR .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrv88lPR .card-img {
    width: 30%;
  }
  .cid-rNIrv88lPR .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrv88lPR .card-img {
    width: 50%;
  }
  .cid-rNIrv88lPR .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrv88lPR .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrv88lPR .card-img {
    width: 100%;
  }
  .cid-rNIrv88lPR .card-box {
    width: 100%;
  }
}
.cid-rNIrv88lPR .card-box > p,
.cid-rNIrv88lPR .mbr-section-btn {
  color: #767676;
}
.cid-rNIrvy3EMx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrvy3EMx .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrvy3EMx .title,
.cid-rNIrvy3EMx .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrvy3EMx .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrvy3EMx .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrvy3EMx .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrvy3EMx .text-box {
  padding: 0rem;
}
.cid-rNIrvy3EMx .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrvy3EMx .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrvy3EMx .card-img {
  overflow: hidden;
}
.cid-rNIrvy3EMx .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrvy3EMx .card-box {
  padding: 0rem;
}
.cid-rNIrvy3EMx img {
  transition: all 0.3s;
}
.cid-rNIrvy3EMx .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrvy3EMx .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrvy3EMx .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrvy3EMx .card-img {
    width: 30%;
  }
  .cid-rNIrvy3EMx .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrvy3EMx .card-img {
    width: 50%;
  }
  .cid-rNIrvy3EMx .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrvy3EMx .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrvy3EMx .card-img {
    width: 100%;
  }
  .cid-rNIrvy3EMx .card-box {
    width: 100%;
  }
}
.cid-rNIrvy3EMx .card-box > p,
.cid-rNIrvy3EMx .mbr-section-btn {
  color: #767676;
}
.cid-rNIrvWYPiR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrvWYPiR .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrvWYPiR .title,
.cid-rNIrvWYPiR .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrvWYPiR .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrvWYPiR .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrvWYPiR .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrvWYPiR .text-box {
  padding: 0rem;
}
.cid-rNIrvWYPiR .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrvWYPiR .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrvWYPiR .card-img {
  overflow: hidden;
}
.cid-rNIrvWYPiR .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrvWYPiR .card-box {
  padding: 0rem;
}
.cid-rNIrvWYPiR img {
  transition: all 0.3s;
}
.cid-rNIrvWYPiR .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrvWYPiR .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrvWYPiR .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrvWYPiR .card-img {
    width: 30%;
  }
  .cid-rNIrvWYPiR .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrvWYPiR .card-img {
    width: 50%;
  }
  .cid-rNIrvWYPiR .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrvWYPiR .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrvWYPiR .card-img {
    width: 100%;
  }
  .cid-rNIrvWYPiR .card-box {
    width: 100%;
  }
}
.cid-rNIrvWYPiR .card-box > p,
.cid-rNIrvWYPiR .mbr-section-btn {
  color: #767676;
}
.cid-rNIrwwx9Mr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrwwx9Mr .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrwwx9Mr .title,
.cid-rNIrwwx9Mr .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrwwx9Mr .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrwwx9Mr .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrwwx9Mr .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrwwx9Mr .text-box {
  padding: 0rem;
}
.cid-rNIrwwx9Mr .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrwwx9Mr .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrwwx9Mr .card-img {
  overflow: hidden;
}
.cid-rNIrwwx9Mr .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrwwx9Mr .card-box {
  padding: 0rem;
}
.cid-rNIrwwx9Mr img {
  transition: all 0.3s;
}
.cid-rNIrwwx9Mr .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrwwx9Mr .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrwwx9Mr .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrwwx9Mr .card-img {
    width: 30%;
  }
  .cid-rNIrwwx9Mr .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrwwx9Mr .card-img {
    width: 50%;
  }
  .cid-rNIrwwx9Mr .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrwwx9Mr .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrwwx9Mr .card-img {
    width: 100%;
  }
  .cid-rNIrwwx9Mr .card-box {
    width: 100%;
  }
}
.cid-rNIrwwx9Mr .card-box > p,
.cid-rNIrwwx9Mr .mbr-section-btn {
  color: #767676;
}
.cid-rNIrx2dZJj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrx2dZJj .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrx2dZJj .title,
.cid-rNIrx2dZJj .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrx2dZJj .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrx2dZJj .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrx2dZJj .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrx2dZJj .text-box {
  padding: 0rem;
}
.cid-rNIrx2dZJj .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrx2dZJj .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrx2dZJj .card-img {
  overflow: hidden;
}
.cid-rNIrx2dZJj .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrx2dZJj .card-box {
  padding: 0rem;
}
.cid-rNIrx2dZJj img {
  transition: all 0.3s;
}
.cid-rNIrx2dZJj .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrx2dZJj .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrx2dZJj .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrx2dZJj .card-img {
    width: 30%;
  }
  .cid-rNIrx2dZJj .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrx2dZJj .card-img {
    width: 50%;
  }
  .cid-rNIrx2dZJj .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrx2dZJj .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrx2dZJj .card-img {
    width: 100%;
  }
  .cid-rNIrx2dZJj .card-box {
    width: 100%;
  }
}
.cid-rNIrx2dZJj .card-box > p,
.cid-rNIrx2dZJj .mbr-section-btn {
  color: #767676;
}
.cid-sM6YOf5WC4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM6YOf5WC4 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM6YOf5WC4 .title,
.cid-sM6YOf5WC4 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM6YOf5WC4 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM6YOf5WC4 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM6YOf5WC4 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM6YOf5WC4 .text-box {
  padding: 0rem;
}
.cid-sM6YOf5WC4 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM6YOf5WC4 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM6YOf5WC4 .card-img {
  overflow: hidden;
}
.cid-sM6YOf5WC4 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM6YOf5WC4 .card-box {
  padding: 0rem;
}
.cid-sM6YOf5WC4 img {
  transition: all 0.3s;
}
.cid-sM6YOf5WC4 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM6YOf5WC4 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM6YOf5WC4 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM6YOf5WC4 .card-img {
    width: 30%;
  }
  .cid-sM6YOf5WC4 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM6YOf5WC4 .card-img {
    width: 50%;
  }
  .cid-sM6YOf5WC4 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM6YOf5WC4 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM6YOf5WC4 .card-img {
    width: 100%;
  }
  .cid-sM6YOf5WC4 .card-box {
    width: 100%;
  }
}
.cid-sM6YOf5WC4 .card-box > p,
.cid-sM6YOf5WC4 .mbr-section-btn {
  color: #767676;
}
.cid-rNIrkARYrb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNIrkARYrb .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-rNIrkARYrb .title,
.cid-rNIrkARYrb .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-rNIrkARYrb .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-rNIrkARYrb .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-rNIrkARYrb .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-rNIrkARYrb .text-box {
  padding: 0rem;
}
.cid-rNIrkARYrb .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-rNIrkARYrb .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-rNIrkARYrb .card-img {
  overflow: hidden;
}
.cid-rNIrkARYrb .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rNIrkARYrb .card-box {
  padding: 0rem;
}
.cid-rNIrkARYrb img {
  transition: all 0.3s;
}
.cid-rNIrkARYrb .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-rNIrkARYrb .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-rNIrkARYrb .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-rNIrkARYrb .card-img {
    width: 30%;
  }
  .cid-rNIrkARYrb .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNIrkARYrb .card-img {
    width: 50%;
  }
  .cid-rNIrkARYrb .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-rNIrkARYrb .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-rNIrkARYrb .card-img {
    width: 100%;
  }
  .cid-rNIrkARYrb .card-box {
    width: 100%;
  }
}
.cid-rNIrkARYrb .card-box > p,
.cid-rNIrkARYrb .mbr-section-btn {
  color: #767676;
}
.cid-sM6YOOq7Iz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM6YOOq7Iz .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM6YOOq7Iz .title,
.cid-sM6YOOq7Iz .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM6YOOq7Iz .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM6YOOq7Iz .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM6YOOq7Iz .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM6YOOq7Iz .text-box {
  padding: 0rem;
}
.cid-sM6YOOq7Iz .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM6YOOq7Iz .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM6YOOq7Iz .card-img {
  overflow: hidden;
}
.cid-sM6YOOq7Iz .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM6YOOq7Iz .card-box {
  padding: 0rem;
}
.cid-sM6YOOq7Iz img {
  transition: all 0.3s;
}
.cid-sM6YOOq7Iz .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM6YOOq7Iz .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM6YOOq7Iz .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM6YOOq7Iz .card-img {
    width: 30%;
  }
  .cid-sM6YOOq7Iz .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM6YOOq7Iz .card-img {
    width: 50%;
  }
  .cid-sM6YOOq7Iz .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM6YOOq7Iz .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM6YOOq7Iz .card-img {
    width: 100%;
  }
  .cid-sM6YOOq7Iz .card-box {
    width: 100%;
  }
}
.cid-sM6YOOq7Iz .card-box > p,
.cid-sM6YOOq7Iz .mbr-section-btn {
  color: #767676;
}
.cid-sM6YPk5wt7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM6YPk5wt7 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM6YPk5wt7 .title,
.cid-sM6YPk5wt7 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM6YPk5wt7 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM6YPk5wt7 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM6YPk5wt7 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM6YPk5wt7 .text-box {
  padding: 0rem;
}
.cid-sM6YPk5wt7 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM6YPk5wt7 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM6YPk5wt7 .card-img {
  overflow: hidden;
}
.cid-sM6YPk5wt7 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM6YPk5wt7 .card-box {
  padding: 0rem;
}
.cid-sM6YPk5wt7 img {
  transition: all 0.3s;
}
.cid-sM6YPk5wt7 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM6YPk5wt7 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM6YPk5wt7 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM6YPk5wt7 .card-img {
    width: 30%;
  }
  .cid-sM6YPk5wt7 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM6YPk5wt7 .card-img {
    width: 50%;
  }
  .cid-sM6YPk5wt7 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM6YPk5wt7 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM6YPk5wt7 .card-img {
    width: 100%;
  }
  .cid-sM6YPk5wt7 .card-box {
    width: 100%;
  }
}
.cid-sM6YPk5wt7 .card-box > p,
.cid-sM6YPk5wt7 .mbr-section-btn {
  color: #767676;
}
.cid-sM6YPN044c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM6YPN044c .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM6YPN044c .title,
.cid-sM6YPN044c .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM6YPN044c .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM6YPN044c .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM6YPN044c .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM6YPN044c .text-box {
  padding: 0rem;
}
.cid-sM6YPN044c .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM6YPN044c .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM6YPN044c .card-img {
  overflow: hidden;
}
.cid-sM6YPN044c .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM6YPN044c .card-box {
  padding: 0rem;
}
.cid-sM6YPN044c img {
  transition: all 0.3s;
}
.cid-sM6YPN044c .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM6YPN044c .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM6YPN044c .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM6YPN044c .card-img {
    width: 30%;
  }
  .cid-sM6YPN044c .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM6YPN044c .card-img {
    width: 50%;
  }
  .cid-sM6YPN044c .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM6YPN044c .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM6YPN044c .card-img {
    width: 100%;
  }
  .cid-sM6YPN044c .card-box {
    width: 100%;
  }
}
.cid-sM6YPN044c .card-box > p,
.cid-sM6YPN044c .mbr-section-btn {
  color: #767676;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sM6YQcki7J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM6YQcki7J .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM6YQcki7J .title,
.cid-sM6YQcki7J .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM6YQcki7J .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM6YQcki7J .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM6YQcki7J .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM6YQcki7J .text-box {
  padding: 0rem;
}
.cid-sM6YQcki7J .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM6YQcki7J .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM6YQcki7J .card-img {
  overflow: hidden;
}
.cid-sM6YQcki7J .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM6YQcki7J .card-box {
  padding: 0rem;
}
.cid-sM6YQcki7J img {
  transition: all 0.3s;
}
.cid-sM6YQcki7J .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM6YQcki7J .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM6YQcki7J .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM6YQcki7J .card-img {
    width: 30%;
  }
  .cid-sM6YQcki7J .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM6YQcki7J .card-img {
    width: 50%;
  }
  .cid-sM6YQcki7J .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM6YQcki7J .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM6YQcki7J .card-img {
    width: 100%;
  }
  .cid-sM6YQcki7J .card-box {
    width: 100%;
  }
}
.cid-sM6YQcki7J .card-box > p,
.cid-sM6YQcki7J .mbr-section-btn {
  color: #767676;
}
.cid-sM6YR2VESK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM6YR2VESK .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM6YR2VESK .title,
.cid-sM6YR2VESK .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM6YR2VESK .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM6YR2VESK .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM6YR2VESK .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM6YR2VESK .text-box {
  padding: 0rem;
}
.cid-sM6YR2VESK .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM6YR2VESK .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM6YR2VESK .card-img {
  overflow: hidden;
}
.cid-sM6YR2VESK .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM6YR2VESK .card-box {
  padding: 0rem;
}
.cid-sM6YR2VESK img {
  transition: all 0.3s;
}
.cid-sM6YR2VESK .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM6YR2VESK .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM6YR2VESK .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM6YR2VESK .card-img {
    width: 30%;
  }
  .cid-sM6YR2VESK .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM6YR2VESK .card-img {
    width: 50%;
  }
  .cid-sM6YR2VESK .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM6YR2VESK .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM6YR2VESK .card-img {
    width: 100%;
  }
  .cid-sM6YR2VESK .card-box {
    width: 100%;
  }
}
.cid-sM6YR2VESK .card-box > p,
.cid-sM6YR2VESK .mbr-section-btn {
  color: #767676;
}
.cid-sM709FPKEW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM709FPKEW .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM709FPKEW .title,
.cid-sM709FPKEW .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM709FPKEW .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM709FPKEW .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM709FPKEW .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM709FPKEW .text-box {
  padding: 0rem;
}
.cid-sM709FPKEW .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM709FPKEW .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM709FPKEW .card-img {
  overflow: hidden;
}
.cid-sM709FPKEW .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM709FPKEW .card-box {
  padding: 0rem;
}
.cid-sM709FPKEW img {
  transition: all 0.3s;
}
.cid-sM709FPKEW .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM709FPKEW .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM709FPKEW .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM709FPKEW .card-img {
    width: 30%;
  }
  .cid-sM709FPKEW .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM709FPKEW .card-img {
    width: 50%;
  }
  .cid-sM709FPKEW .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM709FPKEW .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM709FPKEW .card-img {
    width: 100%;
  }
  .cid-sM709FPKEW .card-box {
    width: 100%;
  }
}
.cid-sM709FPKEW .card-box > p,
.cid-sM709FPKEW .mbr-section-btn {
  color: #767676;
}
.cid-sM70bNudtq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM70bNudtq .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM70bNudtq .title,
.cid-sM70bNudtq .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM70bNudtq .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM70bNudtq .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM70bNudtq .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM70bNudtq .text-box {
  padding: 0rem;
}
.cid-sM70bNudtq .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM70bNudtq .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM70bNudtq .card-img {
  overflow: hidden;
}
.cid-sM70bNudtq .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM70bNudtq .card-box {
  padding: 0rem;
}
.cid-sM70bNudtq img {
  transition: all 0.3s;
}
.cid-sM70bNudtq .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM70bNudtq .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM70bNudtq .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM70bNudtq .card-img {
    width: 30%;
  }
  .cid-sM70bNudtq .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM70bNudtq .card-img {
    width: 50%;
  }
  .cid-sM70bNudtq .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM70bNudtq .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM70bNudtq .card-img {
    width: 100%;
  }
  .cid-sM70bNudtq .card-box {
    width: 100%;
  }
}
.cid-sM70bNudtq .card-box > p,
.cid-sM70bNudtq .mbr-section-btn {
  color: #767676;
}
.cid-sM70coWLQ7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM70coWLQ7 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM70coWLQ7 .title,
.cid-sM70coWLQ7 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM70coWLQ7 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM70coWLQ7 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM70coWLQ7 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM70coWLQ7 .text-box {
  padding: 0rem;
}
.cid-sM70coWLQ7 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM70coWLQ7 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM70coWLQ7 .card-img {
  overflow: hidden;
}
.cid-sM70coWLQ7 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM70coWLQ7 .card-box {
  padding: 0rem;
}
.cid-sM70coWLQ7 img {
  transition: all 0.3s;
}
.cid-sM70coWLQ7 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM70coWLQ7 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM70coWLQ7 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM70coWLQ7 .card-img {
    width: 30%;
  }
  .cid-sM70coWLQ7 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM70coWLQ7 .card-img {
    width: 50%;
  }
  .cid-sM70coWLQ7 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM70coWLQ7 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM70coWLQ7 .card-img {
    width: 100%;
  }
  .cid-sM70coWLQ7 .card-box {
    width: 100%;
  }
}
.cid-sM70coWLQ7 .card-box > p,
.cid-sM70coWLQ7 .mbr-section-btn {
  color: #767676;
}
.cid-sM71SisE0y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM71SisE0y .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM71SisE0y .title,
.cid-sM71SisE0y .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM71SisE0y .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM71SisE0y .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM71SisE0y .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM71SisE0y .text-box {
  padding: 0rem;
}
.cid-sM71SisE0y .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM71SisE0y .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM71SisE0y .card-img {
  overflow: hidden;
}
.cid-sM71SisE0y .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM71SisE0y .card-box {
  padding: 0rem;
}
.cid-sM71SisE0y img {
  transition: all 0.3s;
}
.cid-sM71SisE0y .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM71SisE0y .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM71SisE0y .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM71SisE0y .card-img {
    width: 30%;
  }
  .cid-sM71SisE0y .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM71SisE0y .card-img {
    width: 50%;
  }
  .cid-sM71SisE0y .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM71SisE0y .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM71SisE0y .card-img {
    width: 100%;
  }
  .cid-sM71SisE0y .card-box {
    width: 100%;
  }
}
.cid-sM71SisE0y .card-box > p,
.cid-sM71SisE0y .mbr-section-btn {
  color: #767676;
}
.cid-sM71T7C7UP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM71T7C7UP .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM71T7C7UP .title,
.cid-sM71T7C7UP .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM71T7C7UP .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM71T7C7UP .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM71T7C7UP .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM71T7C7UP .text-box {
  padding: 0rem;
}
.cid-sM71T7C7UP .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM71T7C7UP .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM71T7C7UP .card-img {
  overflow: hidden;
}
.cid-sM71T7C7UP .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM71T7C7UP .card-box {
  padding: 0rem;
}
.cid-sM71T7C7UP img {
  transition: all 0.3s;
}
.cid-sM71T7C7UP .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM71T7C7UP .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM71T7C7UP .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM71T7C7UP .card-img {
    width: 30%;
  }
  .cid-sM71T7C7UP .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM71T7C7UP .card-img {
    width: 50%;
  }
  .cid-sM71T7C7UP .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM71T7C7UP .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM71T7C7UP .card-img {
    width: 100%;
  }
  .cid-sM71T7C7UP .card-box {
    width: 100%;
  }
}
.cid-sM71T7C7UP .card-box > p,
.cid-sM71T7C7UP .mbr-section-btn {
  color: #767676;
}
.cid-sM71TF0eRm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM71TF0eRm .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM71TF0eRm .title,
.cid-sM71TF0eRm .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM71TF0eRm .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM71TF0eRm .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM71TF0eRm .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM71TF0eRm .text-box {
  padding: 0rem;
}
.cid-sM71TF0eRm .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM71TF0eRm .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM71TF0eRm .card-img {
  overflow: hidden;
}
.cid-sM71TF0eRm .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM71TF0eRm .card-box {
  padding: 0rem;
}
.cid-sM71TF0eRm img {
  transition: all 0.3s;
}
.cid-sM71TF0eRm .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM71TF0eRm .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM71TF0eRm .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM71TF0eRm .card-img {
    width: 30%;
  }
  .cid-sM71TF0eRm .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM71TF0eRm .card-img {
    width: 50%;
  }
  .cid-sM71TF0eRm .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM71TF0eRm .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM71TF0eRm .card-img {
    width: 100%;
  }
  .cid-sM71TF0eRm .card-box {
    width: 100%;
  }
}
.cid-sM71TF0eRm .card-box > p,
.cid-sM71TF0eRm .mbr-section-btn {
  color: #767676;
}
.cid-sM71U5mV2U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM71U5mV2U .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM71U5mV2U .title,
.cid-sM71U5mV2U .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM71U5mV2U .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM71U5mV2U .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM71U5mV2U .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM71U5mV2U .text-box {
  padding: 0rem;
}
.cid-sM71U5mV2U .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM71U5mV2U .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM71U5mV2U .card-img {
  overflow: hidden;
}
.cid-sM71U5mV2U .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM71U5mV2U .card-box {
  padding: 0rem;
}
.cid-sM71U5mV2U img {
  transition: all 0.3s;
}
.cid-sM71U5mV2U .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM71U5mV2U .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM71U5mV2U .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM71U5mV2U .card-img {
    width: 30%;
  }
  .cid-sM71U5mV2U .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM71U5mV2U .card-img {
    width: 50%;
  }
  .cid-sM71U5mV2U .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM71U5mV2U .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM71U5mV2U .card-img {
    width: 100%;
  }
  .cid-sM71U5mV2U .card-box {
    width: 100%;
  }
}
.cid-sM71U5mV2U .card-box > p,
.cid-sM71U5mV2U .mbr-section-btn {
  color: #767676;
}
.cid-sM71UvhoE0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM71UvhoE0 .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM71UvhoE0 .title,
.cid-sM71UvhoE0 .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM71UvhoE0 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM71UvhoE0 .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM71UvhoE0 .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM71UvhoE0 .text-box {
  padding: 0rem;
}
.cid-sM71UvhoE0 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM71UvhoE0 .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM71UvhoE0 .card-img {
  overflow: hidden;
}
.cid-sM71UvhoE0 .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM71UvhoE0 .card-box {
  padding: 0rem;
}
.cid-sM71UvhoE0 img {
  transition: all 0.3s;
}
.cid-sM71UvhoE0 .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM71UvhoE0 .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM71UvhoE0 .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM71UvhoE0 .card-img {
    width: 30%;
  }
  .cid-sM71UvhoE0 .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM71UvhoE0 .card-img {
    width: 50%;
  }
  .cid-sM71UvhoE0 .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM71UvhoE0 .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM71UvhoE0 .card-img {
    width: 100%;
  }
  .cid-sM71UvhoE0 .card-box {
    width: 100%;
  }
}
.cid-sM71UvhoE0 .card-box > p,
.cid-sM71UvhoE0 .mbr-section-btn {
  color: #767676;
}
.cid-sM72IpbkjB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM72IpbkjB .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM72IpbkjB .title,
.cid-sM72IpbkjB .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM72IpbkjB .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM72IpbkjB .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM72IpbkjB .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM72IpbkjB .text-box {
  padding: 0rem;
}
.cid-sM72IpbkjB .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM72IpbkjB .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM72IpbkjB .card-img {
  overflow: hidden;
}
.cid-sM72IpbkjB .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM72IpbkjB .card-box {
  padding: 0rem;
}
.cid-sM72IpbkjB img {
  transition: all 0.3s;
}
.cid-sM72IpbkjB .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM72IpbkjB .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM72IpbkjB .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM72IpbkjB .card-img {
    width: 30%;
  }
  .cid-sM72IpbkjB .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM72IpbkjB .card-img {
    width: 50%;
  }
  .cid-sM72IpbkjB .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM72IpbkjB .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM72IpbkjB .card-img {
    width: 100%;
  }
  .cid-sM72IpbkjB .card-box {
    width: 100%;
  }
}
.cid-sM72IpbkjB .card-box > p,
.cid-sM72IpbkjB .mbr-section-btn {
  color: #767676;
}
.cid-sM73ayXFhY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM73ayXFhY .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM73ayXFhY .title,
.cid-sM73ayXFhY .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM73ayXFhY .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM73ayXFhY .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM73ayXFhY .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM73ayXFhY .text-box {
  padding: 0rem;
}
.cid-sM73ayXFhY .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM73ayXFhY .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM73ayXFhY .card-img {
  overflow: hidden;
}
.cid-sM73ayXFhY .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM73ayXFhY .card-box {
  padding: 0rem;
}
.cid-sM73ayXFhY img {
  transition: all 0.3s;
}
.cid-sM73ayXFhY .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM73ayXFhY .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM73ayXFhY .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM73ayXFhY .card-img {
    width: 30%;
  }
  .cid-sM73ayXFhY .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM73ayXFhY .card-img {
    width: 50%;
  }
  .cid-sM73ayXFhY .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM73ayXFhY .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM73ayXFhY .card-img {
    width: 100%;
  }
  .cid-sM73ayXFhY .card-box {
    width: 100%;
  }
}
.cid-sM73ayXFhY .card-box > p,
.cid-sM73ayXFhY .mbr-section-btn {
  color: #767676;
}
.cid-sM73uHbpeG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM73uHbpeG .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM73uHbpeG .title,
.cid-sM73uHbpeG .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM73uHbpeG .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM73uHbpeG .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM73uHbpeG .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM73uHbpeG .text-box {
  padding: 0rem;
}
.cid-sM73uHbpeG .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM73uHbpeG .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM73uHbpeG .card-img {
  overflow: hidden;
}
.cid-sM73uHbpeG .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM73uHbpeG .card-box {
  padding: 0rem;
}
.cid-sM73uHbpeG img {
  transition: all 0.3s;
}
.cid-sM73uHbpeG .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM73uHbpeG .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM73uHbpeG .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM73uHbpeG .card-img {
    width: 30%;
  }
  .cid-sM73uHbpeG .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM73uHbpeG .card-img {
    width: 50%;
  }
  .cid-sM73uHbpeG .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM73uHbpeG .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM73uHbpeG .card-img {
    width: 100%;
  }
  .cid-sM73uHbpeG .card-box {
    width: 100%;
  }
}
.cid-sM73uHbpeG .card-box > p,
.cid-sM73uHbpeG .mbr-section-btn {
  color: #767676;
}
.cid-sM73vitzVN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM73vitzVN .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM73vitzVN .title,
.cid-sM73vitzVN .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM73vitzVN .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM73vitzVN .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM73vitzVN .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM73vitzVN .text-box {
  padding: 0rem;
}
.cid-sM73vitzVN .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM73vitzVN .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM73vitzVN .card-img {
  overflow: hidden;
}
.cid-sM73vitzVN .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM73vitzVN .card-box {
  padding: 0rem;
}
.cid-sM73vitzVN img {
  transition: all 0.3s;
}
.cid-sM73vitzVN .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM73vitzVN .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM73vitzVN .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM73vitzVN .card-img {
    width: 30%;
  }
  .cid-sM73vitzVN .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM73vitzVN .card-img {
    width: 50%;
  }
  .cid-sM73vitzVN .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM73vitzVN .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM73vitzVN .card-img {
    width: 100%;
  }
  .cid-sM73vitzVN .card-box {
    width: 100%;
  }
}
.cid-sM73vitzVN .card-box > p,
.cid-sM73vitzVN .mbr-section-btn {
  color: #767676;
}
.cid-sM73OgciWF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM73OgciWF .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM73OgciWF .title,
.cid-sM73OgciWF .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM73OgciWF .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM73OgciWF .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM73OgciWF .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM73OgciWF .text-box {
  padding: 0rem;
}
.cid-sM73OgciWF .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM73OgciWF .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM73OgciWF .card-img {
  overflow: hidden;
}
.cid-sM73OgciWF .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM73OgciWF .card-box {
  padding: 0rem;
}
.cid-sM73OgciWF img {
  transition: all 0.3s;
}
.cid-sM73OgciWF .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM73OgciWF .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM73OgciWF .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM73OgciWF .card-img {
    width: 30%;
  }
  .cid-sM73OgciWF .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM73OgciWF .card-img {
    width: 50%;
  }
  .cid-sM73OgciWF .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM73OgciWF .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM73OgciWF .card-img {
    width: 100%;
  }
  .cid-sM73OgciWF .card-box {
    width: 100%;
  }
}
.cid-sM73OgciWF .card-box > p,
.cid-sM73OgciWF .mbr-section-btn {
  color: #767676;
}
.cid-sM74rCiyoy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM74rCiyoy .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM74rCiyoy .title,
.cid-sM74rCiyoy .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM74rCiyoy .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM74rCiyoy .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM74rCiyoy .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM74rCiyoy .text-box {
  padding: 0rem;
}
.cid-sM74rCiyoy .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM74rCiyoy .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM74rCiyoy .card-img {
  overflow: hidden;
}
.cid-sM74rCiyoy .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM74rCiyoy .card-box {
  padding: 0rem;
}
.cid-sM74rCiyoy img {
  transition: all 0.3s;
}
.cid-sM74rCiyoy .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM74rCiyoy .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM74rCiyoy .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM74rCiyoy .card-img {
    width: 30%;
  }
  .cid-sM74rCiyoy .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM74rCiyoy .card-img {
    width: 50%;
  }
  .cid-sM74rCiyoy .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM74rCiyoy .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM74rCiyoy .card-img {
    width: 100%;
  }
  .cid-sM74rCiyoy .card-box {
    width: 100%;
  }
}
.cid-sM74rCiyoy .card-box > p,
.cid-sM74rCiyoy .mbr-section-btn {
  color: #767676;
}
.cid-sM74s3ovEu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sM74s3ovEu .mbr-iconfont {
  color: #767676;
  font-size: 0.9rem;
}
.cid-sM74s3ovEu .title,
.cid-sM74s3ovEu .mbr-section-title {
  margin-bottom: 0.5rem!important;
}
.cid-sM74s3ovEu .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
  padding: 0rem;
}
.cid-sM74s3ovEu .ico-wrap {
  background: #efefef;
  padding: 1rem;
}
.cid-sM74s3ovEu .phone {
  margin-bottom: 0;
  color: #767676;
  text-align: left;
}
.cid-sM74s3ovEu .text-box {
  padding: 0rem;
}
.cid-sM74s3ovEu .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-sM74s3ovEu .card-title {
  color: #1dadea;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-sM74s3ovEu .card-img {
  overflow: hidden;
}
.cid-sM74s3ovEu .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-sM74s3ovEu .card-box {
  padding: 0rem;
}
.cid-sM74s3ovEu img {
  transition: all 0.3s;
}
.cid-sM74s3ovEu .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #767676;
}
.cid-sM74s3ovEu .status {
  color: #767676;
  text-align: left;
}
@media (min-width: 576px) {
  .cid-sM74s3ovEu .card-wrapper {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sM74s3ovEu .card-img {
    width: 30%;
  }
  .cid-sM74s3ovEu .card-box {
    width: 70%;
    margin-left: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sM74s3ovEu .card-img {
    width: 50%;
  }
  .cid-sM74s3ovEu .card-box {
    width: 50%;
    margin-left: 0rem;
  }
  .cid-sM74s3ovEu .text-box {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sM74s3ovEu .card-img {
    width: 100%;
  }
  .cid-sM74s3ovEu .card-box {
    width: 100%;
  }
}
.cid-sM74s3ovEu .card-box > p,
.cid-sM74s3ovEu .mbr-section-btn {
  color: #767676;
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-smkaLqxAMG {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-smkaLqxAMG h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-smkaLqxAMG .container {
    position: relative;
  }
  .cid-smkaLqxAMG .row {
    margin: 0;
  }
  .cid-smkaLqxAMG h2 {
    margin: 0;
  }
}
.cid-smkaLqxAMG .mbr-section-subtitle {
  color: #e9204f;
}
.cid-smkaLqxAMG .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
  color: #666666;
}
.cid-smkaLqxAMG h2 {
  text-align: left;
  color: #666666;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-smkb2eUDwp {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-smkb2eUDwp h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-smkb2eUDwp .container {
    position: relative;
  }
  .cid-smkb2eUDwp .row {
    margin: 0;
  }
  .cid-smkb2eUDwp h2 {
    margin: 0;
  }
}
.cid-smkb2eUDwp .mbr-section-subtitle {
  color: #e9204f;
}
.cid-smkb2eUDwp .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
  color: #666666;
}
.cid-smkb2eUDwp h2 {
  text-align: left;
  color: #666666;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-smkaWPrDVe {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-smkaWPrDVe h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-smkaWPrDVe .container {
    position: relative;
  }
  .cid-smkaWPrDVe .row {
    margin: 0;
  }
  .cid-smkaWPrDVe h2 {
    margin: 0;
  }
}
.cid-smkaWPrDVe .mbr-section-subtitle {
  color: #e9204f;
}
.cid-smkaWPrDVe .mbr-text {
  margin-top: 1.4rem;
  text-align: left;
  color: #666666;
}
.cid-smkaWPrDVe h2 {
  text-align: left;
  color: #666666;
}
.cid-stJQN5ryOu {
  min-height: 70px !important;
  position: relative;
  background: #ffffff;
  overflow: visible;
}
.cid-stJQN5ryOu .nav-item,
.cid-stJQN5ryOu .nav-link,
.cid-stJQN5ryOu .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .nav-item:hover,
.cid-stJQN5ryOu .nav-link:hover,
.cid-stJQN5ryOu .navbar-caption:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-stJQN5ryOu .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-stJQN5ryOu .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-stJQN5ryOu .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-stJQN5ryOu .container-fluid,
.cid-stJQN5ryOu .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-stJQN5ryOu .nav-link:hover:before {
  width: 100%;
}
.cid-stJQN5ryOu .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .nav-link {
    margin: 0 !important;
  }
}
.cid-stJQN5ryOu .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stJQN5ryOu .widget p,
.cid-stJQN5ryOu .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-stJQN5ryOu .widget p a,
.cid-stJQN5ryOu .widget .icons-menu a {
  margin-left: 15px;
}
.cid-stJQN5ryOu .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(89, 89, 89, 0.8);
  font-size: 17px;
  color: rgba(89, 89, 89, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu .icons__wrap:hover {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}
.cid-stJQN5ryOu .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: none;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #666666 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-stJQN5ryOu .mbr-section-btn .btn-secondary:hover {
  background-color: #666666 !important;
  color: #ffffff !important;
}
.cid-stJQN5ryOu .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-stJQN5ryOu .navbar > .container,
.cid-stJQN5ryOu .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .btn {
    white-space: nowrap;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #ffffff;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #ffffff;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-stJQN5ryOu .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after,
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-stJQN5ryOu .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown-item:hover {
  color: #666666 !important;
}
.cid-stJQN5ryOu .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-stJQN5ryOu .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-stJQN5ryOu .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-stJQN5ryOu .nav-item:focus,
.cid-stJQN5ryOu .nav-link:focus {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stJQN5ryOu .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stJQN5ryOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-stJQN5ryOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stJQN5ryOu .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #ffffff !important;
}
.cid-stJQN5ryOu .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-stJQN5ryOu .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-stJQN5ryOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stJQN5ryOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stJQN5ryOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 85px - 1rem);
  }
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stJQN5ryOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stJQN5ryOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu {
    background: #ffffff !important;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stJQN5ryOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stJQN5ryOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-stJQN5ryOu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 70px;
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stJQN5ryOu .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-stJQN5ryOu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-stJQN5ryOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stJQN5ryOu .dropdown-item.active,
.cid-stJQN5ryOu .dropdown-item:active {
  background-color: transparent;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-stJQN5ryOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-stJQN5ryOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe2327;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stJQN5ryOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stJQN5ryOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stJQN5ryOu .navbar-dropdown {
  position: absolute;
}
.cid-stJQN5ryOu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-stJQN5ryOu a.nav-link:hover {
  color: #666666 !important;
}
@media (max-width: 991px) {
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #ffffff;
  }
  .cid-stJQN5ryOu .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-stJQN5ryOu .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-stJQN5ryOu .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-stJQN5ryOu .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-stJQN5ryOu a.nav-link {
    justify-content: flex-start;
  }
  .cid-stJQN5ryOu ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-stJQN5ryOu .navbar-brand {
    padding: 0;
  }
  .cid-stJQN5ryOu .block__phone,
  .cid-stJQN5ryOu .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-stJQN5ryOu .widget {
    flex-direction: column;
  }
  .cid-stJQN5ryOu .widget p,
  .cid-stJQN5ryOu .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-stJQN5ryOu .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stJQN5ryOu .navbar {
    height: 97px;
  }
  .cid-stJQN5ryOu .navbar.opened {
    height: auto;
  }
  .cid-stJQN5ryOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stJQRphLHV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stJQRphLHV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-stJQRphLHV .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-stJQRphLHV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-stJQRphLHV .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-stJQRphLHV .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-stJQRphLHV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stJQRphLHV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
