body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.6rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.76rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  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: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #149dcc !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: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23149dcc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-uS3SffEzFL .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uS3SffEzFL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uS3SffEzFL a {
  font-style: normal;
}
.cid-uS3SffEzFL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uS3SffEzFL .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uS3SffEzFL .nav-item:focus,
.cid-uS3SffEzFL .nav-link:focus {
  outline: none;
}
.cid-uS3SffEzFL .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS3SffEzFL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uS3SffEzFL .menu-logo {
  margin-right: auto;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uS3SffEzFL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS3SffEzFL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uS3SffEzFL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uS3SffEzFL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uS3SffEzFL button.navbar-toggler:focus {
  outline: none;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS3SffEzFL .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS3SffEzFL .collapsed .btn {
  display: -webkit-flex;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uS3SffEzFL .collapsed button.navbar-toggler {
  display: block;
}
.cid-uS3SffEzFL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uS3SffEzFL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uS3SffEzFL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uS3SffEzFL.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS3SffEzFL img {
    height: 3.8rem !important;
  }
  .cid-uS3SffEzFL .btn {
    display: -webkit-flex;
  }
  .cid-uS3SffEzFL button.navbar-toggler {
    display: block;
  }
  .cid-uS3SffEzFL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uS3SffEzFL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS3SffEzFL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing,
  .cid-uS3SffEzFL .navbar-collapse.show {
    display: block !important;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-nav,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-buttons,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uS3SffEzFL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uS3SffEzFL .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uS3SffEzFL .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uS3SffEzFL .nav-link:hover,
.cid-uS3SffEzFL .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v9w9cTVn8X {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v9w9cTVn8X .mbr-section-subtitle {
  color: #000000;
}
.cid-v9w9cTVn8X H2 {
  color: #000000;
}
.cid-v9w9cTVn8X .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9w9cTVn8X .inner-container {
    width: 100% !important;
  }
}
.cid-v9w9dQa1Xy {
  background: #ffffff;
}
.cid-v9w9dQa1Xy .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v9w9dQa1Xy .mbr-figure {
  margin: 0 auto;
}
.cid-v9w9dQa1Xy figcaption {
  position: relative;
}
.cid-v9w9dQa1Xy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v9w9dQa1Xy .image-block {
    width: 100% !important;
  }
}
.cid-v9we8qhct0 {
  padding-top: 1.5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9we8qhct0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v9we8qhct0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v9we8qhct0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v9we8qhct0 .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
@media (max-width: 600px) {
  .cid-v9we8qhct0 .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-v9we8qhct0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9we8qhct0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9we8qhct0 .mbr-section-text,
.cid-v9we8qhct0 .mbr-section-btn {
  color: #000000;
  text-align: justify;
}
.cid-v9we8qhct0 .mbr-section-title {
  color: #000000;
}
.cid-v9wc1Qz4LD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9wc1Qz4LD .mbr-section-subtitle {
  color: #767676;
}
.cid-v9wc1Qz4LD .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9w9heO33X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9w9heO33X .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9w9heO33X .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9w9heO33X .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9w9heO33X .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9w9heO33X .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-v9w9heO33X .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9w9heO33X .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-v9w9heO33X .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9w9heO33X .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.8;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-v9w9heO33X .mbr-gallery-item > div > span {
  text-align: center;
  color: #ffffff;
}
.cid-v9w9lzbLcU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9w9lzbLcU .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v9w9lzbLcU .container-table {
  margin: 0 auto;
}
.cid-v9w9lzbLcU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9w9lzbLcU .dataTables_wrapper {
  display: block;
}
.cid-v9w9lzbLcU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9w9lzbLcU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9w9lzbLcU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-v9w9lzbLcU table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9w9lzbLcU table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-v9w9lzbLcU table td {
  border-top: 1px solid #cccccc;
}
.cid-v9w9lzbLcU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9w9lzbLcU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9w9lzbLcU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9w9lzbLcU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9w9lzbLcU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9w9lzbLcU .dataTables_filter {
    text-align: center;
  }
  .cid-v9w9lzbLcU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9w9lzbLcU .head-item {
  text-align: center;
}
.cid-v9w9lzbLcU .body-item {
  text-align: center;
}
.cid-v9w9m6zxy7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9w9m6zxy7 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v9w9m6zxy7 .section-text {
  padding: 2rem 0;
  text-align: justify;
}
.cid-v9w9m6zxy7 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9w9m6zxy7 .inner-container {
    width: 100% !important;
  }
}
.cid-v9w9m6zxy7 .section-text DIV {
  text-align: justify;
}
.cid-v9w9mF1mSS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9w9mF1mSS .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-v9w9mF1mSS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-v9w9mF1mSS p {
  color: #767676;
  text-align: left;
}
.cid-v9w9mF1mSS .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-v9w9mF1mSS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-v9w9mF1mSS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-v9w9mF1mSS P {
  text-align: left;
}
.cid-v9w9mF1mSS .card-title {
  color: #000000;
}
.cid-v9w9nXqBv3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9w9nXqBv3 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v9w9nXqBv3 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v9w9nXqBv3 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v9w9nXqBv3 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v9w9nXqBv3 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v9w9nXqBv3 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v9w9nXqBv3 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v9w9nXqBv3 .btn-social {
  border: none !important;
}
.cid-v9w9nXqBv3 [class^="socicon-"]:before,
.cid-v9w9nXqBv3 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v9w9nXqBv3 .btn {
    font-size: 20px !important;
  }
}
.cid-uS3SkagTGz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS3SkagTGz .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uS3SkagTGz .media-wrap img {
  height: 6rem;
}
.cid-uS3SkagTGz .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS3SkagTGz .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uS3SkagTGz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uS3SkagTGz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uS3SkagTGz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uS3SkagTGz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uS3SkagTGz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uS3SkagTGz .links {
  color: #000000;
  text-align: right;
}
.cid-uS3SkagTGz .copyright > p {
  color: #000000;
}
.cid-uS3SlbbXvJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uS3SlbbXvJ .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uS3SffEzFL .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uS3SffEzFL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uS3SffEzFL a {
  font-style: normal;
}
.cid-uS3SffEzFL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uS3SffEzFL .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uS3SffEzFL .nav-item:focus,
.cid-uS3SffEzFL .nav-link:focus {
  outline: none;
}
.cid-uS3SffEzFL .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS3SffEzFL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uS3SffEzFL .menu-logo {
  margin-right: auto;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uS3SffEzFL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS3SffEzFL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uS3SffEzFL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uS3SffEzFL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uS3SffEzFL button.navbar-toggler:focus {
  outline: none;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS3SffEzFL .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS3SffEzFL .collapsed .btn {
  display: -webkit-flex;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uS3SffEzFL .collapsed button.navbar-toggler {
  display: block;
}
.cid-uS3SffEzFL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uS3SffEzFL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uS3SffEzFL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uS3SffEzFL.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS3SffEzFL img {
    height: 3.8rem !important;
  }
  .cid-uS3SffEzFL .btn {
    display: -webkit-flex;
  }
  .cid-uS3SffEzFL button.navbar-toggler {
    display: block;
  }
  .cid-uS3SffEzFL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uS3SffEzFL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS3SffEzFL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing,
  .cid-uS3SffEzFL .navbar-collapse.show {
    display: block !important;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-nav,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-buttons,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uS3SffEzFL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uS3SffEzFL .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uS3SffEzFL .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uS3SffEzFL .nav-link:hover,
.cid-uS3SffEzFL .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uHl5ZmexFc {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHl5ZmexFc .mbr-section-subtitle {
  color: #000000;
}
.cid-uHl5ZmexFc H2 {
  color: #000000;
}
.cid-uHl6bmBBMc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uHl6bmBBMc .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uHl6bmBBMc .section-text {
  padding: 2rem 0;
}
.cid-uHl6bmBBMc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uHl6bmBBMc .inner-container {
    width: 100% !important;
  }
}
.cid-uHl6ccjisW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHl6ccjisW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uHl6ccjisW .form-control,
.cid-uHl6ccjisW .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHl6ccjisW .form-control::-webkit-input-placeholder,
.cid-uHl6ccjisW .field-input::-webkit-input-placeholder,
.cid-uHl6ccjisW .form-control::-webkit-input-placeholder,
.cid-uHl6ccjisW .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uHl6ccjisW .form-control:-moz-placeholder,
.cid-uHl6ccjisW .field-input:-moz-placeholder,
.cid-uHl6ccjisW .form-control:-moz-placeholder,
.cid-uHl6ccjisW .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uHl6ccjisW .form-control:hover,
.cid-uHl6ccjisW .field-input:hover,
.cid-uHl6ccjisW .form-control:focus,
.cid-uHl6ccjisW .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uHl6ccjisW .form-control:hover::-webkit-input-placeholder,
.cid-uHl6ccjisW .field-input:hover::-webkit-input-placeholder,
.cid-uHl6ccjisW .form-control:focus::-webkit-input-placeholder,
.cid-uHl6ccjisW .field-input:focus::-webkit-input-placeholder,
.cid-uHl6ccjisW .form-control:hover::-webkit-input-placeholder,
.cid-uHl6ccjisW .field-input:hover::-webkit-input-placeholder,
.cid-uHl6ccjisW .form-control:focus::-webkit-input-placeholder,
.cid-uHl6ccjisW .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uHl6ccjisW .form-control:hover:-moz-placeholder,
.cid-uHl6ccjisW .field-input:hover:-moz-placeholder,
.cid-uHl6ccjisW .form-control:focus:-moz-placeholder,
.cid-uHl6ccjisW .field-input:focus:-moz-placeholder,
.cid-uHl6ccjisW .form-control:hover:-moz-placeholder,
.cid-uHl6ccjisW .field-input:hover:-moz-placeholder,
.cid-uHl6ccjisW .form-control:focus:-moz-placeholder,
.cid-uHl6ccjisW .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uHl6ccjisW .jq-number__spin:hover,
.cid-uHl6ccjisW .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uHl6ccjisW .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uHl6ccjisW .jq-selectbox li,
.cid-uHl6ccjisW .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uHl6ccjisW .jq-selectbox li:hover,
.cid-uHl6ccjisW .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-uHl6ccjisW .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uHl6ccjisW .jq-number__spin.minus:hover:after,
.cid-uHl6ccjisW .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uHl6ccjisW .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uHl6ccjisW .jq-number__spin.minus:after,
.cid-uHl6ccjisW .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-uHl6ccjisW input::-webkit-clear-button {
  display: none;
}
.cid-uHl6ccjisW input::-webkit-inner-spin-button {
  display: none;
}
.cid-uHl6ccjisW input::-webkit-outer-spin-button {
  display: none;
}
.cid-uHl6ccjisW input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uS3SkagTGz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS3SkagTGz .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uS3SkagTGz .media-wrap img {
  height: 6rem;
}
.cid-uS3SkagTGz .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS3SkagTGz .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uS3SkagTGz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uS3SkagTGz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uS3SkagTGz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uS3SkagTGz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uS3SkagTGz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uS3SkagTGz .links {
  color: #000000;
  text-align: right;
}
.cid-uS3SkagTGz .copyright > p {
  color: #000000;
}
.cid-uS3SlbbXvJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uS3SlbbXvJ .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uS3SffEzFL .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uS3SffEzFL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uS3SffEzFL a {
  font-style: normal;
}
.cid-uS3SffEzFL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uS3SffEzFL .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uS3SffEzFL .nav-item:focus,
.cid-uS3SffEzFL .nav-link:focus {
  outline: none;
}
.cid-uS3SffEzFL .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS3SffEzFL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uS3SffEzFL .menu-logo {
  margin-right: auto;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uS3SffEzFL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uS3SffEzFL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uS3SffEzFL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uS3SffEzFL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS3SffEzFL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uS3SffEzFL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uS3SffEzFL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uS3SffEzFL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uS3SffEzFL button.navbar-toggler:focus {
  outline: none;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uS3SffEzFL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uS3SffEzFL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS3SffEzFL .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS3SffEzFL .collapsed .btn {
  display: -webkit-flex;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uS3SffEzFL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uS3SffEzFL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uS3SffEzFL .collapsed button.navbar-toggler {
  display: block;
}
.cid-uS3SffEzFL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uS3SffEzFL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uS3SffEzFL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uS3SffEzFL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uS3SffEzFL.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS3SffEzFL img {
    height: 3.8rem !important;
  }
  .cid-uS3SffEzFL .btn {
    display: -webkit-flex;
  }
  .cid-uS3SffEzFL button.navbar-toggler {
    display: block;
  }
  .cid-uS3SffEzFL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uS3SffEzFL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS3SffEzFL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing,
  .cid-uS3SffEzFL .navbar-collapse.show {
    display: block !important;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-nav,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-buttons,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uS3SffEzFL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uS3SffEzFL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uS3SffEzFL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uS3SffEzFL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uS3SffEzFL .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uS3SffEzFL .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uS3SffEzFL .nav-link:hover,
.cid-uS3SffEzFL .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uS3SgPGNTy {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3SgPGNTy .mbr-section-subtitle {
  color: #000000;
}
.cid-uS3SgPGNTy H2 {
  color: #000000;
}
.cid-uS3SgPGNTy .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uS3SgPGNTy .inner-container {
    width: 100% !important;
  }
}
.cid-uS3SgPGNTy H1 {
  color: #000000;
}
.cid-uS3Shkgckj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uS3Shkgckj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uS3Shkgckj .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uS3Shkgckj .mbr-text {
    text-align: center;
  }
}
.cid-uS3Shkgckj .mbr-text,
.cid-uS3Shkgckj .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uS3Shkgckj H3 {
  color: #000000;
}
.cid-uS3Shkgckj H1 {
  color: #000000;
}
.cid-uS3ShEpQVU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3ShEpQVU .container-fluid {
  padding: 0 3rem;
}
.cid-uS3ShEpQVU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uS3ShEpQVU .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uS3ShEpQVU .header-text {
  padding: 2rem 1rem !important;
}
.cid-uS3ShEpQVU .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uS3ShEpQVU .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uS3ShEpQVU .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uS3ShEpQVU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uS3ShEpQVU .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uS3ShEpQVU .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uS3ShEpQVU .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uS3ShEpQVU .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uS3ShEpQVU .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uS3ShEpQVU .container-fluid {
    padding: 0 1rem;
  }
  .cid-uS3ShEpQVU .header-text {
    padding: 1rem !important;
  }
  .cid-uS3ShEpQVU .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uS3ShEpQVU .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uS3ShEpQVU .panel-group {
    padding: 0;
  }
}
.cid-uS3ShEpQVU .header-text,
.cid-uS3ShEpQVU .sign {
  color: #000000;
  text-align: left;
}
.cid-uS3ShEpQVU .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uS3ShR2BSt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3ShR2BSt .mbr-text,
.cid-uS3ShR2BSt blockquote {
  color: #767676;
}
.cid-uS3ShR2BSt .mbr-text {
  color: #000000;
}
.cid-uS3ShR2BSt .mbr-text P {
  text-align: justify;
}
.cid-uS3Si0llKO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3Si0llKO .container-fluid {
  padding: 0 3rem;
}
.cid-uS3Si0llKO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uS3Si0llKO .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uS3Si0llKO .header-text {
  padding: 2rem 1rem !important;
}
.cid-uS3Si0llKO .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uS3Si0llKO .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uS3Si0llKO .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uS3Si0llKO .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uS3Si0llKO .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uS3Si0llKO .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uS3Si0llKO .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uS3Si0llKO .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uS3Si0llKO .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uS3Si0llKO .container-fluid {
    padding: 0 1rem;
  }
  .cid-uS3Si0llKO .header-text {
    padding: 1rem !important;
  }
  .cid-uS3Si0llKO .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uS3Si0llKO .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uS3Si0llKO .panel-group {
    padding: 0;
  }
}
.cid-uS3Si0llKO .header-text,
.cid-uS3Si0llKO .sign {
  color: #000000;
  text-align: left;
}
.cid-uS3Si0llKO .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uS3Siknt1q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3Siknt1q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uS3Siknt1q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uS3Siknt1q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uS3Siknt1q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uS3Siknt1q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uS3Siknt1q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uS3Siknt1q .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uS3Siknt1q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uS3Siknt1q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uS3SivqIow {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3SivqIow .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uS3SivqIow .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS3SiIMui5 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uS3SiIMui5 .image-block {
  margin: auto;
}
.cid-uS3SiIMui5 figcaption {
  position: relative;
}
.cid-uS3SiIMui5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uS3SiIMui5 .image-block {
    width: 100% !important;
  }
}
.cid-uS3Sj3LIhp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS3Sj3LIhp .mbr-section-subtitle {
  color: #767676;
}
.cid-uS3Sj3LIhp .container-table {
  margin: 0 auto;
}
.cid-uS3Sj3LIhp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uS3Sj3LIhp .dataTables_wrapper {
  display: block;
}
.cid-uS3Sj3LIhp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uS3Sj3LIhp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uS3Sj3LIhp table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uS3Sj3LIhp table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uS3Sj3LIhp table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uS3Sj3LIhp table td {
  border-top: 1px solid #cccccc;
}
.cid-uS3Sj3LIhp table.table {
  background: #ffffff;
}
.cid-uS3Sj3LIhp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uS3Sj3LIhp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uS3Sj3LIhp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uS3Sj3LIhp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uS3Sj3LIhp .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uS3Sj3LIhp .dataTables_filter {
    text-align: center;
  }
  .cid-uS3Sj3LIhp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uS3Sj3LIhp .head-item {
  text-align: center;
  color: #000000;
}
.cid-uS3Sj3LIhp .body-item {
  color: #000000;
  text-align: center;
}
.cid-uS4eDDRRMY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS4eDDRRMY .mbr-section-subtitle {
  color: #767676;
}
.cid-uS4eDDRRMY .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS3SjG4rjE .google-map {
  height: 25rem;
  position: relative;
}
.cid-uS3SjG4rjE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uS3SjG4rjE .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-uS3SjG4rjE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uS3SjG4rjE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uS3UdBVvgF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uS3UdBVvgF .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uS3UdBVvgF .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uS3UdBVvgF .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uS3UdBVvgF .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uS3UdBVvgF .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uS3UdBVvgF .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uS3UdBVvgF .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uS3UdBVvgF .btn-social {
  border: none !important;
}
.cid-uS3UdBVvgF [class^="socicon-"]:before,
.cid-uS3UdBVvgF [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uS3UdBVvgF .btn {
    font-size: 20px !important;
  }
}
.cid-uS3SkagTGz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS3SkagTGz .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uS3SkagTGz .media-wrap img {
  height: 6rem;
}
.cid-uS3SkagTGz .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS3SkagTGz .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uS3SkagTGz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uS3SkagTGz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uS3SkagTGz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uS3SkagTGz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uS3SkagTGz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uS3SkagTGz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uS3SkagTGz .links {
  color: #000000;
  text-align: right;
}
.cid-uS3SkagTGz .copyright > p {
  color: #000000;
}
.cid-uS3SlbbXvJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uS3SlbbXvJ .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uS4crw7dof .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uS4crw7dof .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uS4crw7dof a {
  font-style: normal;
}
.cid-uS4crw7dof .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uS4crw7dof .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uS4crw7dof .nav-item:focus,
.cid-uS4crw7dof .nav-link:focus {
  outline: none;
}
.cid-uS4crw7dof .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS4crw7dof .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uS4crw7dof .menu-logo {
  margin-right: auto;
}
.cid-uS4crw7dof .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS4crw7dof .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uS4crw7dof .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uS4crw7dof .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uS4crw7dof .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uS4crw7dof .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uS4crw7dof .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uS4crw7dof .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uS4crw7dof .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uS4crw7dof .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uS4crw7dof .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uS4crw7dof .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uS4crw7dof .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uS4crw7dof .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uS4crw7dof .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS4crw7dof .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uS4crw7dof .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uS4crw7dof .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uS4crw7dof .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uS4crw7dof .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uS4crw7dof .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uS4crw7dof .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uS4crw7dof button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uS4crw7dof button.navbar-toggler:focus {
  outline: none;
}
.cid-uS4crw7dof button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uS4crw7dof button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uS4crw7dof button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uS4crw7dof button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uS4crw7dof button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uS4crw7dof nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS4crw7dof nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uS4crw7dof nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uS4crw7dof nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS4crw7dof .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS4crw7dof .collapsed .btn {
  display: -webkit-flex;
}
.cid-uS4crw7dof .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uS4crw7dof .collapsed .navbar-collapse.collapsing,
.cid-uS4crw7dof .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uS4crw7dof .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uS4crw7dof .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uS4crw7dof .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uS4crw7dof .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uS4crw7dof .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uS4crw7dof .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uS4crw7dof .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uS4crw7dof .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uS4crw7dof .collapsed button.navbar-toggler {
  display: block;
}
.cid-uS4crw7dof .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uS4crw7dof .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS4crw7dof .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uS4crw7dof .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uS4crw7dof .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uS4crw7dof .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uS4crw7dof.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS4crw7dof img {
    height: 3.8rem !important;
  }
  .cid-uS4crw7dof .btn {
    display: -webkit-flex;
  }
  .cid-uS4crw7dof button.navbar-toggler {
    display: block;
  }
  .cid-uS4crw7dof .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uS4crw7dof .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS4crw7dof .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uS4crw7dof .navbar-collapse.collapsing,
  .cid-uS4crw7dof .navbar-collapse.show {
    display: block !important;
  }
  .cid-uS4crw7dof .navbar-collapse.collapsing .navbar-nav,
  .cid-uS4crw7dof .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uS4crw7dof .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uS4crw7dof .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uS4crw7dof .navbar-collapse.collapsing .navbar-buttons,
  .cid-uS4crw7dof .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uS4crw7dof .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uS4crw7dof .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uS4crw7dof .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uS4crw7dof .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uS4crw7dof .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uS4crw7dof .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uS4crw7dof .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uS4crw7dof .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uS4crw7dof .nav-link:hover,
.cid-uS4crw7dof .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uS4crwvGXh {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS4crwvGXh .mbr-section-subtitle {
  color: #000000;
}
.cid-uS4crwvGXh H2 {
  color: #000000;
}
.cid-uS4crwvGXh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uS4crwvGXh .inner-container {
    width: 100% !important;
  }
}
.cid-uS4crwvGXh H1 {
  color: #000000;
}
.cid-uS4crwEQ4q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uS4crwEQ4q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uS4crwEQ4q .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uS4crwEQ4q .mbr-text {
    text-align: center;
  }
}
.cid-uS4crwEQ4q .mbr-text,
.cid-uS4crwEQ4q .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uS4crwEQ4q H3 {
  color: #000000;
}
.cid-uS4crwEQ4q H1 {
  color: #000000;
}
.cid-uS4crwRgIj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS4crwRgIj .container-fluid {
  padding: 0 3rem;
}
.cid-uS4crwRgIj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uS4crwRgIj .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uS4crwRgIj .header-text {
  padding: 2rem 1rem !important;
}
.cid-uS4crwRgIj .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uS4crwRgIj .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uS4crwRgIj .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uS4crwRgIj .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uS4crwRgIj .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uS4crwRgIj .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uS4crwRgIj .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uS4crwRgIj .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uS4crwRgIj .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uS4crwRgIj .container-fluid {
    padding: 0 1rem;
  }
  .cid-uS4crwRgIj .header-text {
    padding: 1rem !important;
  }
  .cid-uS4crwRgIj .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uS4crwRgIj .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uS4crwRgIj .panel-group {
    padding: 0;
  }
}
.cid-uS4crwRgIj .header-text,
.cid-uS4crwRgIj .sign {
  color: #000000;
  text-align: left;
}
.cid-uS4crwRgIj .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uS4crx5SQ7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS4crx5SQ7 .mbr-text,
.cid-uS4crx5SQ7 blockquote {
  color: #767676;
}
.cid-uS4crx5SQ7 .mbr-text {
  color: #000000;
}
.cid-uS4crx5SQ7 .mbr-text P {
  text-align: justify;
}
.cid-uS4crxSXgn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS4crxSXgn .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uS4crxSXgn .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS4cry2XO3 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uS4cry2XO3 .image-block {
  margin: auto;
}
.cid-uS4cry2XO3 figcaption {
  position: relative;
}
.cid-uS4cry2XO3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uS4cry2XO3 .image-block {
    width: 100% !important;
  }
}
.cid-uS4crydXxd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS4crydXxd .mbr-section-subtitle {
  color: #767676;
}
.cid-uS4crydXxd .container-table {
  margin: 0 auto;
}
.cid-uS4crydXxd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uS4crydXxd .dataTables_wrapper {
  display: block;
}
.cid-uS4crydXxd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uS4crydXxd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uS4crydXxd table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uS4crydXxd table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uS4crydXxd table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uS4crydXxd table td {
  border-top: 1px solid #cccccc;
}
.cid-uS4crydXxd table.table {
  background: #ffffff;
}
.cid-uS4crydXxd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uS4crydXxd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uS4crydXxd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uS4crydXxd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uS4crydXxd .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uS4crydXxd .dataTables_filter {
    text-align: center;
  }
  .cid-uS4crydXxd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uS4crydXxd .head-item {
  text-align: center;
  color: #000000;
}
.cid-uS4crydXxd .body-item {
  color: #000000;
  text-align: center;
}
.cid-uS4eu4NlM7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS4eu4NlM7 .mbr-section-subtitle {
  color: #767676;
}
.cid-uS4eu4NlM7 .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS4cryKBjj .google-map {
  height: 25rem;
  position: relative;
}
.cid-uS4cryKBjj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uS4cryKBjj .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-uS4cryKBjj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uS4cryKBjj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uS4cryWaLw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uS4cryWaLw .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uS4cryWaLw .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uS4cryWaLw .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uS4cryWaLw .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uS4cryWaLw .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uS4cryWaLw .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uS4cryWaLw .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uS4cryWaLw .btn-social {
  border: none !important;
}
.cid-uS4cryWaLw [class^="socicon-"]:before,
.cid-uS4cryWaLw [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uS4cryWaLw .btn {
    font-size: 20px !important;
  }
}
.cid-uS4crzaAgj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uS4crzaAgj .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS4crzaAgj .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uS4crzaAgj .media-wrap img {
  height: 6rem;
}
.cid-uS4crzaAgj .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uS4crzaAgj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS4crzaAgj .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uS4crzaAgj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uS4crzaAgj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uS4crzaAgj .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uS4crzaAgj .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uS4crzaAgj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uS4crzaAgj .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uS4crzaAgj .links {
  color: #000000;
  text-align: right;
}
.cid-uS4crzaAgj .copyright > p {
  color: #000000;
}
.cid-uS4crzvQmj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uS4crzvQmj .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uS9DIPWppB .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uS9DIPWppB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uS9DIPWppB a {
  font-style: normal;
}
.cid-uS9DIPWppB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uS9DIPWppB .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uS9DIPWppB .nav-item:focus,
.cid-uS9DIPWppB .nav-link:focus {
  outline: none;
}
.cid-uS9DIPWppB .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS9DIPWppB .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uS9DIPWppB .menu-logo {
  margin-right: auto;
}
.cid-uS9DIPWppB .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS9DIPWppB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uS9DIPWppB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uS9DIPWppB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uS9DIPWppB .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uS9DIPWppB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uS9DIPWppB .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uS9DIPWppB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uS9DIPWppB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uS9DIPWppB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uS9DIPWppB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uS9DIPWppB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uS9DIPWppB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uS9DIPWppB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uS9DIPWppB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS9DIPWppB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uS9DIPWppB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uS9DIPWppB .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uS9DIPWppB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uS9DIPWppB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uS9DIPWppB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uS9DIPWppB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uS9DIPWppB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uS9DIPWppB button.navbar-toggler:focus {
  outline: none;
}
.cid-uS9DIPWppB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uS9DIPWppB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uS9DIPWppB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uS9DIPWppB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uS9DIPWppB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uS9DIPWppB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS9DIPWppB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uS9DIPWppB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uS9DIPWppB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS9DIPWppB .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS9DIPWppB .collapsed .btn {
  display: -webkit-flex;
}
.cid-uS9DIPWppB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uS9DIPWppB .collapsed .navbar-collapse.collapsing,
.cid-uS9DIPWppB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uS9DIPWppB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uS9DIPWppB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uS9DIPWppB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uS9DIPWppB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uS9DIPWppB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uS9DIPWppB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uS9DIPWppB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uS9DIPWppB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uS9DIPWppB .collapsed button.navbar-toggler {
  display: block;
}
.cid-uS9DIPWppB .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uS9DIPWppB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS9DIPWppB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uS9DIPWppB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uS9DIPWppB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uS9DIPWppB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uS9DIPWppB.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS9DIPWppB img {
    height: 3.8rem !important;
  }
  .cid-uS9DIPWppB .btn {
    display: -webkit-flex;
  }
  .cid-uS9DIPWppB button.navbar-toggler {
    display: block;
  }
  .cid-uS9DIPWppB .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uS9DIPWppB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS9DIPWppB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uS9DIPWppB .navbar-collapse.collapsing,
  .cid-uS9DIPWppB .navbar-collapse.show {
    display: block !important;
  }
  .cid-uS9DIPWppB .navbar-collapse.collapsing .navbar-nav,
  .cid-uS9DIPWppB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uS9DIPWppB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uS9DIPWppB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uS9DIPWppB .navbar-collapse.collapsing .navbar-buttons,
  .cid-uS9DIPWppB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uS9DIPWppB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uS9DIPWppB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uS9DIPWppB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uS9DIPWppB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uS9DIPWppB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uS9DIPWppB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uS9DIPWppB .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uS9DIPWppB .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uS9DIPWppB .nav-link:hover,
.cid-uS9DIPWppB .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uS9DIQjdLd {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DIQjdLd .mbr-section-subtitle {
  color: #000000;
}
.cid-uS9DIQjdLd H2 {
  color: #000000;
}
.cid-uS9DIQjdLd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uS9DIQjdLd .inner-container {
    width: 100% !important;
  }
}
.cid-uS9DIQjdLd H1 {
  color: #000000;
}
.cid-uS9DIQt3FO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uS9DIQt3FO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uS9DIQt3FO .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9DIQt3FO .mbr-text {
    text-align: center;
  }
}
.cid-uS9DIQt3FO .mbr-text,
.cid-uS9DIQt3FO .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uS9DIQt3FO H3 {
  color: #000000;
}
.cid-uS9DIQt3FO H1 {
  color: #000000;
}
.cid-uS9DIQMqJd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DIQMqJd .container-fluid {
  padding: 0 3rem;
}
.cid-uS9DIQMqJd .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uS9DIQMqJd .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uS9DIQMqJd .header-text {
  padding: 2rem 1rem !important;
}
.cid-uS9DIQMqJd .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uS9DIQMqJd .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uS9DIQMqJd .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uS9DIQMqJd .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uS9DIQMqJd .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uS9DIQMqJd .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uS9DIQMqJd .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uS9DIQMqJd .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uS9DIQMqJd .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uS9DIQMqJd .container-fluid {
    padding: 0 1rem;
  }
  .cid-uS9DIQMqJd .header-text {
    padding: 1rem !important;
  }
  .cid-uS9DIQMqJd .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uS9DIQMqJd .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uS9DIQMqJd .panel-group {
    padding: 0;
  }
}
.cid-uS9DIQMqJd .header-text,
.cid-uS9DIQMqJd .sign {
  color: #000000;
  text-align: left;
}
.cid-uS9DIQMqJd .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uS9DIR3YkK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DIR3YkK .mbr-text,
.cid-uS9DIR3YkK blockquote {
  color: #767676;
}
.cid-uS9DIR3YkK .mbr-text {
  color: #000000;
}
.cid-uS9DIR3YkK .mbr-text P {
  text-align: justify;
}
.cid-uS9DIRdcQy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DIRdcQy .container-fluid {
  padding: 0 3rem;
}
.cid-uS9DIRdcQy .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uS9DIRdcQy .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uS9DIRdcQy .header-text {
  padding: 2rem 1rem !important;
}
.cid-uS9DIRdcQy .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uS9DIRdcQy .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uS9DIRdcQy .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uS9DIRdcQy .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uS9DIRdcQy .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uS9DIRdcQy .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uS9DIRdcQy .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uS9DIRdcQy .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uS9DIRdcQy .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uS9DIRdcQy .container-fluid {
    padding: 0 1rem;
  }
  .cid-uS9DIRdcQy .header-text {
    padding: 1rem !important;
  }
  .cid-uS9DIRdcQy .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uS9DIRdcQy .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uS9DIRdcQy .panel-group {
    padding: 0;
  }
}
.cid-uS9DIRdcQy .header-text,
.cid-uS9DIRdcQy .sign {
  color: #000000;
  text-align: left;
}
.cid-uS9DIRdcQy .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uS9DIRv0e4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DIRv0e4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uS9DIRv0e4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uS9DIRv0e4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uS9DIRv0e4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uS9DIRv0e4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uS9DIRv0e4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uS9DIRv0e4 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uS9DIRv0e4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uS9DIRv0e4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uS9DIRM71T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DIRM71T .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uS9DIRM71T .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS9YQdmW0R {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uS9YQdmW0R .image-block {
  margin: auto;
}
.cid-uS9YQdmW0R figcaption {
  position: relative;
}
.cid-uS9YQdmW0R figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uS9YQdmW0R .image-block {
    width: 100% !important;
  }
}
.cid-uS9DIS6xFC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DIS6xFC .mbr-section-subtitle {
  color: #767676;
}
.cid-uS9DIS6xFC .container-table {
  margin: 0 auto;
}
.cid-uS9DIS6xFC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uS9DIS6xFC .dataTables_wrapper {
  display: block;
}
.cid-uS9DIS6xFC .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uS9DIS6xFC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uS9DIS6xFC table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uS9DIS6xFC table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uS9DIS6xFC table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uS9DIS6xFC table td {
  border-top: 1px solid #cccccc;
}
.cid-uS9DIS6xFC table.table {
  background: #ffffff;
}
.cid-uS9DIS6xFC .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uS9DIS6xFC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uS9DIS6xFC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uS9DIS6xFC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uS9DIS6xFC .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uS9DIS6xFC .dataTables_filter {
    text-align: center;
  }
  .cid-uS9DIS6xFC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uS9DIS6xFC .head-item {
  text-align: center;
  color: #000000;
}
.cid-uS9DIS6xFC .body-item {
  color: #000000;
  text-align: center;
}
.cid-uS9DISCCqQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9DISCCqQ .mbr-section-subtitle {
  color: #767676;
}
.cid-uS9DISCCqQ .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS9DISO4Yf .google-map {
  height: 25rem;
  position: relative;
}
.cid-uS9DISO4Yf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uS9DISO4Yf .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-uS9DISO4Yf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uS9DISO4Yf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uS9DIT0szi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uS9DIT0szi .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uS9DIT0szi .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uS9DIT0szi .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uS9DIT0szi .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uS9DIT0szi .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uS9DIT0szi .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uS9DIT0szi .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uS9DIT0szi .btn-social {
  border: none !important;
}
.cid-uS9DIT0szi [class^="socicon-"]:before,
.cid-uS9DIT0szi [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uS9DIT0szi .btn {
    font-size: 20px !important;
  }
}
.cid-uS9DITdt05 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uS9DITdt05 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS9DITdt05 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uS9DITdt05 .media-wrap img {
  height: 6rem;
}
.cid-uS9DITdt05 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uS9DITdt05 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS9DITdt05 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uS9DITdt05 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uS9DITdt05 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uS9DITdt05 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uS9DITdt05 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uS9DITdt05 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uS9DITdt05 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uS9DITdt05 .links {
  color: #000000;
  text-align: right;
}
.cid-uS9DITdt05 .copyright > p {
  color: #000000;
}
.cid-uS9DITMXiI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uS9DITMXiI .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uS9SBlUfsm .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uS9SBlUfsm .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uS9SBlUfsm a {
  font-style: normal;
}
.cid-uS9SBlUfsm .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uS9SBlUfsm .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uS9SBlUfsm .nav-item:focus,
.cid-uS9SBlUfsm .nav-link:focus {
  outline: none;
}
.cid-uS9SBlUfsm .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS9SBlUfsm .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uS9SBlUfsm .menu-logo {
  margin-right: auto;
}
.cid-uS9SBlUfsm .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uS9SBlUfsm .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uS9SBlUfsm .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uS9SBlUfsm .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uS9SBlUfsm .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uS9SBlUfsm .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uS9SBlUfsm .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uS9SBlUfsm .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uS9SBlUfsm .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uS9SBlUfsm .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uS9SBlUfsm .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uS9SBlUfsm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uS9SBlUfsm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uS9SBlUfsm .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uS9SBlUfsm .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS9SBlUfsm .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uS9SBlUfsm .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uS9SBlUfsm .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uS9SBlUfsm .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uS9SBlUfsm .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uS9SBlUfsm .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uS9SBlUfsm .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uS9SBlUfsm button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uS9SBlUfsm button.navbar-toggler:focus {
  outline: none;
}
.cid-uS9SBlUfsm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uS9SBlUfsm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uS9SBlUfsm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uS9SBlUfsm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uS9SBlUfsm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uS9SBlUfsm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS9SBlUfsm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uS9SBlUfsm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uS9SBlUfsm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uS9SBlUfsm .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS9SBlUfsm .collapsed .btn {
  display: -webkit-flex;
}
.cid-uS9SBlUfsm .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uS9SBlUfsm .collapsed .navbar-collapse.collapsing,
.cid-uS9SBlUfsm .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uS9SBlUfsm .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uS9SBlUfsm .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uS9SBlUfsm .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uS9SBlUfsm .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uS9SBlUfsm .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uS9SBlUfsm .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uS9SBlUfsm .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uS9SBlUfsm .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uS9SBlUfsm .collapsed button.navbar-toggler {
  display: block;
}
.cid-uS9SBlUfsm .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uS9SBlUfsm .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uS9SBlUfsm .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uS9SBlUfsm .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uS9SBlUfsm .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uS9SBlUfsm .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uS9SBlUfsm.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS9SBlUfsm img {
    height: 3.8rem !important;
  }
  .cid-uS9SBlUfsm .btn {
    display: -webkit-flex;
  }
  .cid-uS9SBlUfsm button.navbar-toggler {
    display: block;
  }
  .cid-uS9SBlUfsm .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uS9SBlUfsm .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uS9SBlUfsm .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uS9SBlUfsm .navbar-collapse.collapsing,
  .cid-uS9SBlUfsm .navbar-collapse.show {
    display: block !important;
  }
  .cid-uS9SBlUfsm .navbar-collapse.collapsing .navbar-nav,
  .cid-uS9SBlUfsm .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uS9SBlUfsm .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uS9SBlUfsm .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uS9SBlUfsm .navbar-collapse.collapsing .navbar-buttons,
  .cid-uS9SBlUfsm .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uS9SBlUfsm .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uS9SBlUfsm .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uS9SBlUfsm .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uS9SBlUfsm .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uS9SBlUfsm .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uS9SBlUfsm .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uS9SBlUfsm .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uS9SBlUfsm .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uS9SBlUfsm .nav-link:hover,
.cid-uS9SBlUfsm .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uS9SBmhJeb {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9SBmhJeb .mbr-section-subtitle {
  color: #000000;
}
.cid-uS9SBmhJeb H2 {
  color: #000000;
}
.cid-uS9SBmhJeb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uS9SBmhJeb .inner-container {
    width: 100% !important;
  }
}
.cid-uS9SBmhJeb H1 {
  color: #000000;
}
.cid-uS9SBmsaF1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uS9SBmsaF1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uS9SBmsaF1 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uS9SBmsaF1 .mbr-text {
    text-align: center;
  }
}
.cid-uS9SBmsaF1 .mbr-text,
.cid-uS9SBmsaF1 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uS9SBmsaF1 H3 {
  color: #000000;
}
.cid-uS9SBmsaF1 H1 {
  color: #000000;
}
.cid-uS9SBmGma2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9SBmGma2 .container-fluid {
  padding: 0 3rem;
}
.cid-uS9SBmGma2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uS9SBmGma2 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uS9SBmGma2 .header-text {
  padding: 2rem 1rem !important;
}
.cid-uS9SBmGma2 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uS9SBmGma2 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uS9SBmGma2 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uS9SBmGma2 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uS9SBmGma2 .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uS9SBmGma2 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uS9SBmGma2 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uS9SBmGma2 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uS9SBmGma2 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uS9SBmGma2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uS9SBmGma2 .header-text {
    padding: 1rem !important;
  }
  .cid-uS9SBmGma2 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uS9SBmGma2 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uS9SBmGma2 .panel-group {
    padding: 0;
  }
}
.cid-uS9SBmGma2 .header-text,
.cid-uS9SBmGma2 .sign {
  color: #000000;
  text-align: left;
}
.cid-uS9SBmGma2 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uS9SBmXzHj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9SBmXzHj .mbr-text,
.cid-uS9SBmXzHj blockquote {
  color: #767676;
}
.cid-uS9SBmXzHj .mbr-text {
  color: #000000;
}
.cid-uS9SBmXzHj .mbr-text P {
  text-align: justify;
}
.cid-uS9SBnCAJE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9SBnCAJE .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uS9SBnCAJE .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS9ZtgH72T {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uS9ZtgH72T .image-block {
  margin: auto;
}
.cid-uS9ZtgH72T figcaption {
  position: relative;
}
.cid-uS9ZtgH72T figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uS9ZtgH72T .image-block {
    width: 100% !important;
  }
}
.cid-uS9SBnXIHy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9SBnXIHy .mbr-section-subtitle {
  color: #767676;
}
.cid-uS9SBnXIHy .container-table {
  margin: 0 auto;
}
.cid-uS9SBnXIHy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uS9SBnXIHy .dataTables_wrapper {
  display: block;
}
.cid-uS9SBnXIHy .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uS9SBnXIHy .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uS9SBnXIHy table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uS9SBnXIHy table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uS9SBnXIHy table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uS9SBnXIHy table td {
  border-top: 1px solid #cccccc;
}
.cid-uS9SBnXIHy table.table {
  background: #ffffff;
}
.cid-uS9SBnXIHy .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uS9SBnXIHy .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uS9SBnXIHy .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uS9SBnXIHy .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uS9SBnXIHy .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uS9SBnXIHy .dataTables_filter {
    text-align: center;
  }
  .cid-uS9SBnXIHy .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uS9SBnXIHy .head-item {
  text-align: center;
  color: #000000;
}
.cid-uS9SBnXIHy .body-item {
  color: #000000;
  text-align: center;
}
.cid-uS9SBoMrNP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uS9SBoMrNP .mbr-section-subtitle {
  color: #767676;
}
.cid-uS9SBoMrNP .mbr-section-subtitle U {
  color: #000000;
}
.cid-uS9SBoVESM .google-map {
  height: 25rem;
  position: relative;
}
.cid-uS9SBoVESM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uS9SBoVESM .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-uS9SBoVESM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uS9SBoVESM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uS9SBp781o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uS9SBp781o .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uS9SBp781o .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uS9SBp781o .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uS9SBp781o .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uS9SBp781o .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uS9SBp781o .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uS9SBp781o .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uS9SBp781o .btn-social {
  border: none !important;
}
.cid-uS9SBp781o [class^="socicon-"]:before,
.cid-uS9SBp781o [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uS9SBp781o .btn {
    font-size: 20px !important;
  }
}
.cid-uS9SBpkTuA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uS9SBpkTuA .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS9SBpkTuA .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uS9SBpkTuA .media-wrap img {
  height: 6rem;
}
.cid-uS9SBpkTuA .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uS9SBpkTuA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uS9SBpkTuA .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uS9SBpkTuA .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uS9SBpkTuA .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uS9SBpkTuA .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uS9SBpkTuA .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uS9SBpkTuA .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uS9SBpkTuA .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uS9SBpkTuA .links {
  color: #000000;
  text-align: right;
}
.cid-uS9SBpkTuA .copyright > p {
  color: #000000;
}
.cid-uS9SBpD22L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uS9SBpD22L .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uSxa4Dlhpn .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uSxa4Dlhpn .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uSxa4Dlhpn a {
  font-style: normal;
}
.cid-uSxa4Dlhpn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uSxa4Dlhpn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uSxa4Dlhpn .nav-item:focus,
.cid-uSxa4Dlhpn .nav-link:focus {
  outline: none;
}
.cid-uSxa4Dlhpn .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uSxa4Dlhpn .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uSxa4Dlhpn .menu-logo {
  margin-right: auto;
}
.cid-uSxa4Dlhpn .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uSxa4Dlhpn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uSxa4Dlhpn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uSxa4Dlhpn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uSxa4Dlhpn .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uSxa4Dlhpn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uSxa4Dlhpn .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uSxa4Dlhpn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uSxa4Dlhpn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSxa4Dlhpn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uSxa4Dlhpn .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uSxa4Dlhpn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uSxa4Dlhpn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSxa4Dlhpn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uSxa4Dlhpn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSxa4Dlhpn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uSxa4Dlhpn .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uSxa4Dlhpn .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uSxa4Dlhpn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uSxa4Dlhpn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uSxa4Dlhpn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uSxa4Dlhpn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uSxa4Dlhpn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uSxa4Dlhpn button.navbar-toggler:focus {
  outline: none;
}
.cid-uSxa4Dlhpn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSxa4Dlhpn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSxa4Dlhpn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSxa4Dlhpn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSxa4Dlhpn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSxa4Dlhpn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSxa4Dlhpn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uSxa4Dlhpn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uSxa4Dlhpn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSxa4Dlhpn .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uSxa4Dlhpn .collapsed .btn {
  display: -webkit-flex;
}
.cid-uSxa4Dlhpn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.collapsing,
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uSxa4Dlhpn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uSxa4Dlhpn .collapsed button.navbar-toggler {
  display: block;
}
.cid-uSxa4Dlhpn .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uSxa4Dlhpn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uSxa4Dlhpn .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uSxa4Dlhpn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uSxa4Dlhpn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uSxa4Dlhpn .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uSxa4Dlhpn.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uSxa4Dlhpn img {
    height: 3.8rem !important;
  }
  .cid-uSxa4Dlhpn .btn {
    display: -webkit-flex;
  }
  .cid-uSxa4Dlhpn button.navbar-toggler {
    display: block;
  }
  .cid-uSxa4Dlhpn .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uSxa4Dlhpn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uSxa4Dlhpn .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uSxa4Dlhpn .navbar-collapse.collapsing,
  .cid-uSxa4Dlhpn .navbar-collapse.show {
    display: block !important;
  }
  .cid-uSxa4Dlhpn .navbar-collapse.collapsing .navbar-nav,
  .cid-uSxa4Dlhpn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uSxa4Dlhpn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uSxa4Dlhpn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uSxa4Dlhpn .navbar-collapse.collapsing .navbar-buttons,
  .cid-uSxa4Dlhpn .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uSxa4Dlhpn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uSxa4Dlhpn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uSxa4Dlhpn .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uSxa4Dlhpn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uSxa4Dlhpn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uSxa4Dlhpn .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uSxa4Dlhpn .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uSxa4Dlhpn .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uSxa4Dlhpn .nav-link:hover,
.cid-uSxa4Dlhpn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uSxa4DNVsx {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSxa4DNVsx .mbr-section-subtitle {
  color: #000000;
}
.cid-uSxa4DNVsx H2 {
  color: #000000;
}
.cid-uSxa4DNVsx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uSxa4DNVsx .inner-container {
    width: 100% !important;
  }
}
.cid-uSxa4DNVsx H1 {
  color: #000000;
}
.cid-uSxaKp5Jva {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uSxaKp5Jva .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uSxaKp5Jva .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSxaKp5Jva .mbr-text {
    text-align: center;
  }
}
.cid-uSxaKp5Jva .mbr-text,
.cid-uSxaKp5Jva .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uSxaKp5Jva H3 {
  color: #000000;
}
.cid-uSxaKp5Jva H1 {
  color: #000000;
}
.cid-uSxaL9WYbR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSxaL9WYbR .container-fluid {
  padding: 0 3rem;
}
.cid-uSxaL9WYbR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uSxaL9WYbR .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uSxaL9WYbR .header-text {
  padding: 2rem 1rem !important;
}
.cid-uSxaL9WYbR .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uSxaL9WYbR .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uSxaL9WYbR .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uSxaL9WYbR .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uSxaL9WYbR .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uSxaL9WYbR .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uSxaL9WYbR .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uSxaL9WYbR .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uSxaL9WYbR .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uSxaL9WYbR .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSxaL9WYbR .header-text {
    padding: 1rem !important;
  }
  .cid-uSxaL9WYbR .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uSxaL9WYbR .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uSxaL9WYbR .panel-group {
    padding: 0;
  }
}
.cid-uSxaL9WYbR .header-text,
.cid-uSxaL9WYbR .sign {
  color: #000000;
  text-align: left;
}
.cid-uSxaL9WYbR .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uSxaLOlNnR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSxaLOlNnR .mbr-text,
.cid-uSxaLOlNnR blockquote {
  color: #767676;
}
.cid-uSxaLOlNnR .mbr-text {
  color: #000000;
}
.cid-uSxaLOlNnR .mbr-text P {
  text-align: justify;
}
.cid-uSxaNy6Pda {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSxaNy6Pda .container-fluid {
  padding: 0 3rem;
}
.cid-uSxaNy6Pda .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uSxaNy6Pda .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uSxaNy6Pda .header-text {
  padding: 2rem 1rem !important;
}
.cid-uSxaNy6Pda .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uSxaNy6Pda .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uSxaNy6Pda .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uSxaNy6Pda .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uSxaNy6Pda .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uSxaNy6Pda .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uSxaNy6Pda .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uSxaNy6Pda .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uSxaNy6Pda .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uSxaNy6Pda .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSxaNy6Pda .header-text {
    padding: 1rem !important;
  }
  .cid-uSxaNy6Pda .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uSxaNy6Pda .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uSxaNy6Pda .panel-group {
    padding: 0;
  }
}
.cid-uSxaNy6Pda .header-text,
.cid-uSxaNy6Pda .sign {
  color: #000000;
  text-align: left;
}
.cid-uSxaNy6Pda .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uSxaOPOQjg {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uSxaOPOQjg .mbr-section-subtitle {
  color: #767676;
}
.cid-uSxaOPOQjg .mbr-section-subtitle U {
  color: #000000;
}
.cid-uSxaPSeCXk .google-map {
  height: 25rem;
  position: relative;
}
.cid-uSxaPSeCXk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uSxaPSeCXk .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-uSxaPSeCXk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uSxaPSeCXk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uSxa4G9gL7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uSxa4G9gL7 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uSxa4G9gL7 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uSxa4G9gL7 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uSxa4G9gL7 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uSxa4G9gL7 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uSxa4G9gL7 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uSxa4G9gL7 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uSxa4G9gL7 .btn-social {
  border: none !important;
}
.cid-uSxa4G9gL7 [class^="socicon-"]:before,
.cid-uSxa4G9gL7 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uSxa4G9gL7 .btn {
    font-size: 20px !important;
  }
}
.cid-uSxa4GktXL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSxa4GktXL .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uSxa4GktXL .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uSxa4GktXL .media-wrap img {
  height: 6rem;
}
.cid-uSxa4GktXL .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uSxa4GktXL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uSxa4GktXL .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uSxa4GktXL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uSxa4GktXL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uSxa4GktXL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uSxa4GktXL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uSxa4GktXL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uSxa4GktXL .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uSxa4GktXL .links {
  color: #000000;
  text-align: right;
}
.cid-uSxa4GktXL .copyright > p {
  color: #000000;
}
.cid-uSxa4GDyzn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uSxa4GDyzn .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uSIl7OCUtw .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uSIl7OCUtw .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uSIl7OCUtw a {
  font-style: normal;
}
.cid-uSIl7OCUtw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uSIl7OCUtw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uSIl7OCUtw .nav-item:focus,
.cid-uSIl7OCUtw .nav-link:focus {
  outline: none;
}
.cid-uSIl7OCUtw .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uSIl7OCUtw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uSIl7OCUtw .menu-logo {
  margin-right: auto;
}
.cid-uSIl7OCUtw .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uSIl7OCUtw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uSIl7OCUtw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uSIl7OCUtw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uSIl7OCUtw .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uSIl7OCUtw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uSIl7OCUtw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uSIl7OCUtw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uSIl7OCUtw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSIl7OCUtw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uSIl7OCUtw .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uSIl7OCUtw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uSIl7OCUtw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSIl7OCUtw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uSIl7OCUtw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSIl7OCUtw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uSIl7OCUtw .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uSIl7OCUtw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uSIl7OCUtw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uSIl7OCUtw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uSIl7OCUtw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uSIl7OCUtw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uSIl7OCUtw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uSIl7OCUtw button.navbar-toggler:focus {
  outline: none;
}
.cid-uSIl7OCUtw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uSIl7OCUtw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSIl7OCUtw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSIl7OCUtw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSIl7OCUtw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSIl7OCUtw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSIl7OCUtw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uSIl7OCUtw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uSIl7OCUtw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSIl7OCUtw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uSIl7OCUtw .collapsed .btn {
  display: -webkit-flex;
}
.cid-uSIl7OCUtw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uSIl7OCUtw .collapsed .navbar-collapse.collapsing,
.cid-uSIl7OCUtw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uSIl7OCUtw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uSIl7OCUtw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uSIl7OCUtw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uSIl7OCUtw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uSIl7OCUtw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uSIl7OCUtw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uSIl7OCUtw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uSIl7OCUtw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uSIl7OCUtw .collapsed button.navbar-toggler {
  display: block;
}
.cid-uSIl7OCUtw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uSIl7OCUtw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uSIl7OCUtw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uSIl7OCUtw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uSIl7OCUtw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uSIl7OCUtw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uSIl7OCUtw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uSIl7OCUtw img {
    height: 3.8rem !important;
  }
  .cid-uSIl7OCUtw .btn {
    display: -webkit-flex;
  }
  .cid-uSIl7OCUtw button.navbar-toggler {
    display: block;
  }
  .cid-uSIl7OCUtw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uSIl7OCUtw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uSIl7OCUtw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uSIl7OCUtw .navbar-collapse.collapsing,
  .cid-uSIl7OCUtw .navbar-collapse.show {
    display: block !important;
  }
  .cid-uSIl7OCUtw .navbar-collapse.collapsing .navbar-nav,
  .cid-uSIl7OCUtw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uSIl7OCUtw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uSIl7OCUtw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uSIl7OCUtw .navbar-collapse.collapsing .navbar-buttons,
  .cid-uSIl7OCUtw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uSIl7OCUtw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uSIl7OCUtw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uSIl7OCUtw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uSIl7OCUtw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uSIl7OCUtw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uSIl7OCUtw .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uSIl7OCUtw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uSIl7OCUtw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uSIl7OCUtw .nav-link:hover,
.cid-uSIl7OCUtw .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uSIl7OZPGk {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSIl7OZPGk .mbr-section-subtitle {
  color: #000000;
}
.cid-uSIl7OZPGk H2 {
  color: #000000;
}
.cid-uSIl7OZPGk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uSIl7OZPGk .inner-container {
    width: 100% !important;
  }
}
.cid-uSIl7OZPGk H1 {
  color: #000000;
}
.cid-uSIl7P8HwB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uSIl7P8HwB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uSIl7P8HwB .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSIl7P8HwB .mbr-text {
    text-align: center;
  }
}
.cid-uSIl7P8HwB .mbr-text,
.cid-uSIl7P8HwB .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uSIl7P8HwB H3 {
  color: #000000;
}
.cid-uSIl7P8HwB H1 {
  color: #000000;
}
.cid-uSIrhe3tvs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSIrhe3tvs .container-fluid {
  padding: 0 3rem;
}
.cid-uSIrhe3tvs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uSIrhe3tvs .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uSIrhe3tvs .header-text {
  padding: 2rem 1rem !important;
}
.cid-uSIrhe3tvs .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uSIrhe3tvs .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uSIrhe3tvs .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uSIrhe3tvs .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uSIrhe3tvs .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uSIrhe3tvs .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uSIrhe3tvs .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uSIrhe3tvs .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uSIrhe3tvs .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uSIrhe3tvs .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSIrhe3tvs .header-text {
    padding: 1rem !important;
  }
  .cid-uSIrhe3tvs .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uSIrhe3tvs .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uSIrhe3tvs .panel-group {
    padding: 0;
  }
}
.cid-uSIrhe3tvs .header-text,
.cid-uSIrhe3tvs .sign {
  color: #000000;
  text-align: left;
}
.cid-uSIrhe3tvs .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uSIl7PB8eH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSIl7PB8eH .mbr-text,
.cid-uSIl7PB8eH blockquote {
  color: #767676;
}
.cid-uSIl7PB8eH .mbr-text {
  color: #000000;
}
.cid-uSIl7PB8eH .mbr-text P {
  text-align: justify;
}
.cid-uSIl7PJT3c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSIl7PJT3c .container-fluid {
  padding: 0 3rem;
}
.cid-uSIl7PJT3c .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uSIl7PJT3c .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uSIl7PJT3c .header-text {
  padding: 2rem 1rem !important;
}
.cid-uSIl7PJT3c .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uSIl7PJT3c .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uSIl7PJT3c .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uSIl7PJT3c .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uSIl7PJT3c .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uSIl7PJT3c .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uSIl7PJT3c .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uSIl7PJT3c .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uSIl7PJT3c .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uSIl7PJT3c .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSIl7PJT3c .header-text {
    padding: 1rem !important;
  }
  .cid-uSIl7PJT3c .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uSIl7PJT3c .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uSIl7PJT3c .panel-group {
    padding: 0;
  }
}
.cid-uSIl7PJT3c .header-text,
.cid-uSIl7PJT3c .sign {
  color: #000000;
  text-align: left;
}
.cid-uSIl7PJT3c .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uSIl7RcBbD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSIl7RcBbD .mbr-section-subtitle {
  color: #767676;
}
.cid-uSIl7RcBbD .mbr-section-subtitle U {
  color: #000000;
}
.cid-uSIl7RmNy5 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uSIl7RmNy5 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uSIl7RmNy5 .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-uSIl7RmNy5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uSIl7RmNy5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uSIl7RwWHX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uSIl7RwWHX .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uSIl7RwWHX .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uSIl7RwWHX .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uSIl7RwWHX .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uSIl7RwWHX .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uSIl7RwWHX .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uSIl7RwWHX .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uSIl7RwWHX .btn-social {
  border: none !important;
}
.cid-uSIl7RwWHX [class^="socicon-"]:before,
.cid-uSIl7RwWHX [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uSIl7RwWHX .btn {
    font-size: 20px !important;
  }
}
.cid-uSIl7RJt08 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uSIl7RJt08 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uSIl7RJt08 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uSIl7RJt08 .media-wrap img {
  height: 6rem;
}
.cid-uSIl7RJt08 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uSIl7RJt08 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uSIl7RJt08 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uSIl7RJt08 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uSIl7RJt08 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uSIl7RJt08 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uSIl7RJt08 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uSIl7RJt08 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uSIl7RJt08 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uSIl7RJt08 .links {
  color: #000000;
  text-align: right;
}
.cid-uSIl7RJt08 .copyright > p {
  color: #000000;
}
.cid-uSIl7S0zTd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uSIl7S0zTd .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uTF4FWTdJt .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uTF4FWTdJt .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uTF4FWTdJt a {
  font-style: normal;
}
.cid-uTF4FWTdJt .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uTF4FWTdJt .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uTF4FWTdJt .nav-item:focus,
.cid-uTF4FWTdJt .nav-link:focus {
  outline: none;
}
.cid-uTF4FWTdJt .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uTF4FWTdJt .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uTF4FWTdJt .menu-logo {
  margin-right: auto;
}
.cid-uTF4FWTdJt .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uTF4FWTdJt .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uTF4FWTdJt .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uTF4FWTdJt .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uTF4FWTdJt .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uTF4FWTdJt .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uTF4FWTdJt .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uTF4FWTdJt .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uTF4FWTdJt .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uTF4FWTdJt .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uTF4FWTdJt .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uTF4FWTdJt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uTF4FWTdJt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTF4FWTdJt .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uTF4FWTdJt .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTF4FWTdJt .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uTF4FWTdJt .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uTF4FWTdJt .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uTF4FWTdJt .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uTF4FWTdJt .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uTF4FWTdJt .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uTF4FWTdJt .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uTF4FWTdJt button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uTF4FWTdJt button.navbar-toggler:focus {
  outline: none;
}
.cid-uTF4FWTdJt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTF4FWTdJt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uTF4FWTdJt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uTF4FWTdJt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uTF4FWTdJt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uTF4FWTdJt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uTF4FWTdJt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uTF4FWTdJt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uTF4FWTdJt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uTF4FWTdJt .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uTF4FWTdJt .collapsed .btn {
  display: -webkit-flex;
}
.cid-uTF4FWTdJt .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uTF4FWTdJt .collapsed .navbar-collapse.collapsing,
.cid-uTF4FWTdJt .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uTF4FWTdJt .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uTF4FWTdJt .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uTF4FWTdJt .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uTF4FWTdJt .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uTF4FWTdJt .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uTF4FWTdJt .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uTF4FWTdJt .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uTF4FWTdJt .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uTF4FWTdJt .collapsed button.navbar-toggler {
  display: block;
}
.cid-uTF4FWTdJt .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uTF4FWTdJt .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uTF4FWTdJt .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uTF4FWTdJt .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uTF4FWTdJt .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uTF4FWTdJt .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uTF4FWTdJt.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uTF4FWTdJt img {
    height: 3.8rem !important;
  }
  .cid-uTF4FWTdJt .btn {
    display: -webkit-flex;
  }
  .cid-uTF4FWTdJt button.navbar-toggler {
    display: block;
  }
  .cid-uTF4FWTdJt .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uTF4FWTdJt .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uTF4FWTdJt .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uTF4FWTdJt .navbar-collapse.collapsing,
  .cid-uTF4FWTdJt .navbar-collapse.show {
    display: block !important;
  }
  .cid-uTF4FWTdJt .navbar-collapse.collapsing .navbar-nav,
  .cid-uTF4FWTdJt .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uTF4FWTdJt .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uTF4FWTdJt .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uTF4FWTdJt .navbar-collapse.collapsing .navbar-buttons,
  .cid-uTF4FWTdJt .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uTF4FWTdJt .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uTF4FWTdJt .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uTF4FWTdJt .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uTF4FWTdJt .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uTF4FWTdJt .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uTF4FWTdJt .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uTF4FWTdJt .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uTF4FWTdJt .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uTF4FWTdJt .nav-link:hover,
.cid-uTF4FWTdJt .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uTF4FXeNtS {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FXeNtS .mbr-section-subtitle {
  color: #000000;
}
.cid-uTF4FXeNtS H2 {
  color: #000000;
}
.cid-uTF4FXeNtS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uTF4FXeNtS .inner-container {
    width: 100% !important;
  }
}
.cid-uTF4FXeNtS H1 {
  color: #000000;
}
.cid-uTF4FXmH4Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uTF4FXmH4Q .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uTF4FXmH4Q .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uTF4FXmH4Q .mbr-text {
    text-align: center;
  }
}
.cid-uTF4FXmH4Q .mbr-text,
.cid-uTF4FXmH4Q .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uTF4FXmH4Q H3 {
  color: #000000;
}
.cid-uTF4FXmH4Q H1 {
  color: #000000;
}
.cid-uTF4FXyhmq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FXyhmq .container-fluid {
  padding: 0 3rem;
}
.cid-uTF4FXyhmq .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uTF4FXyhmq .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uTF4FXyhmq .header-text {
  padding: 2rem 1rem !important;
}
.cid-uTF4FXyhmq .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uTF4FXyhmq .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uTF4FXyhmq .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uTF4FXyhmq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uTF4FXyhmq .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uTF4FXyhmq .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uTF4FXyhmq .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uTF4FXyhmq .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uTF4FXyhmq .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uTF4FXyhmq .container-fluid {
    padding: 0 1rem;
  }
  .cid-uTF4FXyhmq .header-text {
    padding: 1rem !important;
  }
  .cid-uTF4FXyhmq .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uTF4FXyhmq .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uTF4FXyhmq .panel-group {
    padding: 0;
  }
}
.cid-uTF4FXyhmq .header-text,
.cid-uTF4FXyhmq .sign {
  color: #000000;
  text-align: left;
}
.cid-uTF4FXyhmq .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uTF4FXK91Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FXK91Q .mbr-text,
.cid-uTF4FXK91Q blockquote {
  color: #767676;
}
.cid-uTF4FXK91Q .mbr-text {
  color: #000000;
}
.cid-uTF4FXK91Q .mbr-text P {
  text-align: justify;
}
.cid-uTF4FXSWne {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FXSWne .container-fluid {
  padding: 0 3rem;
}
.cid-uTF4FXSWne .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uTF4FXSWne .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uTF4FXSWne .header-text {
  padding: 2rem 1rem !important;
}
.cid-uTF4FXSWne .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uTF4FXSWne .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uTF4FXSWne .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uTF4FXSWne .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uTF4FXSWne .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uTF4FXSWne .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uTF4FXSWne .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uTF4FXSWne .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uTF4FXSWne .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uTF4FXSWne .container-fluid {
    padding: 0 1rem;
  }
  .cid-uTF4FXSWne .header-text {
    padding: 1rem !important;
  }
  .cid-uTF4FXSWne .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uTF4FXSWne .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uTF4FXSWne .panel-group {
    padding: 0;
  }
}
.cid-uTF4FXSWne .header-text,
.cid-uTF4FXSWne .sign {
  color: #000000;
  text-align: left;
}
.cid-uTF4FXSWne .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uTF4FY7LBb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FY7LBb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uTF4FY7LBb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTF4FY7LBb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTF4FY7LBb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uTF4FY7LBb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uTF4FY7LBb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uTF4FY7LBb .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-uTF4FY7LBb .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uTF4FY7LBb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uTF4FYjUIP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FYjUIP .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uTF4FYjUIP .mbr-section-subtitle U {
  color: #000000;
}
.cid-uTF4FYs3AF {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uTF4FYs3AF .image-block {
  margin: auto;
}
.cid-uTF4FYs3AF figcaption {
  position: relative;
}
.cid-uTF4FYs3AF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uTF4FYs3AF .image-block {
    width: 100% !important;
  }
}
.cid-uTF4FYAfSm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FYAfSm .mbr-section-subtitle {
  color: #767676;
}
.cid-uTF4FYAfSm .container-table {
  margin: 0 auto;
}
.cid-uTF4FYAfSm .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uTF4FYAfSm .dataTables_wrapper {
  display: block;
}
.cid-uTF4FYAfSm .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uTF4FYAfSm .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uTF4FYAfSm table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uTF4FYAfSm table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uTF4FYAfSm table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uTF4FYAfSm table td {
  border-top: 1px solid #cccccc;
}
.cid-uTF4FYAfSm table.table {
  background: #ffffff;
}
.cid-uTF4FYAfSm .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uTF4FYAfSm .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uTF4FYAfSm .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uTF4FYAfSm .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uTF4FYAfSm .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uTF4FYAfSm .dataTables_filter {
    text-align: center;
  }
  .cid-uTF4FYAfSm .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uTF4FYAfSm .head-item {
  text-align: center;
  color: #000000;
}
.cid-uTF4FYAfSm .body-item {
  color: #000000;
  text-align: center;
}
.cid-uTF4FZjAKr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTF4FZjAKr .mbr-section-subtitle {
  color: #767676;
}
.cid-uTF4FZjAKr .mbr-section-subtitle U {
  color: #000000;
}
.cid-uTF4FZrjmj .google-map {
  height: 25rem;
  position: relative;
}
.cid-uTF4FZrjmj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uTF4FZrjmj .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-uTF4FZrjmj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uTF4FZrjmj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uTF4FZCMUl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uTF4FZCMUl .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uTF4FZCMUl .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uTF4FZCMUl .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uTF4FZCMUl .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uTF4FZCMUl .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uTF4FZCMUl .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uTF4FZCMUl .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uTF4FZCMUl .btn-social {
  border: none !important;
}
.cid-uTF4FZCMUl [class^="socicon-"]:before,
.cid-uTF4FZCMUl [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uTF4FZCMUl .btn {
    font-size: 20px !important;
  }
}
.cid-uTF4FZNM3t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uTF4FZNM3t .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uTF4FZNM3t .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uTF4FZNM3t .media-wrap img {
  height: 6rem;
}
.cid-uTF4FZNM3t .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uTF4FZNM3t .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uTF4FZNM3t .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uTF4FZNM3t .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uTF4FZNM3t .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uTF4FZNM3t .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uTF4FZNM3t .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uTF4FZNM3t .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uTF4FZNM3t .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uTF4FZNM3t .links {
  color: #000000;
  text-align: right;
}
.cid-uTF4FZNM3t .copyright > p {
  color: #000000;
}
.cid-uTF4G03I2A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uTF4G03I2A .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uTFR4PIiyw .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uTFR4PIiyw .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uTFR4PIiyw a {
  font-style: normal;
}
.cid-uTFR4PIiyw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uTFR4PIiyw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uTFR4PIiyw .nav-item:focus,
.cid-uTFR4PIiyw .nav-link:focus {
  outline: none;
}
.cid-uTFR4PIiyw .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uTFR4PIiyw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uTFR4PIiyw .menu-logo {
  margin-right: auto;
}
.cid-uTFR4PIiyw .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uTFR4PIiyw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uTFR4PIiyw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uTFR4PIiyw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uTFR4PIiyw .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uTFR4PIiyw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uTFR4PIiyw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uTFR4PIiyw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uTFR4PIiyw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uTFR4PIiyw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uTFR4PIiyw .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uTFR4PIiyw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uTFR4PIiyw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTFR4PIiyw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uTFR4PIiyw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTFR4PIiyw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uTFR4PIiyw .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uTFR4PIiyw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uTFR4PIiyw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uTFR4PIiyw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uTFR4PIiyw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uTFR4PIiyw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uTFR4PIiyw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uTFR4PIiyw button.navbar-toggler:focus {
  outline: none;
}
.cid-uTFR4PIiyw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTFR4PIiyw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uTFR4PIiyw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uTFR4PIiyw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uTFR4PIiyw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uTFR4PIiyw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uTFR4PIiyw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uTFR4PIiyw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uTFR4PIiyw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uTFR4PIiyw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uTFR4PIiyw .collapsed .btn {
  display: -webkit-flex;
}
.cid-uTFR4PIiyw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uTFR4PIiyw .collapsed .navbar-collapse.collapsing,
.cid-uTFR4PIiyw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uTFR4PIiyw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uTFR4PIiyw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uTFR4PIiyw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uTFR4PIiyw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uTFR4PIiyw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uTFR4PIiyw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uTFR4PIiyw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uTFR4PIiyw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uTFR4PIiyw .collapsed button.navbar-toggler {
  display: block;
}
.cid-uTFR4PIiyw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uTFR4PIiyw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uTFR4PIiyw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uTFR4PIiyw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uTFR4PIiyw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uTFR4PIiyw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uTFR4PIiyw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uTFR4PIiyw img {
    height: 3.8rem !important;
  }
  .cid-uTFR4PIiyw .btn {
    display: -webkit-flex;
  }
  .cid-uTFR4PIiyw button.navbar-toggler {
    display: block;
  }
  .cid-uTFR4PIiyw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uTFR4PIiyw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uTFR4PIiyw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uTFR4PIiyw .navbar-collapse.collapsing,
  .cid-uTFR4PIiyw .navbar-collapse.show {
    display: block !important;
  }
  .cid-uTFR4PIiyw .navbar-collapse.collapsing .navbar-nav,
  .cid-uTFR4PIiyw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uTFR4PIiyw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uTFR4PIiyw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uTFR4PIiyw .navbar-collapse.collapsing .navbar-buttons,
  .cid-uTFR4PIiyw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uTFR4PIiyw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uTFR4PIiyw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uTFR4PIiyw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uTFR4PIiyw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uTFR4PIiyw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uTFR4PIiyw .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uTFR4PIiyw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uTFR4PIiyw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uTFR4PIiyw .nav-link:hover,
.cid-uTFR4PIiyw .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uTFR4QjsuD {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTFR4QjsuD .mbr-section-subtitle {
  color: #000000;
}
.cid-uTFR4QjsuD H2 {
  color: #000000;
}
.cid-uTFR4QjsuD .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uTFR4QjsuD .inner-container {
    width: 100% !important;
  }
}
.cid-uTFR4QjsuD H1 {
  color: #000000;
}
.cid-uTFR4Qzv3W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uTFR4Qzv3W .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uTFR4Qzv3W .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uTFR4Qzv3W .mbr-text {
    text-align: center;
  }
}
.cid-uTFR4Qzv3W .mbr-text,
.cid-uTFR4Qzv3W .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uTFR4Qzv3W H3 {
  color: #000000;
}
.cid-uTFR4Qzv3W H1 {
  color: #000000;
}
.cid-uTFR4QSIMN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTFR4QSIMN .container-fluid {
  padding: 0 3rem;
}
.cid-uTFR4QSIMN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uTFR4QSIMN .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uTFR4QSIMN .header-text {
  padding: 2rem 1rem !important;
}
.cid-uTFR4QSIMN .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uTFR4QSIMN .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uTFR4QSIMN .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uTFR4QSIMN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uTFR4QSIMN .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uTFR4QSIMN .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uTFR4QSIMN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uTFR4QSIMN .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uTFR4QSIMN .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uTFR4QSIMN .container-fluid {
    padding: 0 1rem;
  }
  .cid-uTFR4QSIMN .header-text {
    padding: 1rem !important;
  }
  .cid-uTFR4QSIMN .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uTFR4QSIMN .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uTFR4QSIMN .panel-group {
    padding: 0;
  }
}
.cid-uTFR4QSIMN .header-text,
.cid-uTFR4QSIMN .sign {
  color: #000000;
  text-align: left;
}
.cid-uTFR4QSIMN .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uTFR4ReNst {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTFR4ReNst .mbr-text,
.cid-uTFR4ReNst blockquote {
  color: #767676;
}
.cid-uTFR4ReNst .mbr-text {
  color: #000000;
}
.cid-uTFR4ReNst .mbr-text P {
  text-align: justify;
}
.cid-uTFR4Rq9na {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTFR4Rq9na .container-fluid {
  padding: 0 3rem;
}
.cid-uTFR4Rq9na .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uTFR4Rq9na .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uTFR4Rq9na .header-text {
  padding: 2rem 1rem !important;
}
.cid-uTFR4Rq9na .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uTFR4Rq9na .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uTFR4Rq9na .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uTFR4Rq9na .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uTFR4Rq9na .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uTFR4Rq9na .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uTFR4Rq9na .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uTFR4Rq9na .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uTFR4Rq9na .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uTFR4Rq9na .container-fluid {
    padding: 0 1rem;
  }
  .cid-uTFR4Rq9na .header-text {
    padding: 1rem !important;
  }
  .cid-uTFR4Rq9na .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uTFR4Rq9na .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uTFR4Rq9na .panel-group {
    padding: 0;
  }
}
.cid-uTFR4Rq9na .header-text,
.cid-uTFR4Rq9na .sign {
  color: #000000;
  text-align: left;
}
.cid-uTFR4Rq9na .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uTFR4Shbmy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTFR4Shbmy .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uTFR4Shbmy .mbr-section-subtitle U {
  color: #000000;
}
.cid-uTFR4SHx6c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTFR4SHx6c .mbr-section-subtitle {
  color: #767676;
}
.cid-uTFR4SHx6c .container-table {
  margin: 0 auto;
}
.cid-uTFR4SHx6c .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uTFR4SHx6c .dataTables_wrapper {
  display: block;
}
.cid-uTFR4SHx6c .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uTFR4SHx6c .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uTFR4SHx6c table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uTFR4SHx6c table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uTFR4SHx6c table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uTFR4SHx6c table td {
  border-top: 1px solid #cccccc;
}
.cid-uTFR4SHx6c table.table {
  background: #ffffff;
}
.cid-uTFR4SHx6c .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uTFR4SHx6c .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uTFR4SHx6c .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uTFR4SHx6c .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uTFR4SHx6c .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uTFR4SHx6c .dataTables_filter {
    text-align: center;
  }
  .cid-uTFR4SHx6c .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uTFR4SHx6c .head-item {
  text-align: center;
  color: #000000;
}
.cid-uTFR4SHx6c .body-item {
  color: #000000;
  text-align: center;
}
.cid-uTFR4TxAQY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTFR4TxAQY .mbr-section-subtitle {
  color: #767676;
}
.cid-uTFR4TxAQY .mbr-section-subtitle U {
  color: #000000;
}
.cid-uTFR4TNFQb .google-map {
  height: 25rem;
  position: relative;
}
.cid-uTFR4TNFQb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uTFR4TNFQb .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-uTFR4TNFQb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uTFR4TNFQb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uTFR4U5BRr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uTFR4U5BRr .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uTFR4U5BRr .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uTFR4U5BRr .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uTFR4U5BRr .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uTFR4U5BRr .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uTFR4U5BRr .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uTFR4U5BRr .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uTFR4U5BRr .btn-social {
  border: none !important;
}
.cid-uTFR4U5BRr [class^="socicon-"]:before,
.cid-uTFR4U5BRr [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uTFR4U5BRr .btn {
    font-size: 20px !important;
  }
}
.cid-uTFR4UoVaV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uTFR4UoVaV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uTFR4UoVaV .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uTFR4UoVaV .media-wrap img {
  height: 6rem;
}
.cid-uTFR4UoVaV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uTFR4UoVaV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uTFR4UoVaV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uTFR4UoVaV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uTFR4UoVaV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uTFR4UoVaV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uTFR4UoVaV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uTFR4UoVaV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uTFR4UoVaV .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uTFR4UoVaV .links {
  color: #000000;
  text-align: right;
}
.cid-uTFR4UoVaV .copyright > p {
  color: #000000;
}
.cid-uTFR4URGEi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uTFR4URGEi .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uTRLR05SFq .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uTRLR05SFq .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uTRLR05SFq a {
  font-style: normal;
}
.cid-uTRLR05SFq .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uTRLR05SFq .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uTRLR05SFq .nav-item:focus,
.cid-uTRLR05SFq .nav-link:focus {
  outline: none;
}
.cid-uTRLR05SFq .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uTRLR05SFq .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uTRLR05SFq .menu-logo {
  margin-right: auto;
}
.cid-uTRLR05SFq .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uTRLR05SFq .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uTRLR05SFq .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uTRLR05SFq .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uTRLR05SFq .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uTRLR05SFq .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uTRLR05SFq .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uTRLR05SFq .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uTRLR05SFq .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uTRLR05SFq .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uTRLR05SFq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uTRLR05SFq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uTRLR05SFq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTRLR05SFq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uTRLR05SFq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTRLR05SFq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uTRLR05SFq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uTRLR05SFq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uTRLR05SFq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uTRLR05SFq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uTRLR05SFq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uTRLR05SFq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uTRLR05SFq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uTRLR05SFq button.navbar-toggler:focus {
  outline: none;
}
.cid-uTRLR05SFq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uTRLR05SFq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uTRLR05SFq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uTRLR05SFq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uTRLR05SFq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uTRLR05SFq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uTRLR05SFq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uTRLR05SFq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uTRLR05SFq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uTRLR05SFq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uTRLR05SFq .collapsed .btn {
  display: -webkit-flex;
}
.cid-uTRLR05SFq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uTRLR05SFq .collapsed .navbar-collapse.collapsing,
.cid-uTRLR05SFq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uTRLR05SFq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uTRLR05SFq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uTRLR05SFq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uTRLR05SFq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uTRLR05SFq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uTRLR05SFq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uTRLR05SFq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uTRLR05SFq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uTRLR05SFq .collapsed button.navbar-toggler {
  display: block;
}
.cid-uTRLR05SFq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uTRLR05SFq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uTRLR05SFq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uTRLR05SFq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uTRLR05SFq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uTRLR05SFq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uTRLR05SFq.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uTRLR05SFq img {
    height: 3.8rem !important;
  }
  .cid-uTRLR05SFq .btn {
    display: -webkit-flex;
  }
  .cid-uTRLR05SFq button.navbar-toggler {
    display: block;
  }
  .cid-uTRLR05SFq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uTRLR05SFq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uTRLR05SFq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uTRLR05SFq .navbar-collapse.collapsing,
  .cid-uTRLR05SFq .navbar-collapse.show {
    display: block !important;
  }
  .cid-uTRLR05SFq .navbar-collapse.collapsing .navbar-nav,
  .cid-uTRLR05SFq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uTRLR05SFq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uTRLR05SFq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uTRLR05SFq .navbar-collapse.collapsing .navbar-buttons,
  .cid-uTRLR05SFq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uTRLR05SFq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uTRLR05SFq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uTRLR05SFq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uTRLR05SFq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uTRLR05SFq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uTRLR05SFq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uTRLR05SFq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uTRLR05SFq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uTRLR05SFq .nav-link:hover,
.cid-uTRLR05SFq .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uTRLR0rUGk {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTRLR0rUGk .mbr-section-subtitle {
  color: #000000;
}
.cid-uTRLR0rUGk H2 {
  color: #000000;
}
.cid-uTRLR0rUGk .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uTRLR0rUGk .inner-container {
    width: 100% !important;
  }
}
.cid-uTRLR0rUGk H1 {
  color: #000000;
}
.cid-uTRLR0rUGk .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uTRLR0ESjP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uTRLR0ESjP .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uTRLR0ESjP .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uTRLR0ESjP .mbr-text {
    text-align: center;
  }
}
.cid-uTRLR0ESjP .mbr-text,
.cid-uTRLR0ESjP .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uTRLR0ESjP H3 {
  color: #000000;
}
.cid-uTRLR0ESjP H1 {
  color: #000000;
}
.cid-uTS1iTYRhK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTS1iTYRhK .mbr-text,
.cid-uTS1iTYRhK blockquote {
  color: #767676;
}
.cid-uTS1iTYRhK .mbr-text {
  color: #000000;
}
.cid-uTS1iTYRhK .mbr-text P {
  text-align: justify;
}
.cid-uTRLR0TgDF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTRLR0TgDF .container-fluid {
  padding: 0 3rem;
}
.cid-uTRLR0TgDF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uTRLR0TgDF .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uTRLR0TgDF .header-text {
  padding: 2rem 1rem !important;
}
.cid-uTRLR0TgDF .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uTRLR0TgDF .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uTRLR0TgDF .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uTRLR0TgDF .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uTRLR0TgDF .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uTRLR0TgDF .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uTRLR0TgDF .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uTRLR0TgDF .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uTRLR0TgDF .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uTRLR0TgDF .container-fluid {
    padding: 0 1rem;
  }
  .cid-uTRLR0TgDF .header-text {
    padding: 1rem !important;
  }
  .cid-uTRLR0TgDF .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uTRLR0TgDF .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uTRLR0TgDF .panel-group {
    padding: 0;
  }
}
.cid-uTRLR0TgDF .header-text,
.cid-uTRLR0TgDF .sign {
  color: #000000;
  text-align: left;
}
.cid-uTRLR0TgDF .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uTRLR1b51a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTRLR1b51a .mbr-text,
.cid-uTRLR1b51a blockquote {
  color: #767676;
}
.cid-uTRLR1b51a .mbr-text {
  color: #000000;
}
.cid-uTRLR1b51a .mbr-text P {
  text-align: justify;
}
.cid-uTRLR1mEQN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTRLR1mEQN .container-fluid {
  padding: 0 3rem;
}
.cid-uTRLR1mEQN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uTRLR1mEQN .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uTRLR1mEQN .header-text {
  padding: 2rem 1rem !important;
}
.cid-uTRLR1mEQN .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uTRLR1mEQN .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uTRLR1mEQN .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uTRLR1mEQN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uTRLR1mEQN .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uTRLR1mEQN .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uTRLR1mEQN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uTRLR1mEQN .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uTRLR1mEQN .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uTRLR1mEQN .container-fluid {
    padding: 0 1rem;
  }
  .cid-uTRLR1mEQN .header-text {
    padding: 1rem !important;
  }
  .cid-uTRLR1mEQN .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uTRLR1mEQN .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uTRLR1mEQN .panel-group {
    padding: 0;
  }
}
.cid-uTRLR1mEQN .header-text,
.cid-uTRLR1mEQN .sign {
  color: #000000;
  text-align: left;
}
.cid-uTRLR1mEQN .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uTRLR21O67 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTRLR21O67 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uTRLR21O67 .mbr-section-subtitle U {
  color: #000000;
}
.cid-uTRLR2d5Yc {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uTRLR2d5Yc .image-block {
  margin: auto;
}
.cid-uTRLR2d5Yc figcaption {
  position: relative;
}
.cid-uTRLR2d5Yc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uTRLR2d5Yc .image-block {
    width: 100% !important;
  }
}
.cid-uTRLR2p2ah {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTRLR2p2ah .mbr-section-subtitle {
  color: #767676;
}
.cid-uTRLR2p2ah .container-table {
  margin: 0 auto;
}
.cid-uTRLR2p2ah .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uTRLR2p2ah .dataTables_wrapper {
  display: block;
}
.cid-uTRLR2p2ah .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uTRLR2p2ah .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uTRLR2p2ah table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uTRLR2p2ah table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uTRLR2p2ah table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uTRLR2p2ah table td {
  border-top: 1px solid #cccccc;
}
.cid-uTRLR2p2ah table.table {
  background: #ffffff;
}
.cid-uTRLR2p2ah .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uTRLR2p2ah .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uTRLR2p2ah .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uTRLR2p2ah .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uTRLR2p2ah .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uTRLR2p2ah .dataTables_filter {
    text-align: center;
  }
  .cid-uTRLR2p2ah .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uTRLR2p2ah .head-item {
  text-align: center;
  color: #000000;
}
.cid-uTRLR2p2ah .body-item {
  color: #000000;
  text-align: center;
}
.cid-uTRLR3lNwd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTRLR3lNwd .mbr-section-subtitle {
  color: #767676;
}
.cid-uTRLR3lNwd .mbr-section-subtitle U {
  color: #000000;
}
.cid-uTRLR3uO0v .google-map {
  height: 25rem;
  position: relative;
}
.cid-uTRLR3uO0v .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uTRLR3uO0v .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-uTRLR3uO0v .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uTRLR3uO0v .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uTRLR3EPrn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uTRLR3EPrn .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uTRLR3EPrn .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uTRLR3EPrn .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uTRLR3EPrn .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uTRLR3EPrn .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uTRLR3EPrn .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uTRLR3EPrn .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uTRLR3EPrn .btn-social {
  border: none !important;
}
.cid-uTRLR3EPrn [class^="socicon-"]:before,
.cid-uTRLR3EPrn [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uTRLR3EPrn .btn {
    font-size: 20px !important;
  }
}
.cid-uTRLR3Q0fL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uTRLR3Q0fL .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uTRLR3Q0fL .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uTRLR3Q0fL .media-wrap img {
  height: 6rem;
}
.cid-uTRLR3Q0fL .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uTRLR3Q0fL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uTRLR3Q0fL .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uTRLR3Q0fL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uTRLR3Q0fL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uTRLR3Q0fL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uTRLR3Q0fL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uTRLR3Q0fL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uTRLR3Q0fL .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uTRLR3Q0fL .links {
  color: #000000;
  text-align: right;
}
.cid-uTRLR3Q0fL .copyright > p {
  color: #000000;
}
.cid-uTRLR49DRa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uTRLR49DRa .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uUk9WA0nDe .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uUk9WA0nDe .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uUk9WA0nDe a {
  font-style: normal;
}
.cid-uUk9WA0nDe .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uUk9WA0nDe .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uUk9WA0nDe .nav-item:focus,
.cid-uUk9WA0nDe .nav-link:focus {
  outline: none;
}
.cid-uUk9WA0nDe .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uUk9WA0nDe .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uUk9WA0nDe .menu-logo {
  margin-right: auto;
}
.cid-uUk9WA0nDe .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uUk9WA0nDe .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uUk9WA0nDe .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uUk9WA0nDe .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uUk9WA0nDe .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uUk9WA0nDe .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uUk9WA0nDe .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uUk9WA0nDe .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uUk9WA0nDe .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uUk9WA0nDe .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uUk9WA0nDe .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uUk9WA0nDe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uUk9WA0nDe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uUk9WA0nDe .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uUk9WA0nDe .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uUk9WA0nDe .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uUk9WA0nDe .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uUk9WA0nDe .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uUk9WA0nDe .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uUk9WA0nDe .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uUk9WA0nDe .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uUk9WA0nDe .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uUk9WA0nDe button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uUk9WA0nDe button.navbar-toggler:focus {
  outline: none;
}
.cid-uUk9WA0nDe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uUk9WA0nDe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uUk9WA0nDe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uUk9WA0nDe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uUk9WA0nDe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uUk9WA0nDe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUk9WA0nDe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uUk9WA0nDe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uUk9WA0nDe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uUk9WA0nDe .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uUk9WA0nDe .collapsed .btn {
  display: -webkit-flex;
}
.cid-uUk9WA0nDe .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uUk9WA0nDe .collapsed .navbar-collapse.collapsing,
.cid-uUk9WA0nDe .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uUk9WA0nDe .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uUk9WA0nDe .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uUk9WA0nDe .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uUk9WA0nDe .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uUk9WA0nDe .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uUk9WA0nDe .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uUk9WA0nDe .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uUk9WA0nDe .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uUk9WA0nDe .collapsed button.navbar-toggler {
  display: block;
}
.cid-uUk9WA0nDe .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uUk9WA0nDe .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uUk9WA0nDe .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uUk9WA0nDe .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uUk9WA0nDe .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uUk9WA0nDe .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uUk9WA0nDe.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uUk9WA0nDe img {
    height: 3.8rem !important;
  }
  .cid-uUk9WA0nDe .btn {
    display: -webkit-flex;
  }
  .cid-uUk9WA0nDe button.navbar-toggler {
    display: block;
  }
  .cid-uUk9WA0nDe .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uUk9WA0nDe .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uUk9WA0nDe .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uUk9WA0nDe .navbar-collapse.collapsing,
  .cid-uUk9WA0nDe .navbar-collapse.show {
    display: block !important;
  }
  .cid-uUk9WA0nDe .navbar-collapse.collapsing .navbar-nav,
  .cid-uUk9WA0nDe .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uUk9WA0nDe .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uUk9WA0nDe .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uUk9WA0nDe .navbar-collapse.collapsing .navbar-buttons,
  .cid-uUk9WA0nDe .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uUk9WA0nDe .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uUk9WA0nDe .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uUk9WA0nDe .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uUk9WA0nDe .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uUk9WA0nDe .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uUk9WA0nDe .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uUk9WA0nDe .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uUk9WA0nDe .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uUk9WA0nDe .nav-link:hover,
.cid-uUk9WA0nDe .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uUk9WAmw0M {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUk9WAmw0M .mbr-section-subtitle {
  color: #000000;
}
.cid-uUk9WAmw0M H2 {
  color: #000000;
}
.cid-uUk9WAmw0M .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uUk9WAmw0M .inner-container {
    width: 100% !important;
  }
}
.cid-uUk9WAmw0M H1 {
  color: #000000;
}
.cid-uUkmQSp26V {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uUkmQSp26V .image-block {
  margin: auto;
}
.cid-uUkmQSp26V .mbr-figure {
  margin: 0 auto;
}
.cid-uUkmQSp26V figcaption {
  position: relative;
}
.cid-uUkmQSp26V figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uUkmQSp26V .image-block {
    width: 100% !important;
  }
}
.cid-uUkmRvQJGP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUkmRvQJGP .line {
  background-color: #cccccc;
  color: #cccccc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uUkmRvQJGP .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uUkmRvQJGP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uUkmRvQJGP .inner-container {
    width: 100% !important;
  }
}
.cid-uUm8MlpATE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUm8MlpATE .mbr-section-subtitle {
  color: #767676;
}
.cid-uUm8MlpATE .mbr-section-subtitle U {
  color: #000000;
}
.cid-uUk9WAJTpN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUk9WAJTpN .container-fluid {
  padding: 0 3rem;
}
.cid-uUk9WAJTpN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uUk9WAJTpN .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uUk9WAJTpN .header-text {
  padding: 2rem 1rem !important;
}
.cid-uUk9WAJTpN .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uUk9WAJTpN .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uUk9WAJTpN .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uUk9WAJTpN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uUk9WAJTpN .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uUk9WAJTpN .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uUk9WAJTpN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uUk9WAJTpN .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uUk9WAJTpN .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uUk9WAJTpN .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUk9WAJTpN .header-text {
    padding: 1rem !important;
  }
  .cid-uUk9WAJTpN .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uUk9WAJTpN .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uUk9WAJTpN .panel-group {
    padding: 0;
  }
}
.cid-uUk9WAJTpN .header-text,
.cid-uUk9WAJTpN .sign {
  color: #000000;
  text-align: left;
}
.cid-uUk9WAJTpN .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uUk9WAU4sC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUk9WAU4sC .mbr-text,
.cid-uUk9WAU4sC blockquote {
  color: #767676;
}
.cid-uUk9WAU4sC .mbr-text {
  color: #000000;
}
.cid-uUk9WAU4sC .mbr-text P {
  text-align: justify;
}
.cid-uUk9WB48UJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uUk9WB48UJ .container-fluid {
  padding: 0 3rem;
}
.cid-uUk9WB48UJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uUk9WB48UJ .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uUk9WB48UJ .header-text {
  padding: 2rem 1rem !important;
}
.cid-uUk9WB48UJ .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uUk9WB48UJ .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uUk9WB48UJ .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uUk9WB48UJ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uUk9WB48UJ .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uUk9WB48UJ .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uUk9WB48UJ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uUk9WB48UJ .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uUk9WB48UJ .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uUk9WB48UJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUk9WB48UJ .header-text {
    padding: 1rem !important;
  }
  .cid-uUk9WB48UJ .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uUk9WB48UJ .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uUk9WB48UJ .panel-group {
    padding: 0;
  }
}
.cid-uUk9WB48UJ .header-text,
.cid-uUk9WB48UJ .sign {
  color: #000000;
  text-align: left;
}
.cid-uUk9WB48UJ .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uUk9WBmrFv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uUk9WBmrFv .mbr-section-subtitle {
  color: #767676;
}
.cid-uUk9WBmrFv .mbr-section-subtitle U {
  color: #000000;
}
.cid-uUk9WBxoiq .google-map {
  height: 25rem;
  position: relative;
}
.cid-uUk9WBxoiq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uUk9WBxoiq .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-uUk9WBxoiq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uUk9WBxoiq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUk9WBH991 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uUk9WBH991 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uUk9WBH991 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uUk9WBH991 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uUk9WBH991 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uUk9WBH991 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uUk9WBH991 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uUk9WBH991 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uUk9WBH991 .btn-social {
  border: none !important;
}
.cid-uUk9WBH991 [class^="socicon-"]:before,
.cid-uUk9WBH991 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uUk9WBH991 .btn {
    font-size: 20px !important;
  }
}
.cid-uUk9WBUhV2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uUk9WBUhV2 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uUk9WBUhV2 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uUk9WBUhV2 .media-wrap img {
  height: 6rem;
}
.cid-uUk9WBUhV2 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uUk9WBUhV2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uUk9WBUhV2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uUk9WBUhV2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uUk9WBUhV2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uUk9WBUhV2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUk9WBUhV2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uUk9WBUhV2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUk9WBUhV2 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uUk9WBUhV2 .links {
  color: #000000;
  text-align: right;
}
.cid-uUk9WBUhV2 .copyright > p {
  color: #000000;
}
.cid-uUk9WCcG0A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uUk9WCcG0A .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uV0Wn1OlXR .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uV0Wn1OlXR .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uV0Wn1OlXR a {
  font-style: normal;
}
.cid-uV0Wn1OlXR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uV0Wn1OlXR .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uV0Wn1OlXR .nav-item:focus,
.cid-uV0Wn1OlXR .nav-link:focus {
  outline: none;
}
.cid-uV0Wn1OlXR .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uV0Wn1OlXR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uV0Wn1OlXR .menu-logo {
  margin-right: auto;
}
.cid-uV0Wn1OlXR .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uV0Wn1OlXR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uV0Wn1OlXR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uV0Wn1OlXR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uV0Wn1OlXR .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uV0Wn1OlXR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uV0Wn1OlXR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uV0Wn1OlXR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uV0Wn1OlXR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uV0Wn1OlXR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uV0Wn1OlXR .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uV0Wn1OlXR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uV0Wn1OlXR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV0Wn1OlXR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uV0Wn1OlXR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV0Wn1OlXR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uV0Wn1OlXR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uV0Wn1OlXR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uV0Wn1OlXR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uV0Wn1OlXR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uV0Wn1OlXR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uV0Wn1OlXR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uV0Wn1OlXR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uV0Wn1OlXR button.navbar-toggler:focus {
  outline: none;
}
.cid-uV0Wn1OlXR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV0Wn1OlXR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uV0Wn1OlXR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uV0Wn1OlXR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uV0Wn1OlXR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uV0Wn1OlXR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uV0Wn1OlXR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uV0Wn1OlXR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uV0Wn1OlXR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uV0Wn1OlXR .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uV0Wn1OlXR .collapsed .btn {
  display: -webkit-flex;
}
.cid-uV0Wn1OlXR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.collapsing,
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uV0Wn1OlXR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uV0Wn1OlXR .collapsed button.navbar-toggler {
  display: block;
}
.cid-uV0Wn1OlXR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uV0Wn1OlXR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uV0Wn1OlXR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uV0Wn1OlXR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uV0Wn1OlXR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uV0Wn1OlXR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uV0Wn1OlXR.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uV0Wn1OlXR img {
    height: 3.8rem !important;
  }
  .cid-uV0Wn1OlXR .btn {
    display: -webkit-flex;
  }
  .cid-uV0Wn1OlXR button.navbar-toggler {
    display: block;
  }
  .cid-uV0Wn1OlXR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uV0Wn1OlXR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uV0Wn1OlXR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uV0Wn1OlXR .navbar-collapse.collapsing,
  .cid-uV0Wn1OlXR .navbar-collapse.show {
    display: block !important;
  }
  .cid-uV0Wn1OlXR .navbar-collapse.collapsing .navbar-nav,
  .cid-uV0Wn1OlXR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uV0Wn1OlXR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uV0Wn1OlXR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uV0Wn1OlXR .navbar-collapse.collapsing .navbar-buttons,
  .cid-uV0Wn1OlXR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uV0Wn1OlXR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uV0Wn1OlXR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uV0Wn1OlXR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uV0Wn1OlXR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uV0Wn1OlXR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uV0Wn1OlXR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uV0Wn1OlXR .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uV0Wn1OlXR .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uV0Wn1OlXR .nav-link:hover,
.cid-uV0Wn1OlXR .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uV0Wn29JV2 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uV0Wn29JV2 .mbr-section-subtitle {
  color: #000000;
}
.cid-uV0Wn29JV2 H2 {
  color: #000000;
}
.cid-uV0Wn29JV2 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uV0Wn29JV2 .inner-container {
    width: 100% !important;
  }
}
.cid-uV0Wn29JV2 H1 {
  color: #000000;
}
.cid-uV172oxUEa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uV172oxUEa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uV172oxUEa .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uV172oxUEa .mbr-text {
    text-align: center;
  }
}
.cid-uV172oxUEa .mbr-text,
.cid-uV172oxUEa .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uV172oxUEa H3 {
  color: #000000;
}
.cid-uV172oxUEa H1 {
  color: #000000;
}
.cid-uV0Wn2ukRo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uV0Wn2ukRo .container-fluid {
  padding: 0 3rem;
}
.cid-uV0Wn2ukRo .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uV0Wn2ukRo .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uV0Wn2ukRo .header-text {
  padding: 2rem 1rem !important;
}
.cid-uV0Wn2ukRo .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uV0Wn2ukRo .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uV0Wn2ukRo .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uV0Wn2ukRo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uV0Wn2ukRo .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uV0Wn2ukRo .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uV0Wn2ukRo .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uV0Wn2ukRo .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uV0Wn2ukRo .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uV0Wn2ukRo .container-fluid {
    padding: 0 1rem;
  }
  .cid-uV0Wn2ukRo .header-text {
    padding: 1rem !important;
  }
  .cid-uV0Wn2ukRo .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uV0Wn2ukRo .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uV0Wn2ukRo .panel-group {
    padding: 0;
  }
}
.cid-uV0Wn2ukRo .header-text,
.cid-uV0Wn2ukRo .sign {
  color: #000000;
  text-align: left;
}
.cid-uV0Wn2ukRo .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uV0Wn2EV3Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uV0Wn2EV3Y .mbr-text,
.cid-uV0Wn2EV3Y blockquote {
  color: #767676;
}
.cid-uV0Wn2EV3Y .mbr-text {
  color: #000000;
}
.cid-uV0Wn2EV3Y .mbr-text P {
  text-align: justify;
}
.cid-uV0Wn2PGg0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uV0Wn2PGg0 .container-fluid {
  padding: 0 3rem;
}
.cid-uV0Wn2PGg0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uV0Wn2PGg0 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uV0Wn2PGg0 .header-text {
  padding: 2rem 1rem !important;
}
.cid-uV0Wn2PGg0 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uV0Wn2PGg0 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uV0Wn2PGg0 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uV0Wn2PGg0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uV0Wn2PGg0 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uV0Wn2PGg0 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uV0Wn2PGg0 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uV0Wn2PGg0 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uV0Wn2PGg0 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uV0Wn2PGg0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uV0Wn2PGg0 .header-text {
    padding: 1rem !important;
  }
  .cid-uV0Wn2PGg0 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uV0Wn2PGg0 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uV0Wn2PGg0 .panel-group {
    padding: 0;
  }
}
.cid-uV0Wn2PGg0 .header-text,
.cid-uV0Wn2PGg0 .sign {
  color: #000000;
  text-align: left;
}
.cid-uV0Wn2PGg0 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uV0Wn34NNT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uV0Wn34NNT .mbr-section-subtitle {
  color: #767676;
}
.cid-uV0Wn34NNT .mbr-section-subtitle U {
  color: #000000;
}
.cid-uV0Wn3e1jM .google-map {
  height: 25rem;
  position: relative;
}
.cid-uV0Wn3e1jM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uV0Wn3e1jM .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-uV0Wn3e1jM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uV0Wn3e1jM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uV0Wn3mHD9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uV0Wn3mHD9 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uV0Wn3mHD9 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uV0Wn3mHD9 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uV0Wn3mHD9 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uV0Wn3mHD9 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uV0Wn3mHD9 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uV0Wn3mHD9 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uV0Wn3mHD9 .btn-social {
  border: none !important;
}
.cid-uV0Wn3mHD9 [class^="socicon-"]:before,
.cid-uV0Wn3mHD9 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uV0Wn3mHD9 .btn {
    font-size: 20px !important;
  }
}
.cid-uV0Wn3xYQk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uV0Wn3xYQk .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uV0Wn3xYQk .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uV0Wn3xYQk .media-wrap img {
  height: 6rem;
}
.cid-uV0Wn3xYQk .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uV0Wn3xYQk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uV0Wn3xYQk .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uV0Wn3xYQk .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uV0Wn3xYQk .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uV0Wn3xYQk .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uV0Wn3xYQk .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uV0Wn3xYQk .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uV0Wn3xYQk .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uV0Wn3xYQk .links {
  color: #000000;
  text-align: right;
}
.cid-uV0Wn3xYQk .copyright > p {
  color: #000000;
}
.cid-uV0Wn3NhXG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uV0Wn3NhXG .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVPBqs84Si .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uVPBqs84Si .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uVPBqs84Si a {
  font-style: normal;
}
.cid-uVPBqs84Si .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uVPBqs84Si .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uVPBqs84Si .nav-item:focus,
.cid-uVPBqs84Si .nav-link:focus {
  outline: none;
}
.cid-uVPBqs84Si .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uVPBqs84Si .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uVPBqs84Si .menu-logo {
  margin-right: auto;
}
.cid-uVPBqs84Si .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uVPBqs84Si .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uVPBqs84Si .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uVPBqs84Si .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uVPBqs84Si .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uVPBqs84Si .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uVPBqs84Si .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uVPBqs84Si .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uVPBqs84Si .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVPBqs84Si .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uVPBqs84Si .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uVPBqs84Si .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uVPBqs84Si .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVPBqs84Si .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uVPBqs84Si .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVPBqs84Si .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uVPBqs84Si .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uVPBqs84Si .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uVPBqs84Si .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uVPBqs84Si .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uVPBqs84Si .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uVPBqs84Si .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uVPBqs84Si button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uVPBqs84Si button.navbar-toggler:focus {
  outline: none;
}
.cid-uVPBqs84Si button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVPBqs84Si button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uVPBqs84Si button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uVPBqs84Si button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uVPBqs84Si button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uVPBqs84Si nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVPBqs84Si nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uVPBqs84Si nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uVPBqs84Si nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVPBqs84Si .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVPBqs84Si .collapsed .btn {
  display: -webkit-flex;
}
.cid-uVPBqs84Si .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uVPBqs84Si .collapsed .navbar-collapse.collapsing,
.cid-uVPBqs84Si .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uVPBqs84Si .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uVPBqs84Si .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uVPBqs84Si .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uVPBqs84Si .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uVPBqs84Si .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uVPBqs84Si .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uVPBqs84Si .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uVPBqs84Si .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uVPBqs84Si .collapsed button.navbar-toggler {
  display: block;
}
.cid-uVPBqs84Si .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uVPBqs84Si .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVPBqs84Si .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uVPBqs84Si .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uVPBqs84Si .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uVPBqs84Si .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uVPBqs84Si.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVPBqs84Si img {
    height: 3.8rem !important;
  }
  .cid-uVPBqs84Si .btn {
    display: -webkit-flex;
  }
  .cid-uVPBqs84Si button.navbar-toggler {
    display: block;
  }
  .cid-uVPBqs84Si .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uVPBqs84Si .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVPBqs84Si .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uVPBqs84Si .navbar-collapse.collapsing,
  .cid-uVPBqs84Si .navbar-collapse.show {
    display: block !important;
  }
  .cid-uVPBqs84Si .navbar-collapse.collapsing .navbar-nav,
  .cid-uVPBqs84Si .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uVPBqs84Si .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uVPBqs84Si .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uVPBqs84Si .navbar-collapse.collapsing .navbar-buttons,
  .cid-uVPBqs84Si .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uVPBqs84Si .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uVPBqs84Si .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVPBqs84Si .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uVPBqs84Si .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uVPBqs84Si .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uVPBqs84Si .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uVPBqs84Si .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uVPBqs84Si .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uVPBqs84Si .nav-link:hover,
.cid-uVPBqs84Si .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uVPBqsqQjE {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVPBqsqQjE .mbr-section-subtitle {
  color: #000000;
}
.cid-uVPBqsqQjE H2 {
  color: #000000;
}
.cid-uVPBqsqQjE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uVPBqsqQjE .inner-container {
    width: 100% !important;
  }
}
.cid-uVPBqsqQjE H1 {
  color: #000000;
}
.cid-uVPBqszmqd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uVPBqszmqd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uVPBqszmqd .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uVPBqszmqd .mbr-text {
    text-align: center;
  }
}
.cid-uVPBqszmqd .mbr-text,
.cid-uVPBqszmqd .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uVPBqszmqd H3 {
  color: #000000;
}
.cid-uVPBqszmqd H1 {
  color: #000000;
}
.cid-uVPBqsKhl3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVPBqsKhl3 .container-fluid {
  padding: 0 3rem;
}
.cid-uVPBqsKhl3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uVPBqsKhl3 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uVPBqsKhl3 .header-text {
  padding: 2rem 1rem !important;
}
.cid-uVPBqsKhl3 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uVPBqsKhl3 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uVPBqsKhl3 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uVPBqsKhl3 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uVPBqsKhl3 .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uVPBqsKhl3 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uVPBqsKhl3 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uVPBqsKhl3 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uVPBqsKhl3 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uVPBqsKhl3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uVPBqsKhl3 .header-text {
    padding: 1rem !important;
  }
  .cid-uVPBqsKhl3 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uVPBqsKhl3 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uVPBqsKhl3 .panel-group {
    padding: 0;
  }
}
.cid-uVPBqsKhl3 .header-text,
.cid-uVPBqsKhl3 .sign {
  color: #000000;
  text-align: left;
}
.cid-uVPBqsKhl3 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uVPBqsTz0D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVPBqsTz0D .mbr-text,
.cid-uVPBqsTz0D blockquote {
  color: #767676;
}
.cid-uVPBqsTz0D .mbr-text {
  color: #000000;
}
.cid-uVPBqsTz0D .mbr-text P {
  text-align: justify;
}
.cid-uVPBqt2zSS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVPBqt2zSS .container-fluid {
  padding: 0 3rem;
}
.cid-uVPBqt2zSS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uVPBqt2zSS .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uVPBqt2zSS .header-text {
  padding: 2rem 1rem !important;
}
.cid-uVPBqt2zSS .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uVPBqt2zSS .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uVPBqt2zSS .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uVPBqt2zSS .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uVPBqt2zSS .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uVPBqt2zSS .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uVPBqt2zSS .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uVPBqt2zSS .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uVPBqt2zSS .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uVPBqt2zSS .container-fluid {
    padding: 0 1rem;
  }
  .cid-uVPBqt2zSS .header-text {
    padding: 1rem !important;
  }
  .cid-uVPBqt2zSS .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uVPBqt2zSS .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uVPBqt2zSS .panel-group {
    padding: 0;
  }
}
.cid-uVPBqt2zSS .header-text,
.cid-uVPBqt2zSS .sign {
  color: #000000;
  text-align: left;
}
.cid-uVPBqt2zSS .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uVPBqthDNE {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uVPBqthDNE .mbr-section-subtitle {
  color: #767676;
}
.cid-uVPBqthDNE .mbr-section-subtitle U {
  color: #000000;
}
.cid-uVPBqtqnzS .google-map {
  height: 25rem;
  position: relative;
}
.cid-uVPBqtqnzS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uVPBqtqnzS .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-uVPBqtqnzS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uVPBqtqnzS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uVPBqtygrl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uVPBqtygrl .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uVPBqtygrl .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uVPBqtygrl .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uVPBqtygrl .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uVPBqtygrl .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uVPBqtygrl .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uVPBqtygrl .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uVPBqtygrl .btn-social {
  border: none !important;
}
.cid-uVPBqtygrl [class^="socicon-"]:before,
.cid-uVPBqtygrl [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uVPBqtygrl .btn {
    font-size: 20px !important;
  }
}
.cid-uVPBqtJdk2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uVPBqtJdk2 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVPBqtJdk2 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uVPBqtJdk2 .media-wrap img {
  height: 6rem;
}
.cid-uVPBqtJdk2 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uVPBqtJdk2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVPBqtJdk2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uVPBqtJdk2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uVPBqtJdk2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uVPBqtJdk2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVPBqtJdk2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uVPBqtJdk2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVPBqtJdk2 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uVPBqtJdk2 .links {
  color: #000000;
  text-align: right;
}
.cid-uVPBqtJdk2 .copyright > p {
  color: #000000;
}
.cid-uVPBqu0Wnb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uVPBqu0Wnb .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVQyu0I1MS .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uVQyu0I1MS .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uVQyu0I1MS a {
  font-style: normal;
}
.cid-uVQyu0I1MS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uVQyu0I1MS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uVQyu0I1MS .nav-item:focus,
.cid-uVQyu0I1MS .nav-link:focus {
  outline: none;
}
.cid-uVQyu0I1MS .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uVQyu0I1MS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uVQyu0I1MS .menu-logo {
  margin-right: auto;
}
.cid-uVQyu0I1MS .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uVQyu0I1MS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uVQyu0I1MS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uVQyu0I1MS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uVQyu0I1MS .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uVQyu0I1MS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uVQyu0I1MS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uVQyu0I1MS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uVQyu0I1MS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVQyu0I1MS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uVQyu0I1MS .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uVQyu0I1MS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uVQyu0I1MS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVQyu0I1MS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uVQyu0I1MS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVQyu0I1MS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uVQyu0I1MS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uVQyu0I1MS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uVQyu0I1MS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uVQyu0I1MS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uVQyu0I1MS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uVQyu0I1MS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uVQyu0I1MS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uVQyu0I1MS button.navbar-toggler:focus {
  outline: none;
}
.cid-uVQyu0I1MS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVQyu0I1MS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uVQyu0I1MS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uVQyu0I1MS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uVQyu0I1MS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uVQyu0I1MS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVQyu0I1MS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uVQyu0I1MS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uVQyu0I1MS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVQyu0I1MS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVQyu0I1MS .collapsed .btn {
  display: -webkit-flex;
}
.cid-uVQyu0I1MS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uVQyu0I1MS .collapsed .navbar-collapse.collapsing,
.cid-uVQyu0I1MS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uVQyu0I1MS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uVQyu0I1MS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uVQyu0I1MS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uVQyu0I1MS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uVQyu0I1MS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uVQyu0I1MS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uVQyu0I1MS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uVQyu0I1MS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uVQyu0I1MS .collapsed button.navbar-toggler {
  display: block;
}
.cid-uVQyu0I1MS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uVQyu0I1MS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVQyu0I1MS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uVQyu0I1MS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uVQyu0I1MS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uVQyu0I1MS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uVQyu0I1MS.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVQyu0I1MS img {
    height: 3.8rem !important;
  }
  .cid-uVQyu0I1MS .btn {
    display: -webkit-flex;
  }
  .cid-uVQyu0I1MS button.navbar-toggler {
    display: block;
  }
  .cid-uVQyu0I1MS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uVQyu0I1MS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVQyu0I1MS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uVQyu0I1MS .navbar-collapse.collapsing,
  .cid-uVQyu0I1MS .navbar-collapse.show {
    display: block !important;
  }
  .cid-uVQyu0I1MS .navbar-collapse.collapsing .navbar-nav,
  .cid-uVQyu0I1MS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uVQyu0I1MS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uVQyu0I1MS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uVQyu0I1MS .navbar-collapse.collapsing .navbar-buttons,
  .cid-uVQyu0I1MS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uVQyu0I1MS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uVQyu0I1MS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVQyu0I1MS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uVQyu0I1MS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uVQyu0I1MS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uVQyu0I1MS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uVQyu0I1MS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uVQyu0I1MS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uVQyu0I1MS .nav-link:hover,
.cid-uVQyu0I1MS .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uVQyu165PI {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVQyu165PI .mbr-section-subtitle {
  color: #000000;
}
.cid-uVQyu165PI H2 {
  color: #000000;
}
.cid-uVQyu165PI .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uVQyu165PI .inner-container {
    width: 100% !important;
  }
}
.cid-uVQyu165PI H1 {
  color: #000000;
}
.cid-uVQyu1hmYL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uVQyu1hmYL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uVQyu1hmYL .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uVQyu1hmYL .mbr-text {
    text-align: center;
  }
}
.cid-uVQyu1hmYL .mbr-text,
.cid-uVQyu1hmYL .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uVQyu1hmYL H3 {
  color: #000000;
}
.cid-uVQyu1hmYL H1 {
  color: #000000;
}
.cid-uVQyu1wYrx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVQyu1wYrx .container-fluid {
  padding: 0 3rem;
}
.cid-uVQyu1wYrx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uVQyu1wYrx .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uVQyu1wYrx .header-text {
  padding: 2rem 1rem !important;
}
.cid-uVQyu1wYrx .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uVQyu1wYrx .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uVQyu1wYrx .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uVQyu1wYrx .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uVQyu1wYrx .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uVQyu1wYrx .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uVQyu1wYrx .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uVQyu1wYrx .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uVQyu1wYrx .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uVQyu1wYrx .container-fluid {
    padding: 0 1rem;
  }
  .cid-uVQyu1wYrx .header-text {
    padding: 1rem !important;
  }
  .cid-uVQyu1wYrx .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uVQyu1wYrx .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uVQyu1wYrx .panel-group {
    padding: 0;
  }
}
.cid-uVQyu1wYrx .header-text,
.cid-uVQyu1wYrx .sign {
  color: #000000;
  text-align: left;
}
.cid-uVQyu1wYrx .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uVQyu1SsQv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVQyu1SsQv .mbr-text,
.cid-uVQyu1SsQv blockquote {
  color: #767676;
}
.cid-uVQyu1SsQv .mbr-text {
  color: #000000;
}
.cid-uVQyu1SsQv .mbr-text P {
  text-align: justify;
}
.cid-uVQyu22O8P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uVQyu22O8P .container-fluid {
  padding: 0 3rem;
}
.cid-uVQyu22O8P .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uVQyu22O8P .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uVQyu22O8P .header-text {
  padding: 2rem 1rem !important;
}
.cid-uVQyu22O8P .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uVQyu22O8P .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uVQyu22O8P .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uVQyu22O8P .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uVQyu22O8P .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uVQyu22O8P .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uVQyu22O8P .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uVQyu22O8P .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uVQyu22O8P .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uVQyu22O8P .container-fluid {
    padding: 0 1rem;
  }
  .cid-uVQyu22O8P .header-text {
    padding: 1rem !important;
  }
  .cid-uVQyu22O8P .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uVQyu22O8P .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uVQyu22O8P .panel-group {
    padding: 0;
  }
}
.cid-uVQyu22O8P .header-text,
.cid-uVQyu22O8P .sign {
  color: #000000;
  text-align: left;
}
.cid-uVQyu22O8P .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uVQyu2jT68 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uVQyu2jT68 .mbr-section-subtitle {
  color: #767676;
}
.cid-uVQyu2jT68 .mbr-section-subtitle U {
  color: #000000;
}
.cid-uVQyu2stzP .google-map {
  height: 25rem;
  position: relative;
}
.cid-uVQyu2stzP .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uVQyu2stzP .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-uVQyu2stzP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uVQyu2stzP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uVQyu2CAHw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uVQyu2CAHw .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uVQyu2CAHw .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uVQyu2CAHw .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uVQyu2CAHw .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uVQyu2CAHw .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uVQyu2CAHw .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uVQyu2CAHw .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uVQyu2CAHw .btn-social {
  border: none !important;
}
.cid-uVQyu2CAHw [class^="socicon-"]:before,
.cid-uVQyu2CAHw [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uVQyu2CAHw .btn {
    font-size: 20px !important;
  }
}
.cid-uVQyu2OWUz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uVQyu2OWUz .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVQyu2OWUz .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uVQyu2OWUz .media-wrap img {
  height: 6rem;
}
.cid-uVQyu2OWUz .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uVQyu2OWUz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uVQyu2OWUz .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uVQyu2OWUz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uVQyu2OWUz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uVQyu2OWUz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uVQyu2OWUz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uVQyu2OWUz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uVQyu2OWUz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uVQyu2OWUz .links {
  color: #000000;
  text-align: right;
}
.cid-uVQyu2OWUz .copyright > p {
  color: #000000;
}
.cid-uVQyu34XNu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uVQyu34XNu .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uY04WdPW5s .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uY04WdPW5s .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uY04WdPW5s a {
  font-style: normal;
}
.cid-uY04WdPW5s .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uY04WdPW5s .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uY04WdPW5s .nav-item:focus,
.cid-uY04WdPW5s .nav-link:focus {
  outline: none;
}
.cid-uY04WdPW5s .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uY04WdPW5s .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uY04WdPW5s .menu-logo {
  margin-right: auto;
}
.cid-uY04WdPW5s .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uY04WdPW5s .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uY04WdPW5s .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uY04WdPW5s .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uY04WdPW5s .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uY04WdPW5s .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uY04WdPW5s .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uY04WdPW5s .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uY04WdPW5s .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uY04WdPW5s .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uY04WdPW5s .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uY04WdPW5s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uY04WdPW5s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uY04WdPW5s .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uY04WdPW5s .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uY04WdPW5s .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uY04WdPW5s .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uY04WdPW5s .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uY04WdPW5s .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uY04WdPW5s .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uY04WdPW5s .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uY04WdPW5s .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uY04WdPW5s button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uY04WdPW5s button.navbar-toggler:focus {
  outline: none;
}
.cid-uY04WdPW5s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uY04WdPW5s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uY04WdPW5s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uY04WdPW5s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uY04WdPW5s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uY04WdPW5s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uY04WdPW5s nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uY04WdPW5s nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uY04WdPW5s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uY04WdPW5s .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uY04WdPW5s .collapsed .btn {
  display: -webkit-flex;
}
.cid-uY04WdPW5s .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uY04WdPW5s .collapsed .navbar-collapse.collapsing,
.cid-uY04WdPW5s .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uY04WdPW5s .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uY04WdPW5s .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uY04WdPW5s .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uY04WdPW5s .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uY04WdPW5s .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uY04WdPW5s .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uY04WdPW5s .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uY04WdPW5s .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uY04WdPW5s .collapsed button.navbar-toggler {
  display: block;
}
.cid-uY04WdPW5s .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uY04WdPW5s .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uY04WdPW5s .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uY04WdPW5s .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uY04WdPW5s .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uY04WdPW5s .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uY04WdPW5s.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uY04WdPW5s img {
    height: 3.8rem !important;
  }
  .cid-uY04WdPW5s .btn {
    display: -webkit-flex;
  }
  .cid-uY04WdPW5s button.navbar-toggler {
    display: block;
  }
  .cid-uY04WdPW5s .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uY04WdPW5s .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uY04WdPW5s .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uY04WdPW5s .navbar-collapse.collapsing,
  .cid-uY04WdPW5s .navbar-collapse.show {
    display: block !important;
  }
  .cid-uY04WdPW5s .navbar-collapse.collapsing .navbar-nav,
  .cid-uY04WdPW5s .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uY04WdPW5s .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uY04WdPW5s .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uY04WdPW5s .navbar-collapse.collapsing .navbar-buttons,
  .cid-uY04WdPW5s .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uY04WdPW5s .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uY04WdPW5s .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uY04WdPW5s .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uY04WdPW5s .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uY04WdPW5s .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uY04WdPW5s .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uY04WdPW5s .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uY04WdPW5s .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uY04WdPW5s .nav-link:hover,
.cid-uY04WdPW5s .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uY04WebQxz {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uY04WebQxz .mbr-section-subtitle {
  color: #000000;
}
.cid-uY04WebQxz H2 {
  color: #000000;
}
.cid-uY04WebQxz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uY04WebQxz .inner-container {
    width: 100% !important;
  }
}
.cid-uY04WebQxz H1 {
  color: #000000;
}
.cid-uY04WekrNr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uY04WekrNr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uY04WekrNr .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uY04WekrNr .mbr-text {
    text-align: center;
  }
}
.cid-uY04WekrNr .mbr-text,
.cid-uY04WekrNr .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uY04WekrNr H3 {
  color: #000000;
}
.cid-uY04WekrNr H1 {
  color: #000000;
}
.cid-uY04Wewbjc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uY04Wewbjc .container-fluid {
  padding: 0 3rem;
}
.cid-uY04Wewbjc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uY04Wewbjc .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uY04Wewbjc .header-text {
  padding: 2rem 1rem !important;
}
.cid-uY04Wewbjc .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uY04Wewbjc .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uY04Wewbjc .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uY04Wewbjc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uY04Wewbjc .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uY04Wewbjc .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uY04Wewbjc .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uY04Wewbjc .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uY04Wewbjc .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uY04Wewbjc .container-fluid {
    padding: 0 1rem;
  }
  .cid-uY04Wewbjc .header-text {
    padding: 1rem !important;
  }
  .cid-uY04Wewbjc .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uY04Wewbjc .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uY04Wewbjc .panel-group {
    padding: 0;
  }
}
.cid-uY04Wewbjc .header-text,
.cid-uY04Wewbjc .sign {
  color: #000000;
  text-align: left;
}
.cid-uY04Wewbjc .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uY04WeGdjZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uY04WeGdjZ .mbr-text,
.cid-uY04WeGdjZ blockquote {
  color: #767676;
}
.cid-uY04WeGdjZ .mbr-text {
  color: #000000;
}
.cid-uY04WeGdjZ .mbr-text P {
  text-align: justify;
}
.cid-uY04WeP3Uo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uY04WeP3Uo .container-fluid {
  padding: 0 3rem;
}
.cid-uY04WeP3Uo .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uY04WeP3Uo .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uY04WeP3Uo .header-text {
  padding: 2rem 1rem !important;
}
.cid-uY04WeP3Uo .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uY04WeP3Uo .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uY04WeP3Uo .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uY04WeP3Uo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uY04WeP3Uo .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uY04WeP3Uo .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uY04WeP3Uo .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uY04WeP3Uo .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uY04WeP3Uo .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uY04WeP3Uo .container-fluid {
    padding: 0 1rem;
  }
  .cid-uY04WeP3Uo .header-text {
    padding: 1rem !important;
  }
  .cid-uY04WeP3Uo .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uY04WeP3Uo .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uY04WeP3Uo .panel-group {
    padding: 0;
  }
}
.cid-uY04WeP3Uo .header-text,
.cid-uY04WeP3Uo .sign {
  color: #000000;
  text-align: left;
}
.cid-uY04WeP3Uo .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uY04WfHPeG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uY04WfHPeG .mbr-section-subtitle {
  color: #767676;
}
.cid-uY04WfHPeG .mbr-section-subtitle U {
  color: #000000;
}
.cid-uY04WfPLmi .google-map {
  height: 25rem;
  position: relative;
}
.cid-uY04WfPLmi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uY04WfPLmi .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-uY04WfPLmi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uY04WfPLmi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uY04WfYaUq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uY04WfYaUq .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uY04WfYaUq .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uY04WfYaUq .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uY04WfYaUq .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uY04WfYaUq .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uY04WfYaUq .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uY04WfYaUq .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uY04WfYaUq .btn-social {
  border: none !important;
}
.cid-uY04WfYaUq [class^="socicon-"]:before,
.cid-uY04WfYaUq [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uY04WfYaUq .btn {
    font-size: 20px !important;
  }
}
.cid-uY04WgaDEC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uY04WgaDEC .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uY04WgaDEC .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uY04WgaDEC .media-wrap img {
  height: 6rem;
}
.cid-uY04WgaDEC .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uY04WgaDEC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uY04WgaDEC .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uY04WgaDEC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uY04WgaDEC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uY04WgaDEC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uY04WgaDEC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uY04WgaDEC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uY04WgaDEC .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uY04WgaDEC .links {
  color: #000000;
  text-align: right;
}
.cid-uY04WgaDEC .copyright > p {
  color: #000000;
}
.cid-uY04WgqwMm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uY04WgqwMm .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZ2sWnDVx1 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZ2sWnDVx1 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZ2sWnDVx1 a {
  font-style: normal;
}
.cid-uZ2sWnDVx1 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZ2sWnDVx1 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZ2sWnDVx1 .nav-item:focus,
.cid-uZ2sWnDVx1 .nav-link:focus {
  outline: none;
}
.cid-uZ2sWnDVx1 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ2sWnDVx1 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZ2sWnDVx1 .menu-logo {
  margin-right: auto;
}
.cid-uZ2sWnDVx1 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ2sWnDVx1 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZ2sWnDVx1 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZ2sWnDVx1 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZ2sWnDVx1 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZ2sWnDVx1 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZ2sWnDVx1 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZ2sWnDVx1 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZ2sWnDVx1 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZ2sWnDVx1 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZ2sWnDVx1 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZ2sWnDVx1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZ2sWnDVx1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ2sWnDVx1 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZ2sWnDVx1 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ2sWnDVx1 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZ2sWnDVx1 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZ2sWnDVx1 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZ2sWnDVx1 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZ2sWnDVx1 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZ2sWnDVx1 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZ2sWnDVx1 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZ2sWnDVx1 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZ2sWnDVx1 button.navbar-toggler:focus {
  outline: none;
}
.cid-uZ2sWnDVx1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ2sWnDVx1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ2sWnDVx1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ2sWnDVx1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ2sWnDVx1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ2sWnDVx1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ2sWnDVx1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZ2sWnDVx1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZ2sWnDVx1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ2sWnDVx1 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ2sWnDVx1 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.collapsing,
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZ2sWnDVx1 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZ2sWnDVx1 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZ2sWnDVx1 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ2sWnDVx1 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZ2sWnDVx1 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZ2sWnDVx1 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZ2sWnDVx1 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZ2sWnDVx1.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ2sWnDVx1 img {
    height: 3.8rem !important;
  }
  .cid-uZ2sWnDVx1 .btn {
    display: -webkit-flex;
  }
  .cid-uZ2sWnDVx1 button.navbar-toggler {
    display: block;
  }
  .cid-uZ2sWnDVx1 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZ2sWnDVx1 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ2sWnDVx1 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZ2sWnDVx1 .navbar-collapse.collapsing,
  .cid-uZ2sWnDVx1 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZ2sWnDVx1 .navbar-collapse.collapsing .navbar-nav,
  .cid-uZ2sWnDVx1 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZ2sWnDVx1 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZ2sWnDVx1 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZ2sWnDVx1 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZ2sWnDVx1 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZ2sWnDVx1 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZ2sWnDVx1 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZ2sWnDVx1 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZ2sWnDVx1 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZ2sWnDVx1 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZ2sWnDVx1 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZ2sWnDVx1 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZ2sWnDVx1 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZ2sWnDVx1 .nav-link:hover,
.cid-uZ2sWnDVx1 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZ2sWo5dLh {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2sWo5dLh .mbr-section-subtitle {
  color: #000000;
}
.cid-uZ2sWo5dLh H2 {
  color: #000000;
}
.cid-uZ2sWo5dLh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZ2sWo5dLh .inner-container {
    width: 100% !important;
  }
}
.cid-uZ2sWo5dLh H1 {
  color: #000000;
}
.cid-uZ2sWod3f0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZ2sWod3f0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ2sWod3f0 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ2sWod3f0 .mbr-text {
    text-align: center;
  }
}
.cid-uZ2sWod3f0 .mbr-text,
.cid-uZ2sWod3f0 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ2sWod3f0 H3 {
  color: #000000;
}
.cid-uZ2sWod3f0 H1 {
  color: #000000;
}
.cid-uZ2sWoqpbT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2sWoqpbT .container-fluid {
  padding: 0 3rem;
}
.cid-uZ2sWoqpbT .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ2sWoqpbT .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ2sWoqpbT .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ2sWoqpbT .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ2sWoqpbT .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ2sWoqpbT .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ2sWoqpbT .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ2sWoqpbT .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZ2sWoqpbT .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ2sWoqpbT .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ2sWoqpbT .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ2sWoqpbT .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ2sWoqpbT .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ2sWoqpbT .header-text {
    padding: 1rem !important;
  }
  .cid-uZ2sWoqpbT .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ2sWoqpbT .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ2sWoqpbT .panel-group {
    padding: 0;
  }
}
.cid-uZ2sWoqpbT .header-text,
.cid-uZ2sWoqpbT .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ2sWoqpbT .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ2sWoDoNC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2sWoDoNC .mbr-text,
.cid-uZ2sWoDoNC blockquote {
  color: #767676;
}
.cid-uZ2sWoDoNC .mbr-text {
  color: #000000;
}
.cid-uZ2sWoDoNC .mbr-text P {
  text-align: justify;
}
.cid-uZ2sWoNQOG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2sWoNQOG .container-fluid {
  padding: 0 3rem;
}
.cid-uZ2sWoNQOG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ2sWoNQOG .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ2sWoNQOG .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ2sWoNQOG .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ2sWoNQOG .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ2sWoNQOG .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ2sWoNQOG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ2sWoNQOG .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZ2sWoNQOG .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ2sWoNQOG .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ2sWoNQOG .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ2sWoNQOG .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ2sWoNQOG .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ2sWoNQOG .header-text {
    padding: 1rem !important;
  }
  .cid-uZ2sWoNQOG .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ2sWoNQOG .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ2sWoNQOG .panel-group {
    padding: 0;
  }
}
.cid-uZ2sWoNQOG .header-text,
.cid-uZ2sWoNQOG .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ2sWoNQOG .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ2sWpnKOo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2sWpnKOo .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uZ2sWpnKOo .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZ2sWqopQa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2sWqopQa .mbr-section-subtitle {
  color: #767676;
}
.cid-uZ2sWqopQa .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZ2sWqyc20 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZ2sWqyc20 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZ2sWqyc20 .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-uZ2sWqyc20 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ2sWqyc20 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ2sWqJ6Zf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZ2sWqJ6Zf .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZ2sWqJ6Zf .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZ2sWqJ6Zf .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZ2sWqJ6Zf .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZ2sWqJ6Zf .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZ2sWqJ6Zf .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZ2sWqJ6Zf .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZ2sWqJ6Zf .btn-social {
  border: none !important;
}
.cid-uZ2sWqJ6Zf [class^="socicon-"]:before,
.cid-uZ2sWqJ6Zf [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZ2sWqJ6Zf .btn {
    font-size: 20px !important;
  }
}
.cid-uZ2sWqWwvA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZ2sWqWwvA .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ2sWqWwvA .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZ2sWqWwvA .media-wrap img {
  height: 6rem;
}
.cid-uZ2sWqWwvA .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZ2sWqWwvA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ2sWqWwvA .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZ2sWqWwvA .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZ2sWqWwvA .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZ2sWqWwvA .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZ2sWqWwvA .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZ2sWqWwvA .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZ2sWqWwvA .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZ2sWqWwvA .links {
  color: #000000;
  text-align: right;
}
.cid-uZ2sWqWwvA .copyright > p {
  color: #000000;
}
.cid-uZ2sWrrXTo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZ2sWrrXTo .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZ2Tvh7Kdh .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZ2Tvh7Kdh .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZ2Tvh7Kdh a {
  font-style: normal;
}
.cid-uZ2Tvh7Kdh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZ2Tvh7Kdh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZ2Tvh7Kdh .nav-item:focus,
.cid-uZ2Tvh7Kdh .nav-link:focus {
  outline: none;
}
.cid-uZ2Tvh7Kdh .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ2Tvh7Kdh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZ2Tvh7Kdh .menu-logo {
  margin-right: auto;
}
.cid-uZ2Tvh7Kdh .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ2Tvh7Kdh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZ2Tvh7Kdh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZ2Tvh7Kdh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZ2Tvh7Kdh .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZ2Tvh7Kdh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZ2Tvh7Kdh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZ2Tvh7Kdh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZ2Tvh7Kdh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZ2Tvh7Kdh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZ2Tvh7Kdh .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZ2Tvh7Kdh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZ2Tvh7Kdh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ2Tvh7Kdh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZ2Tvh7Kdh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ2Tvh7Kdh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZ2Tvh7Kdh .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZ2Tvh7Kdh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZ2Tvh7Kdh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZ2Tvh7Kdh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZ2Tvh7Kdh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZ2Tvh7Kdh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZ2Tvh7Kdh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZ2Tvh7Kdh button.navbar-toggler:focus {
  outline: none;
}
.cid-uZ2Tvh7Kdh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ2Tvh7Kdh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ2Tvh7Kdh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ2Tvh7Kdh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ2Tvh7Kdh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ2Tvh7Kdh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ2Tvh7Kdh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZ2Tvh7Kdh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZ2Tvh7Kdh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ2Tvh7Kdh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ2Tvh7Kdh .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.collapsing,
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZ2Tvh7Kdh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZ2Tvh7Kdh .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZ2Tvh7Kdh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ2Tvh7Kdh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZ2Tvh7Kdh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZ2Tvh7Kdh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZ2Tvh7Kdh .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZ2Tvh7Kdh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ2Tvh7Kdh img {
    height: 3.8rem !important;
  }
  .cid-uZ2Tvh7Kdh .btn {
    display: -webkit-flex;
  }
  .cid-uZ2Tvh7Kdh button.navbar-toggler {
    display: block;
  }
  .cid-uZ2Tvh7Kdh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZ2Tvh7Kdh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ2Tvh7Kdh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZ2Tvh7Kdh .navbar-collapse.collapsing,
  .cid-uZ2Tvh7Kdh .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZ2Tvh7Kdh .navbar-collapse.collapsing .navbar-nav,
  .cid-uZ2Tvh7Kdh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZ2Tvh7Kdh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZ2Tvh7Kdh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZ2Tvh7Kdh .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZ2Tvh7Kdh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZ2Tvh7Kdh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZ2Tvh7Kdh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZ2Tvh7Kdh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZ2Tvh7Kdh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZ2Tvh7Kdh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZ2Tvh7Kdh .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZ2Tvh7Kdh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZ2Tvh7Kdh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZ2Tvh7Kdh .nav-link:hover,
.cid-uZ2Tvh7Kdh .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZ2TvhsjX0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2TvhsjX0 .mbr-section-subtitle {
  color: #000000;
}
.cid-uZ2TvhsjX0 H2 {
  color: #000000;
}
.cid-uZ2TvhsjX0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZ2TvhsjX0 .inner-container {
    width: 100% !important;
  }
}
.cid-uZ2TvhsjX0 H1 {
  color: #000000;
}
.cid-uZ2TvhBwWw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZ2TvhBwWw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ2TvhBwWw .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ2TvhBwWw .mbr-text {
    text-align: center;
  }
}
.cid-uZ2TvhBwWw .mbr-text,
.cid-uZ2TvhBwWw .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ2TvhBwWw H3 {
  color: #000000;
}
.cid-uZ2TvhBwWw H1 {
  color: #000000;
}
.cid-uZ2TvhS4Rf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2TvhS4Rf .container-fluid {
  padding: 0 3rem;
}
.cid-uZ2TvhS4Rf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ2TvhS4Rf .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ2TvhS4Rf .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ2TvhS4Rf .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ2TvhS4Rf .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ2TvhS4Rf .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ2TvhS4Rf .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ2TvhS4Rf .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZ2TvhS4Rf .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ2TvhS4Rf .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ2TvhS4Rf .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ2TvhS4Rf .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ2TvhS4Rf .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ2TvhS4Rf .header-text {
    padding: 1rem !important;
  }
  .cid-uZ2TvhS4Rf .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ2TvhS4Rf .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ2TvhS4Rf .panel-group {
    padding: 0;
  }
}
.cid-uZ2TvhS4Rf .header-text,
.cid-uZ2TvhS4Rf .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ2TvhS4Rf .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ2Tvi5MW7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2Tvi5MW7 .mbr-text,
.cid-uZ2Tvi5MW7 blockquote {
  color: #767676;
}
.cid-uZ2Tvi5MW7 .mbr-text {
  color: #000000;
}
.cid-uZ2Tvi5MW7 .mbr-text P {
  text-align: justify;
}
.cid-uZ2TvifFf6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2TvifFf6 .container-fluid {
  padding: 0 3rem;
}
.cid-uZ2TvifFf6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ2TvifFf6 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ2TvifFf6 .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ2TvifFf6 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ2TvifFf6 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ2TvifFf6 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ2TvifFf6 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ2TvifFf6 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZ2TvifFf6 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ2TvifFf6 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ2TvifFf6 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ2TvifFf6 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ2TvifFf6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ2TvifFf6 .header-text {
    padding: 1rem !important;
  }
  .cid-uZ2TvifFf6 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ2TvifFf6 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ2TvifFf6 .panel-group {
    padding: 0;
  }
}
.cid-uZ2TvifFf6 .header-text,
.cid-uZ2TvifFf6 .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ2TvifFf6 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ2TviwP3e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2TviwP3e .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-uZ2TviwP3e .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZ2TviEGEI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ2TviEGEI .mbr-section-subtitle {
  color: #767676;
}
.cid-uZ2TviEGEI .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZ2TviOQjD .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZ2TviOQjD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZ2TviOQjD .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-uZ2TviOQjD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ2TviOQjD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ2TviXc6t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZ2TviXc6t .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZ2TviXc6t .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZ2TviXc6t .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZ2TviXc6t .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZ2TviXc6t .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZ2TviXc6t .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZ2TviXc6t .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZ2TviXc6t .btn-social {
  border: none !important;
}
.cid-uZ2TviXc6t [class^="socicon-"]:before,
.cid-uZ2TviXc6t [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZ2TviXc6t .btn {
    font-size: 20px !important;
  }
}
.cid-uZ2Tvj9y8Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZ2Tvj9y8Y .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ2Tvj9y8Y .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZ2Tvj9y8Y .media-wrap img {
  height: 6rem;
}
.cid-uZ2Tvj9y8Y .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZ2Tvj9y8Y .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ2Tvj9y8Y .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZ2Tvj9y8Y .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZ2Tvj9y8Y .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZ2Tvj9y8Y .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZ2Tvj9y8Y .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZ2Tvj9y8Y .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZ2Tvj9y8Y .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZ2Tvj9y8Y .links {
  color: #000000;
  text-align: right;
}
.cid-uZ2Tvj9y8Y .copyright > p {
  color: #000000;
}
.cid-uZ2Tvjr3oj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZ2Tvjr3oj .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZ33z81LR0 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZ33z81LR0 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZ33z81LR0 a {
  font-style: normal;
}
.cid-uZ33z81LR0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZ33z81LR0 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZ33z81LR0 .nav-item:focus,
.cid-uZ33z81LR0 .nav-link:focus {
  outline: none;
}
.cid-uZ33z81LR0 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ33z81LR0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZ33z81LR0 .menu-logo {
  margin-right: auto;
}
.cid-uZ33z81LR0 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ33z81LR0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZ33z81LR0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZ33z81LR0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZ33z81LR0 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZ33z81LR0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZ33z81LR0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZ33z81LR0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZ33z81LR0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZ33z81LR0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZ33z81LR0 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZ33z81LR0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZ33z81LR0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ33z81LR0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZ33z81LR0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ33z81LR0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZ33z81LR0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZ33z81LR0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZ33z81LR0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZ33z81LR0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZ33z81LR0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZ33z81LR0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZ33z81LR0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZ33z81LR0 button.navbar-toggler:focus {
  outline: none;
}
.cid-uZ33z81LR0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ33z81LR0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ33z81LR0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ33z81LR0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ33z81LR0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ33z81LR0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ33z81LR0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZ33z81LR0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZ33z81LR0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ33z81LR0 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ33z81LR0 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZ33z81LR0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZ33z81LR0 .collapsed .navbar-collapse.collapsing,
.cid-uZ33z81LR0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZ33z81LR0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZ33z81LR0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZ33z81LR0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZ33z81LR0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZ33z81LR0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZ33z81LR0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZ33z81LR0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZ33z81LR0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZ33z81LR0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZ33z81LR0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZ33z81LR0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ33z81LR0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZ33z81LR0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZ33z81LR0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZ33z81LR0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZ33z81LR0.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ33z81LR0 img {
    height: 3.8rem !important;
  }
  .cid-uZ33z81LR0 .btn {
    display: -webkit-flex;
  }
  .cid-uZ33z81LR0 button.navbar-toggler {
    display: block;
  }
  .cid-uZ33z81LR0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZ33z81LR0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ33z81LR0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZ33z81LR0 .navbar-collapse.collapsing,
  .cid-uZ33z81LR0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZ33z81LR0 .navbar-collapse.collapsing .navbar-nav,
  .cid-uZ33z81LR0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZ33z81LR0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZ33z81LR0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZ33z81LR0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZ33z81LR0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZ33z81LR0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZ33z81LR0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZ33z81LR0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZ33z81LR0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZ33z81LR0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZ33z81LR0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZ33z81LR0 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZ33z81LR0 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZ33z81LR0 .nav-link:hover,
.cid-uZ33z81LR0 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZ33z8qnBs {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ33z8qnBs .mbr-section-subtitle {
  color: #000000;
}
.cid-uZ33z8qnBs H2 {
  color: #000000;
}
.cid-uZ33z8qnBs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZ33z8qnBs .inner-container {
    width: 100% !important;
  }
}
.cid-uZ33z8qnBs H1 {
  color: #000000;
}
.cid-uZ33z8BHEj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZ33z8BHEj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ33z8BHEj .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ33z8BHEj .mbr-text {
    text-align: center;
  }
}
.cid-uZ33z8BHEj .mbr-text,
.cid-uZ33z8BHEj .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ33z8BHEj H3 {
  color: #000000;
}
.cid-uZ33z8BHEj H1 {
  color: #000000;
}
.cid-uZ3bU5QANp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ3bU5QANp .container-fluid {
  padding: 0 3rem;
}
.cid-uZ3bU5QANp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ3bU5QANp .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ3bU5QANp .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ3bU5QANp .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ3bU5QANp .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ3bU5QANp .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ3bU5QANp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ3bU5QANp .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZ3bU5QANp .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ3bU5QANp .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ3bU5QANp .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ3bU5QANp .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ3bU5QANp .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ3bU5QANp .header-text {
    padding: 1rem !important;
  }
  .cid-uZ3bU5QANp .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ3bU5QANp .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ3bU5QANp .panel-group {
    padding: 0;
  }
}
.cid-uZ3bU5QANp .header-text,
.cid-uZ3bU5QANp .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ3bU5QANp .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ33z9lWnv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ33z9lWnv .mbr-text,
.cid-uZ33z9lWnv blockquote {
  color: #767676;
}
.cid-uZ33z9lWnv .mbr-text {
  color: #000000;
}
.cid-uZ33z9lWnv .mbr-text P {
  text-align: justify;
}
.cid-uZ33z9wZNo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ33z9wZNo .container-fluid {
  padding: 0 3rem;
}
.cid-uZ33z9wZNo .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ33z9wZNo .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ33z9wZNo .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ33z9wZNo .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ33z9wZNo .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ33z9wZNo .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ33z9wZNo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ33z9wZNo .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZ33z9wZNo .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ33z9wZNo .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ33z9wZNo .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ33z9wZNo .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ33z9wZNo .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ33z9wZNo .header-text {
    padding: 1rem !important;
  }
  .cid-uZ33z9wZNo .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ33z9wZNo .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ33z9wZNo .panel-group {
    padding: 0;
  }
}
.cid-uZ33z9wZNo .header-text,
.cid-uZ33z9wZNo .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ33z9wZNo .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ33z9LPSs {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZ33z9LPSs .mbr-section-subtitle {
  color: #767676;
}
.cid-uZ33z9LPSs .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZ33z9UAwB .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZ33z9UAwB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZ33z9UAwB .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-uZ33z9UAwB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ33z9UAwB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ33za4cDZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZ33za4cDZ .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZ33za4cDZ .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZ33za4cDZ .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZ33za4cDZ .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZ33za4cDZ .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZ33za4cDZ .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZ33za4cDZ .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZ33za4cDZ .btn-social {
  border: none !important;
}
.cid-uZ33za4cDZ [class^="socicon-"]:before,
.cid-uZ33za4cDZ [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZ33za4cDZ .btn {
    font-size: 20px !important;
  }
}
.cid-uZ33zaeBpp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZ33zaeBpp .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ33zaeBpp .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZ33zaeBpp .media-wrap img {
  height: 6rem;
}
.cid-uZ33zaeBpp .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZ33zaeBpp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ33zaeBpp .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZ33zaeBpp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZ33zaeBpp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZ33zaeBpp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZ33zaeBpp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZ33zaeBpp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZ33zaeBpp .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZ33zaeBpp .links {
  color: #000000;
  text-align: right;
}
.cid-uZ33zaeBpp .copyright > p {
  color: #000000;
}
.cid-uZ33zaufus {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZ33zaufus .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZ8mtfgsC2 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZ8mtfgsC2 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZ8mtfgsC2 a {
  font-style: normal;
}
.cid-uZ8mtfgsC2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZ8mtfgsC2 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZ8mtfgsC2 .nav-item:focus,
.cid-uZ8mtfgsC2 .nav-link:focus {
  outline: none;
}
.cid-uZ8mtfgsC2 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ8mtfgsC2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZ8mtfgsC2 .menu-logo {
  margin-right: auto;
}
.cid-uZ8mtfgsC2 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZ8mtfgsC2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZ8mtfgsC2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZ8mtfgsC2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZ8mtfgsC2 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZ8mtfgsC2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZ8mtfgsC2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZ8mtfgsC2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZ8mtfgsC2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZ8mtfgsC2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZ8mtfgsC2 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZ8mtfgsC2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZ8mtfgsC2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ8mtfgsC2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZ8mtfgsC2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ8mtfgsC2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZ8mtfgsC2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZ8mtfgsC2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZ8mtfgsC2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZ8mtfgsC2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZ8mtfgsC2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZ8mtfgsC2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZ8mtfgsC2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZ8mtfgsC2 button.navbar-toggler:focus {
  outline: none;
}
.cid-uZ8mtfgsC2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZ8mtfgsC2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZ8mtfgsC2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ8mtfgsC2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZ8mtfgsC2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZ8mtfgsC2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ8mtfgsC2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZ8mtfgsC2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZ8mtfgsC2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZ8mtfgsC2 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ8mtfgsC2 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.collapsing,
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZ8mtfgsC2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZ8mtfgsC2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZ8mtfgsC2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZ8mtfgsC2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZ8mtfgsC2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZ8mtfgsC2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZ8mtfgsC2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZ8mtfgsC2.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ8mtfgsC2 img {
    height: 3.8rem !important;
  }
  .cid-uZ8mtfgsC2 .btn {
    display: -webkit-flex;
  }
  .cid-uZ8mtfgsC2 button.navbar-toggler {
    display: block;
  }
  .cid-uZ8mtfgsC2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZ8mtfgsC2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZ8mtfgsC2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZ8mtfgsC2 .navbar-collapse.collapsing,
  .cid-uZ8mtfgsC2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZ8mtfgsC2 .navbar-collapse.collapsing .navbar-nav,
  .cid-uZ8mtfgsC2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZ8mtfgsC2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZ8mtfgsC2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZ8mtfgsC2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZ8mtfgsC2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZ8mtfgsC2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZ8mtfgsC2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZ8mtfgsC2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZ8mtfgsC2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZ8mtfgsC2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZ8mtfgsC2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZ8mtfgsC2 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZ8mtfgsC2 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZ8mtfgsC2 .nav-link:hover,
.cid-uZ8mtfgsC2 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZ8mtfPWbC {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ8mtfPWbC .mbr-section-subtitle {
  color: #000000;
}
.cid-uZ8mtfPWbC H2 {
  color: #000000;
}
.cid-uZ8mtfPWbC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZ8mtfPWbC .inner-container {
    width: 100% !important;
  }
}
.cid-uZ8mtfPWbC H1 {
  color: #000000;
}
.cid-uZ8mtg1f4D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZ8mtg1f4D .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ8mtg1f4D .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ8mtg1f4D .mbr-text {
    text-align: center;
  }
}
.cid-uZ8mtg1f4D .mbr-text,
.cid-uZ8mtg1f4D .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZ8mtg1f4D H3 {
  color: #000000;
}
.cid-uZ8mtg1f4D H1 {
  color: #000000;
}
.cid-uZ8q6D2j9W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ8q6D2j9W .container-fluid {
  padding: 0 3rem;
}
.cid-uZ8q6D2j9W .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ8q6D2j9W .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ8q6D2j9W .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ8q6D2j9W .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ8q6D2j9W .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ8q6D2j9W .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ8q6D2j9W .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ8q6D2j9W .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZ8q6D2j9W .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ8q6D2j9W .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ8q6D2j9W .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ8q6D2j9W .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ8q6D2j9W .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ8q6D2j9W .header-text {
    padding: 1rem !important;
  }
  .cid-uZ8q6D2j9W .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ8q6D2j9W .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ8q6D2j9W .panel-group {
    padding: 0;
  }
}
.cid-uZ8q6D2j9W .header-text,
.cid-uZ8q6D2j9W .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ8q6D2j9W .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ8mtgKYWB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ8mtgKYWB .mbr-text,
.cid-uZ8mtgKYWB blockquote {
  color: #767676;
}
.cid-uZ8mtgKYWB .mbr-text {
  color: #000000;
}
.cid-uZ8mtgKYWB .mbr-text P {
  text-align: justify;
}
.cid-uZ8mth28qd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZ8mth28qd .container-fluid {
  padding: 0 3rem;
}
.cid-uZ8mth28qd .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZ8mth28qd .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZ8mth28qd .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZ8mth28qd .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZ8mth28qd .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZ8mth28qd .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZ8mth28qd .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZ8mth28qd .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZ8mth28qd .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZ8mth28qd .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZ8mth28qd .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZ8mth28qd .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZ8mth28qd .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZ8mth28qd .header-text {
    padding: 1rem !important;
  }
  .cid-uZ8mth28qd .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZ8mth28qd .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZ8mth28qd .panel-group {
    padding: 0;
  }
}
.cid-uZ8mth28qd .header-text,
.cid-uZ8mth28qd .sign {
  color: #000000;
  text-align: left;
}
.cid-uZ8mth28qd .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZ8mthtbTm {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZ8mthtbTm .mbr-section-subtitle {
  color: #767676;
}
.cid-uZ8mthtbTm .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZ8mthHidt .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZ8mthHidt .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZ8mthHidt .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-uZ8mthHidt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZ8mthHidt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZ8mthTHg2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZ8mthTHg2 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZ8mthTHg2 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZ8mthTHg2 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZ8mthTHg2 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZ8mthTHg2 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZ8mthTHg2 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZ8mthTHg2 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZ8mthTHg2 .btn-social {
  border: none !important;
}
.cid-uZ8mthTHg2 [class^="socicon-"]:before,
.cid-uZ8mthTHg2 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZ8mthTHg2 .btn {
    font-size: 20px !important;
  }
}
.cid-uZ8mti7Iyp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZ8mti7Iyp .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ8mti7Iyp .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZ8mti7Iyp .media-wrap img {
  height: 6rem;
}
.cid-uZ8mti7Iyp .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZ8mti7Iyp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZ8mti7Iyp .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZ8mti7Iyp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZ8mti7Iyp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZ8mti7Iyp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZ8mti7Iyp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZ8mti7Iyp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZ8mti7Iyp .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZ8mti7Iyp .links {
  color: #000000;
  text-align: right;
}
.cid-uZ8mti7Iyp .copyright > p {
  color: #000000;
}
.cid-uZ8mtiAxV7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZ8mtiAxV7 .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZwnS9S6dP .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZwnS9S6dP .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZwnS9S6dP a {
  font-style: normal;
}
.cid-uZwnS9S6dP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZwnS9S6dP .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZwnS9S6dP .nav-item:focus,
.cid-uZwnS9S6dP .nav-link:focus {
  outline: none;
}
.cid-uZwnS9S6dP .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZwnS9S6dP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZwnS9S6dP .menu-logo {
  margin-right: auto;
}
.cid-uZwnS9S6dP .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZwnS9S6dP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZwnS9S6dP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZwnS9S6dP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZwnS9S6dP .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZwnS9S6dP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZwnS9S6dP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZwnS9S6dP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZwnS9S6dP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZwnS9S6dP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZwnS9S6dP .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZwnS9S6dP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZwnS9S6dP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZwnS9S6dP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZwnS9S6dP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZwnS9S6dP .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZwnS9S6dP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZwnS9S6dP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZwnS9S6dP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZwnS9S6dP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZwnS9S6dP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZwnS9S6dP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZwnS9S6dP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZwnS9S6dP button.navbar-toggler:focus {
  outline: none;
}
.cid-uZwnS9S6dP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZwnS9S6dP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZwnS9S6dP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZwnS9S6dP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZwnS9S6dP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZwnS9S6dP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZwnS9S6dP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZwnS9S6dP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZwnS9S6dP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZwnS9S6dP .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZwnS9S6dP .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZwnS9S6dP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZwnS9S6dP .collapsed .navbar-collapse.collapsing,
.cid-uZwnS9S6dP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZwnS9S6dP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZwnS9S6dP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZwnS9S6dP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZwnS9S6dP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZwnS9S6dP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZwnS9S6dP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZwnS9S6dP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZwnS9S6dP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZwnS9S6dP .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZwnS9S6dP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZwnS9S6dP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZwnS9S6dP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZwnS9S6dP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZwnS9S6dP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZwnS9S6dP .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZwnS9S6dP.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZwnS9S6dP img {
    height: 3.8rem !important;
  }
  .cid-uZwnS9S6dP .btn {
    display: -webkit-flex;
  }
  .cid-uZwnS9S6dP button.navbar-toggler {
    display: block;
  }
  .cid-uZwnS9S6dP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZwnS9S6dP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZwnS9S6dP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZwnS9S6dP .navbar-collapse.collapsing,
  .cid-uZwnS9S6dP .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZwnS9S6dP .navbar-collapse.collapsing .navbar-nav,
  .cid-uZwnS9S6dP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZwnS9S6dP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZwnS9S6dP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZwnS9S6dP .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZwnS9S6dP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZwnS9S6dP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZwnS9S6dP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZwnS9S6dP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZwnS9S6dP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZwnS9S6dP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZwnS9S6dP .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZwnS9S6dP .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZwnS9S6dP .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZwnS9S6dP .nav-link:hover,
.cid-uZwnS9S6dP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZwnSacPXw {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZwnSacPXw .mbr-section-subtitle {
  color: #000000;
}
.cid-uZwnSacPXw H2 {
  color: #000000;
}
.cid-uZwnSacPXw .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZwnSacPXw .inner-container {
    width: 100% !important;
  }
}
.cid-uZwnSacPXw H1 {
  color: #000000;
}
.cid-uZwAaqNcGX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZwAaqNcGX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZwAaqNcGX .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZwAaqNcGX .mbr-text {
    text-align: center;
  }
}
.cid-uZwAaqNcGX .mbr-text,
.cid-uZwAaqNcGX .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZwAaqNcGX H3 {
  color: #000000;
}
.cid-uZwAaqNcGX H1 {
  color: #000000;
}
.cid-uZwAaqNcGX H2 {
  color: #000000;
}
.cid-uZwuhgI7wr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZwuhgI7wr .container-fluid {
  padding: 0 3rem;
}
.cid-uZwuhgI7wr .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZwuhgI7wr .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZwuhgI7wr .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZwuhgI7wr .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZwuhgI7wr .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZwuhgI7wr .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZwuhgI7wr .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZwuhgI7wr .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZwuhgI7wr .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZwuhgI7wr .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZwuhgI7wr .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZwuhgI7wr .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZwuhgI7wr .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZwuhgI7wr .header-text {
    padding: 1rem !important;
  }
  .cid-uZwuhgI7wr .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZwuhgI7wr .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZwuhgI7wr .panel-group {
    padding: 0;
  }
}
.cid-uZwuhgI7wr .header-text,
.cid-uZwuhgI7wr .sign {
  color: #000000;
  text-align: left;
}
.cid-uZwuhgI7wr .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZwnSaGX7Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZwnSaGX7Q .mbr-text,
.cid-uZwnSaGX7Q blockquote {
  color: #767676;
}
.cid-uZwnSaGX7Q .mbr-text {
  color: #000000;
}
.cid-uZwnSaGX7Q .mbr-text P {
  text-align: justify;
}
.cid-uZwnSaQSn9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZwnSaQSn9 .container-fluid {
  padding: 0 3rem;
}
.cid-uZwnSaQSn9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZwnSaQSn9 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZwnSaQSn9 .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZwnSaQSn9 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZwnSaQSn9 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZwnSaQSn9 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZwnSaQSn9 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZwnSaQSn9 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZwnSaQSn9 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZwnSaQSn9 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZwnSaQSn9 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZwnSaQSn9 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZwnSaQSn9 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZwnSaQSn9 .header-text {
    padding: 1rem !important;
  }
  .cid-uZwnSaQSn9 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZwnSaQSn9 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZwnSaQSn9 .panel-group {
    padding: 0;
  }
}
.cid-uZwnSaQSn9 .header-text,
.cid-uZwnSaQSn9 .sign {
  color: #000000;
  text-align: left;
}
.cid-uZwnSaQSn9 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZwnSb7I9Z {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZwnSb7I9Z .mbr-section-subtitle {
  color: #767676;
}
.cid-uZwnSb7I9Z .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZwnSbgxjH .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZwnSbgxjH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZwnSbgxjH .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-uZwnSbgxjH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZwnSbgxjH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZwnSbqiii {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZwnSbqiii .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZwnSbqiii .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZwnSbqiii .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZwnSbqiii .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZwnSbqiii .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZwnSbqiii .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZwnSbqiii .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZwnSbqiii .btn-social {
  border: none !important;
}
.cid-uZwnSbqiii [class^="socicon-"]:before,
.cid-uZwnSbqiii [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZwnSbqiii .btn {
    font-size: 20px !important;
  }
}
.cid-uZwnSbADfm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZwnSbADfm .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZwnSbADfm .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZwnSbADfm .media-wrap img {
  height: 6rem;
}
.cid-uZwnSbADfm .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZwnSbADfm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZwnSbADfm .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZwnSbADfm .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZwnSbADfm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZwnSbADfm .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZwnSbADfm .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZwnSbADfm .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZwnSbADfm .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZwnSbADfm .links {
  color: #000000;
  text-align: right;
}
.cid-uZwnSbADfm .copyright > p {
  color: #000000;
}
.cid-uZwnSbPEra {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZwnSbPEra .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZCcOcsoR5 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZCcOcsoR5 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZCcOcsoR5 a {
  font-style: normal;
}
.cid-uZCcOcsoR5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZCcOcsoR5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZCcOcsoR5 .nav-item:focus,
.cid-uZCcOcsoR5 .nav-link:focus {
  outline: none;
}
.cid-uZCcOcsoR5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZCcOcsoR5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZCcOcsoR5 .menu-logo {
  margin-right: auto;
}
.cid-uZCcOcsoR5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZCcOcsoR5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZCcOcsoR5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZCcOcsoR5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZCcOcsoR5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZCcOcsoR5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZCcOcsoR5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZCcOcsoR5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZCcOcsoR5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZCcOcsoR5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZCcOcsoR5 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZCcOcsoR5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZCcOcsoR5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZCcOcsoR5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZCcOcsoR5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZCcOcsoR5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZCcOcsoR5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZCcOcsoR5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZCcOcsoR5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZCcOcsoR5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZCcOcsoR5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZCcOcsoR5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZCcOcsoR5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZCcOcsoR5 button.navbar-toggler:focus {
  outline: none;
}
.cid-uZCcOcsoR5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZCcOcsoR5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZCcOcsoR5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZCcOcsoR5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZCcOcsoR5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZCcOcsoR5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZCcOcsoR5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZCcOcsoR5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZCcOcsoR5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZCcOcsoR5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZCcOcsoR5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZCcOcsoR5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.collapsing,
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZCcOcsoR5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZCcOcsoR5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZCcOcsoR5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZCcOcsoR5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZCcOcsoR5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZCcOcsoR5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZCcOcsoR5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZCcOcsoR5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZCcOcsoR5.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZCcOcsoR5 img {
    height: 3.8rem !important;
  }
  .cid-uZCcOcsoR5 .btn {
    display: -webkit-flex;
  }
  .cid-uZCcOcsoR5 button.navbar-toggler {
    display: block;
  }
  .cid-uZCcOcsoR5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZCcOcsoR5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZCcOcsoR5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZCcOcsoR5 .navbar-collapse.collapsing,
  .cid-uZCcOcsoR5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZCcOcsoR5 .navbar-collapse.collapsing .navbar-nav,
  .cid-uZCcOcsoR5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZCcOcsoR5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZCcOcsoR5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZCcOcsoR5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZCcOcsoR5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZCcOcsoR5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZCcOcsoR5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZCcOcsoR5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZCcOcsoR5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZCcOcsoR5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZCcOcsoR5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZCcOcsoR5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZCcOcsoR5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZCcOcsoR5 .nav-link:hover,
.cid-uZCcOcsoR5 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZCcOcTj8q {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCcOcTj8q .mbr-section-subtitle {
  color: #000000;
}
.cid-uZCcOcTj8q H2 {
  color: #000000;
}
.cid-uZCcOcTj8q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZCcOcTj8q .inner-container {
    width: 100% !important;
  }
}
.cid-uZCcOcTj8q H1 {
  color: #000000;
}
.cid-uZCcOd3AYp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZCcOd3AYp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZCcOd3AYp .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZCcOd3AYp .mbr-text {
    text-align: center;
  }
}
.cid-uZCcOd3AYp .mbr-text,
.cid-uZCcOd3AYp .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZCcOd3AYp H3 {
  color: #000000;
}
.cid-uZCcOd3AYp H1 {
  color: #000000;
}
.cid-uZCcOd3AYp H2 {
  color: #000000;
}
.cid-uZCykLET2b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCykLET2b .container-fluid {
  padding: 0 3rem;
}
.cid-uZCykLET2b .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZCykLET2b .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZCykLET2b .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZCykLET2b .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZCykLET2b .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZCykLET2b .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZCykLET2b .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZCykLET2b .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZCykLET2b .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZCykLET2b .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZCykLET2b .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZCykLET2b .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZCykLET2b .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZCykLET2b .header-text {
    padding: 1rem !important;
  }
  .cid-uZCykLET2b .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZCykLET2b .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZCykLET2b .panel-group {
    padding: 0;
  }
}
.cid-uZCykLET2b .header-text,
.cid-uZCykLET2b .sign {
  color: #000000;
  text-align: left;
}
.cid-uZCykLET2b .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZCcOdsgwp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCcOdsgwp .mbr-text,
.cid-uZCcOdsgwp blockquote {
  color: #767676;
}
.cid-uZCcOdsgwp .mbr-text {
  color: #000000;
}
.cid-uZCcOdsgwp .mbr-text P {
  text-align: justify;
}
.cid-uZCcOdA7B3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCcOdA7B3 .container-fluid {
  padding: 0 3rem;
}
.cid-uZCcOdA7B3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZCcOdA7B3 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZCcOdA7B3 .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZCcOdA7B3 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZCcOdA7B3 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZCcOdA7B3 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZCcOdA7B3 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZCcOdA7B3 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZCcOdA7B3 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZCcOdA7B3 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZCcOdA7B3 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZCcOdA7B3 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZCcOdA7B3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZCcOdA7B3 .header-text {
    padding: 1rem !important;
  }
  .cid-uZCcOdA7B3 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZCcOdA7B3 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZCcOdA7B3 .panel-group {
    padding: 0;
  }
}
.cid-uZCcOdA7B3 .header-text,
.cid-uZCcOdA7B3 .sign {
  color: #000000;
  text-align: left;
}
.cid-uZCcOdA7B3 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZCcOdSkdh {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZCcOdSkdh .mbr-section-subtitle {
  color: #767676;
}
.cid-uZCcOdSkdh .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZCcOe3JiU .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZCcOe3JiU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZCcOe3JiU .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-uZCcOe3JiU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZCcOe3JiU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZCcOecKcO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZCcOecKcO .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZCcOecKcO .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZCcOecKcO .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZCcOecKcO .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZCcOecKcO .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZCcOecKcO .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZCcOecKcO .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZCcOecKcO .btn-social {
  border: none !important;
}
.cid-uZCcOecKcO [class^="socicon-"]:before,
.cid-uZCcOecKcO [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZCcOecKcO .btn {
    font-size: 20px !important;
  }
}
.cid-uZCcOennOj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZCcOennOj .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZCcOennOj .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZCcOennOj .media-wrap img {
  height: 6rem;
}
.cid-uZCcOennOj .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZCcOennOj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZCcOennOj .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZCcOennOj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZCcOennOj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZCcOennOj .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZCcOennOj .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZCcOennOj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZCcOennOj .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZCcOennOj .links {
  color: #000000;
  text-align: right;
}
.cid-uZCcOennOj .copyright > p {
  color: #000000;
}
.cid-uZCcOeDGBm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZCcOeDGBm .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZCPxopV1A .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZCPxopV1A .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZCPxopV1A a {
  font-style: normal;
}
.cid-uZCPxopV1A .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZCPxopV1A .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZCPxopV1A .nav-item:focus,
.cid-uZCPxopV1A .nav-link:focus {
  outline: none;
}
.cid-uZCPxopV1A .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZCPxopV1A .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZCPxopV1A .menu-logo {
  margin-right: auto;
}
.cid-uZCPxopV1A .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZCPxopV1A .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZCPxopV1A .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZCPxopV1A .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZCPxopV1A .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZCPxopV1A .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZCPxopV1A .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZCPxopV1A .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZCPxopV1A .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZCPxopV1A .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZCPxopV1A .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZCPxopV1A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZCPxopV1A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZCPxopV1A .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZCPxopV1A .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZCPxopV1A .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZCPxopV1A .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZCPxopV1A .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZCPxopV1A .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZCPxopV1A .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZCPxopV1A .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZCPxopV1A .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZCPxopV1A button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZCPxopV1A button.navbar-toggler:focus {
  outline: none;
}
.cid-uZCPxopV1A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZCPxopV1A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZCPxopV1A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZCPxopV1A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZCPxopV1A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZCPxopV1A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZCPxopV1A nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZCPxopV1A nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZCPxopV1A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZCPxopV1A .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZCPxopV1A .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZCPxopV1A .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZCPxopV1A .collapsed .navbar-collapse.collapsing,
.cid-uZCPxopV1A .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZCPxopV1A .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZCPxopV1A .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZCPxopV1A .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZCPxopV1A .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZCPxopV1A .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZCPxopV1A .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZCPxopV1A .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZCPxopV1A .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZCPxopV1A .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZCPxopV1A .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZCPxopV1A .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZCPxopV1A .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZCPxopV1A .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZCPxopV1A .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZCPxopV1A .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZCPxopV1A.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZCPxopV1A img {
    height: 3.8rem !important;
  }
  .cid-uZCPxopV1A .btn {
    display: -webkit-flex;
  }
  .cid-uZCPxopV1A button.navbar-toggler {
    display: block;
  }
  .cid-uZCPxopV1A .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZCPxopV1A .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZCPxopV1A .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZCPxopV1A .navbar-collapse.collapsing,
  .cid-uZCPxopV1A .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZCPxopV1A .navbar-collapse.collapsing .navbar-nav,
  .cid-uZCPxopV1A .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZCPxopV1A .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZCPxopV1A .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZCPxopV1A .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZCPxopV1A .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZCPxopV1A .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZCPxopV1A .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZCPxopV1A .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZCPxopV1A .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZCPxopV1A .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZCPxopV1A .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZCPxopV1A .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZCPxopV1A .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZCPxopV1A .nav-link:hover,
.cid-uZCPxopV1A .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZCPxoSFtB {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCPxoSFtB .mbr-section-subtitle {
  color: #000000;
}
.cid-uZCPxoSFtB H2 {
  color: #000000;
}
.cid-uZCPxoSFtB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZCPxoSFtB .inner-container {
    width: 100% !important;
  }
}
.cid-uZCPxoSFtB H1 {
  color: #000000;
}
.cid-uZCPxp5XTw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZCPxp5XTw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZCPxp5XTw .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZCPxp5XTw .mbr-text {
    text-align: center;
  }
}
.cid-uZCPxp5XTw .mbr-text,
.cid-uZCPxp5XTw .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZCPxp5XTw H3 {
  color: #000000;
}
.cid-uZCPxp5XTw H1 {
  color: #000000;
}
.cid-uZCPxp5XTw H2 {
  color: #000000;
}
.cid-uZCPxplrEe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCPxplrEe .container-fluid {
  padding: 0 3rem;
}
.cid-uZCPxplrEe .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZCPxplrEe .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZCPxplrEe .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZCPxplrEe .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZCPxplrEe .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZCPxplrEe .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZCPxplrEe .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZCPxplrEe .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZCPxplrEe .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZCPxplrEe .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZCPxplrEe .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZCPxplrEe .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZCPxplrEe .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZCPxplrEe .header-text {
    padding: 1rem !important;
  }
  .cid-uZCPxplrEe .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZCPxplrEe .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZCPxplrEe .panel-group {
    padding: 0;
  }
}
.cid-uZCPxplrEe .header-text,
.cid-uZCPxplrEe .sign {
  color: #000000;
  text-align: left;
}
.cid-uZCPxplrEe .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZCPxpzxWt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCPxpzxWt .mbr-text,
.cid-uZCPxpzxWt blockquote {
  color: #767676;
}
.cid-uZCPxpzxWt .mbr-text {
  color: #000000;
}
.cid-uZCPxpzxWt .mbr-text P {
  text-align: justify;
}
.cid-uZCPxpKDAG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZCPxpKDAG .container-fluid {
  padding: 0 3rem;
}
.cid-uZCPxpKDAG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZCPxpKDAG .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZCPxpKDAG .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZCPxpKDAG .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZCPxpKDAG .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZCPxpKDAG .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZCPxpKDAG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZCPxpKDAG .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZCPxpKDAG .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZCPxpKDAG .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZCPxpKDAG .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZCPxpKDAG .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZCPxpKDAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZCPxpKDAG .header-text {
    padding: 1rem !important;
  }
  .cid-uZCPxpKDAG .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZCPxpKDAG .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZCPxpKDAG .panel-group {
    padding: 0;
  }
}
.cid-uZCPxpKDAG .header-text,
.cid-uZCPxpKDAG .sign {
  color: #000000;
  text-align: left;
}
.cid-uZCPxpKDAG .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZCPxq3lst {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZCPxq3lst .mbr-section-subtitle {
  color: #767676;
}
.cid-uZCPxq3lst .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZCPxqdOd5 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZCPxqdOd5 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZCPxqdOd5 .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-uZCPxqdOd5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZCPxqdOd5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZCPxqoel2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZCPxqoel2 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZCPxqoel2 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZCPxqoel2 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZCPxqoel2 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZCPxqoel2 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZCPxqoel2 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZCPxqoel2 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZCPxqoel2 .btn-social {
  border: none !important;
}
.cid-uZCPxqoel2 [class^="socicon-"]:before,
.cid-uZCPxqoel2 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZCPxqoel2 .btn {
    font-size: 20px !important;
  }
}
.cid-uZCPxqCDwn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZCPxqCDwn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZCPxqCDwn .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZCPxqCDwn .media-wrap img {
  height: 6rem;
}
.cid-uZCPxqCDwn .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZCPxqCDwn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZCPxqCDwn .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZCPxqCDwn .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZCPxqCDwn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZCPxqCDwn .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZCPxqCDwn .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZCPxqCDwn .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZCPxqCDwn .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZCPxqCDwn .links {
  color: #000000;
  text-align: right;
}
.cid-uZCPxqCDwn .copyright > p {
  color: #000000;
}
.cid-uZCPxqXZBp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZCPxqXZBp .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZHuBcSRes .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZHuBcSRes .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZHuBcSRes a {
  font-style: normal;
}
.cid-uZHuBcSRes .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZHuBcSRes .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZHuBcSRes .nav-item:focus,
.cid-uZHuBcSRes .nav-link:focus {
  outline: none;
}
.cid-uZHuBcSRes .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZHuBcSRes .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZHuBcSRes .menu-logo {
  margin-right: auto;
}
.cid-uZHuBcSRes .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZHuBcSRes .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZHuBcSRes .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZHuBcSRes .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZHuBcSRes .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZHuBcSRes .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZHuBcSRes .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZHuBcSRes .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZHuBcSRes .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZHuBcSRes .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZHuBcSRes .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZHuBcSRes .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZHuBcSRes .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZHuBcSRes .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZHuBcSRes .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZHuBcSRes .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZHuBcSRes .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZHuBcSRes .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZHuBcSRes .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZHuBcSRes .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZHuBcSRes .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZHuBcSRes .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZHuBcSRes button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZHuBcSRes button.navbar-toggler:focus {
  outline: none;
}
.cid-uZHuBcSRes button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZHuBcSRes button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZHuBcSRes button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZHuBcSRes button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZHuBcSRes button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZHuBcSRes nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZHuBcSRes nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZHuBcSRes nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZHuBcSRes nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZHuBcSRes .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZHuBcSRes .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZHuBcSRes .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZHuBcSRes .collapsed .navbar-collapse.collapsing,
.cid-uZHuBcSRes .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZHuBcSRes .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZHuBcSRes .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZHuBcSRes .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZHuBcSRes .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZHuBcSRes .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZHuBcSRes .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZHuBcSRes .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZHuBcSRes .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZHuBcSRes .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZHuBcSRes .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZHuBcSRes .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZHuBcSRes .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZHuBcSRes .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZHuBcSRes .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZHuBcSRes .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZHuBcSRes.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZHuBcSRes img {
    height: 3.8rem !important;
  }
  .cid-uZHuBcSRes .btn {
    display: -webkit-flex;
  }
  .cid-uZHuBcSRes button.navbar-toggler {
    display: block;
  }
  .cid-uZHuBcSRes .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZHuBcSRes .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZHuBcSRes .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZHuBcSRes .navbar-collapse.collapsing,
  .cid-uZHuBcSRes .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZHuBcSRes .navbar-collapse.collapsing .navbar-nav,
  .cid-uZHuBcSRes .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZHuBcSRes .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZHuBcSRes .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZHuBcSRes .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZHuBcSRes .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZHuBcSRes .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZHuBcSRes .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZHuBcSRes .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZHuBcSRes .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZHuBcSRes .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZHuBcSRes .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZHuBcSRes .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZHuBcSRes .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZHuBcSRes .nav-link:hover,
.cid-uZHuBcSRes .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZHuBdfuFg {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHuBdfuFg .mbr-section-subtitle {
  color: #000000;
}
.cid-uZHuBdfuFg H2 {
  color: #000000;
}
.cid-uZHuBdfuFg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZHuBdfuFg .inner-container {
    width: 100% !important;
  }
}
.cid-uZHuBdfuFg H1 {
  color: #000000;
}
.cid-uZHuBdokNb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZHuBdokNb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZHuBdokNb .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZHuBdokNb .mbr-text {
    text-align: center;
  }
}
.cid-uZHuBdokNb .mbr-text,
.cid-uZHuBdokNb .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZHuBdokNb H3 {
  color: #000000;
}
.cid-uZHuBdokNb H1 {
  color: #000000;
}
.cid-uZHuBdokNb H2 {
  color: #000000;
}
.cid-uZHyDd7iIh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHyDd7iIh .container-fluid {
  padding: 0 3rem;
}
.cid-uZHyDd7iIh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZHyDd7iIh .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZHyDd7iIh .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZHyDd7iIh .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZHyDd7iIh .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZHyDd7iIh .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZHyDd7iIh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZHyDd7iIh .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZHyDd7iIh .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZHyDd7iIh .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZHyDd7iIh .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZHyDd7iIh .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZHyDd7iIh .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZHyDd7iIh .header-text {
    padding: 1rem !important;
  }
  .cid-uZHyDd7iIh .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZHyDd7iIh .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZHyDd7iIh .panel-group {
    padding: 0;
  }
}
.cid-uZHyDd7iIh .header-text,
.cid-uZHyDd7iIh .sign {
  color: #000000;
  text-align: left;
}
.cid-uZHyDd7iIh .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZHuBdOdKh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHuBdOdKh .mbr-text,
.cid-uZHuBdOdKh blockquote {
  color: #767676;
}
.cid-uZHuBdOdKh .mbr-text {
  color: #000000;
}
.cid-uZHuBdOdKh .mbr-text P {
  text-align: justify;
}
.cid-uZHuBdXmS4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHuBdXmS4 .container-fluid {
  padding: 0 3rem;
}
.cid-uZHuBdXmS4 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZHuBdXmS4 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZHuBdXmS4 .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZHuBdXmS4 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZHuBdXmS4 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZHuBdXmS4 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZHuBdXmS4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZHuBdXmS4 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZHuBdXmS4 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZHuBdXmS4 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZHuBdXmS4 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZHuBdXmS4 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZHuBdXmS4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZHuBdXmS4 .header-text {
    padding: 1rem !important;
  }
  .cid-uZHuBdXmS4 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZHuBdXmS4 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZHuBdXmS4 .panel-group {
    padding: 0;
  }
}
.cid-uZHuBdXmS4 .header-text,
.cid-uZHuBdXmS4 .sign {
  color: #000000;
  text-align: left;
}
.cid-uZHuBdXmS4 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZHuBejkIw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZHuBejkIw .mbr-section-subtitle {
  color: #767676;
}
.cid-uZHuBejkIw .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZHuBeu5WF .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZHuBeu5WF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZHuBeu5WF .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-uZHuBeu5WF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZHuBeu5WF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZHuBeGeDR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZHuBeGeDR .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZHuBeGeDR .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZHuBeGeDR .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZHuBeGeDR .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZHuBeGeDR .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZHuBeGeDR .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZHuBeGeDR .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZHuBeGeDR .btn-social {
  border: none !important;
}
.cid-uZHuBeGeDR [class^="socicon-"]:before,
.cid-uZHuBeGeDR [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZHuBeGeDR .btn {
    font-size: 20px !important;
  }
}
.cid-uZHuBeTjDl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZHuBeTjDl .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZHuBeTjDl .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZHuBeTjDl .media-wrap img {
  height: 6rem;
}
.cid-uZHuBeTjDl .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZHuBeTjDl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZHuBeTjDl .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZHuBeTjDl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZHuBeTjDl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZHuBeTjDl .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZHuBeTjDl .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZHuBeTjDl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZHuBeTjDl .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZHuBeTjDl .links {
  color: #000000;
  text-align: right;
}
.cid-uZHuBeTjDl .copyright > p {
  color: #000000;
}
.cid-uZHuBfaufg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZHuBfaufg .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uZHYw8pepg .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-uZHYw8pepg .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZHYw8pepg a {
  font-style: normal;
}
.cid-uZHYw8pepg .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZHYw8pepg .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uZHYw8pepg .nav-item:focus,
.cid-uZHYw8pepg .nav-link:focus {
  outline: none;
}
.cid-uZHYw8pepg .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZHYw8pepg .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZHYw8pepg .menu-logo {
  margin-right: auto;
}
.cid-uZHYw8pepg .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uZHYw8pepg .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZHYw8pepg .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZHYw8pepg .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZHYw8pepg .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-uZHYw8pepg .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZHYw8pepg .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZHYw8pepg .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZHYw8pepg .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZHYw8pepg .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZHYw8pepg .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZHYw8pepg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZHYw8pepg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZHYw8pepg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZHYw8pepg .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZHYw8pepg .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZHYw8pepg .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZHYw8pepg .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZHYw8pepg .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZHYw8pepg .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZHYw8pepg .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZHYw8pepg .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZHYw8pepg button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZHYw8pepg button.navbar-toggler:focus {
  outline: none;
}
.cid-uZHYw8pepg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uZHYw8pepg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZHYw8pepg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZHYw8pepg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZHYw8pepg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZHYw8pepg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZHYw8pepg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZHYw8pepg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZHYw8pepg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZHYw8pepg .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZHYw8pepg .collapsed .btn {
  display: -webkit-flex;
}
.cid-uZHYw8pepg .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZHYw8pepg .collapsed .navbar-collapse.collapsing,
.cid-uZHYw8pepg .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZHYw8pepg .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZHYw8pepg .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZHYw8pepg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZHYw8pepg .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZHYw8pepg .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZHYw8pepg .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZHYw8pepg .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZHYw8pepg .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZHYw8pepg .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZHYw8pepg .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZHYw8pepg .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZHYw8pepg .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZHYw8pepg .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZHYw8pepg .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZHYw8pepg .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZHYw8pepg.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZHYw8pepg img {
    height: 3.8rem !important;
  }
  .cid-uZHYw8pepg .btn {
    display: -webkit-flex;
  }
  .cid-uZHYw8pepg button.navbar-toggler {
    display: block;
  }
  .cid-uZHYw8pepg .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZHYw8pepg .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZHYw8pepg .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZHYw8pepg .navbar-collapse.collapsing,
  .cid-uZHYw8pepg .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZHYw8pepg .navbar-collapse.collapsing .navbar-nav,
  .cid-uZHYw8pepg .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZHYw8pepg .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZHYw8pepg .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZHYw8pepg .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZHYw8pepg .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZHYw8pepg .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZHYw8pepg .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZHYw8pepg .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZHYw8pepg .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZHYw8pepg .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZHYw8pepg .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZHYw8pepg .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uZHYw8pepg .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uZHYw8pepg .nav-link:hover,
.cid-uZHYw8pepg .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZHYw8LINd {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHYw8LINd .mbr-section-subtitle {
  color: #000000;
}
.cid-uZHYw8LINd H2 {
  color: #000000;
}
.cid-uZHYw8LINd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uZHYw8LINd .inner-container {
    width: 100% !important;
  }
}
.cid-uZHYw8LINd H1 {
  color: #000000;
}
.cid-uZHYw8UYtD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uZHYw8UYtD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uZHYw8UYtD .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uZHYw8UYtD .mbr-text {
    text-align: center;
  }
}
.cid-uZHYw8UYtD .mbr-text,
.cid-uZHYw8UYtD .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uZHYw8UYtD H3 {
  color: #000000;
}
.cid-uZHYw8UYtD H1 {
  color: #000000;
}
.cid-uZHYw8UYtD H2 {
  color: #000000;
}
.cid-uZHYw99A6z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHYw99A6z .container-fluid {
  padding: 0 3rem;
}
.cid-uZHYw99A6z .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZHYw99A6z .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZHYw99A6z .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZHYw99A6z .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZHYw99A6z .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZHYw99A6z .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZHYw99A6z .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZHYw99A6z .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-uZHYw99A6z .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZHYw99A6z .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZHYw99A6z .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZHYw99A6z .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZHYw99A6z .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZHYw99A6z .header-text {
    padding: 1rem !important;
  }
  .cid-uZHYw99A6z .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZHYw99A6z .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZHYw99A6z .panel-group {
    padding: 0;
  }
}
.cid-uZHYw99A6z .header-text,
.cid-uZHYw99A6z .sign {
  color: #000000;
  text-align: left;
}
.cid-uZHYw99A6z .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZHYw9mSKL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHYw9mSKL .mbr-text,
.cid-uZHYw9mSKL blockquote {
  color: #767676;
}
.cid-uZHYw9mSKL .mbr-text {
  color: #000000;
}
.cid-uZHYw9mSKL .mbr-text P {
  text-align: justify;
}
.cid-uZHYw9vBrU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uZHYw9vBrU .container-fluid {
  padding: 0 3rem;
}
.cid-uZHYw9vBrU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-uZHYw9vBrU .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-uZHYw9vBrU .header-text {
  padding: 2rem 1rem !important;
}
.cid-uZHYw9vBrU .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-uZHYw9vBrU .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-uZHYw9vBrU .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-uZHYw9vBrU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uZHYw9vBrU .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-uZHYw9vBrU .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-uZHYw9vBrU .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-uZHYw9vBrU .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-uZHYw9vBrU .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-uZHYw9vBrU .container-fluid {
    padding: 0 1rem;
  }
  .cid-uZHYw9vBrU .header-text {
    padding: 1rem !important;
  }
  .cid-uZHYw9vBrU .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-uZHYw9vBrU .panel-body {
    width: calc(100% - 48px);
  }
  .cid-uZHYw9vBrU .panel-group {
    padding: 0;
  }
}
.cid-uZHYw9vBrU .header-text,
.cid-uZHYw9vBrU .sign {
  color: #000000;
  text-align: left;
}
.cid-uZHYw9vBrU .panel-text {
  text-align: left;
  color: #000000;
}
.cid-uZHYw9Rf9P {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZHYw9Rf9P .mbr-section-subtitle {
  color: #767676;
}
.cid-uZHYw9Rf9P .mbr-section-subtitle U {
  color: #000000;
}
.cid-uZHYwa1wJq .google-map {
  height: 25rem;
  position: relative;
}
.cid-uZHYwa1wJq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uZHYwa1wJq .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-uZHYwa1wJq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZHYwa1wJq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uZHYwacugh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uZHYwacugh .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-uZHYwacugh .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-uZHYwacugh .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-uZHYwacugh .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-uZHYwacugh .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-uZHYwacugh .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-uZHYwacugh .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-uZHYwacugh .btn-social {
  border: none !important;
}
.cid-uZHYwacugh [class^="socicon-"]:before,
.cid-uZHYwacugh [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-uZHYwacugh .btn {
    font-size: 20px !important;
  }
}
.cid-uZHYwapG7v {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZHYwapG7v .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZHYwapG7v .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uZHYwapG7v .media-wrap img {
  height: 6rem;
}
.cid-uZHYwapG7v .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uZHYwapG7v .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZHYwapG7v .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uZHYwapG7v .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-uZHYwapG7v .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uZHYwapG7v .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZHYwapG7v .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZHYwapG7v .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZHYwapG7v .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZHYwapG7v .links {
  color: #000000;
  text-align: right;
}
.cid-uZHYwapG7v .copyright > p {
  color: #000000;
}
.cid-uZHYwaKJTD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-uZHYwaKJTD .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v0aS8GaaCI .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v0aS8GaaCI .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v0aS8GaaCI a {
  font-style: normal;
}
.cid-v0aS8GaaCI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v0aS8GaaCI .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v0aS8GaaCI .nav-item:focus,
.cid-v0aS8GaaCI .nav-link:focus {
  outline: none;
}
.cid-v0aS8GaaCI .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0aS8GaaCI .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v0aS8GaaCI .menu-logo {
  margin-right: auto;
}
.cid-v0aS8GaaCI .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0aS8GaaCI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v0aS8GaaCI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v0aS8GaaCI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v0aS8GaaCI .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v0aS8GaaCI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v0aS8GaaCI .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v0aS8GaaCI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v0aS8GaaCI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0aS8GaaCI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v0aS8GaaCI .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v0aS8GaaCI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v0aS8GaaCI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0aS8GaaCI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v0aS8GaaCI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0aS8GaaCI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v0aS8GaaCI .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v0aS8GaaCI .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v0aS8GaaCI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v0aS8GaaCI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v0aS8GaaCI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v0aS8GaaCI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v0aS8GaaCI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v0aS8GaaCI button.navbar-toggler:focus {
  outline: none;
}
.cid-v0aS8GaaCI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0aS8GaaCI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0aS8GaaCI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0aS8GaaCI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0aS8GaaCI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0aS8GaaCI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0aS8GaaCI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0aS8GaaCI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0aS8GaaCI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0aS8GaaCI .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0aS8GaaCI .collapsed .btn {
  display: -webkit-flex;
}
.cid-v0aS8GaaCI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v0aS8GaaCI .collapsed .navbar-collapse.collapsing,
.cid-v0aS8GaaCI .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v0aS8GaaCI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v0aS8GaaCI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v0aS8GaaCI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v0aS8GaaCI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v0aS8GaaCI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v0aS8GaaCI .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v0aS8GaaCI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v0aS8GaaCI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v0aS8GaaCI .collapsed button.navbar-toggler {
  display: block;
}
.cid-v0aS8GaaCI .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v0aS8GaaCI .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0aS8GaaCI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v0aS8GaaCI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v0aS8GaaCI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v0aS8GaaCI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v0aS8GaaCI.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0aS8GaaCI img {
    height: 3.8rem !important;
  }
  .cid-v0aS8GaaCI .btn {
    display: -webkit-flex;
  }
  .cid-v0aS8GaaCI button.navbar-toggler {
    display: block;
  }
  .cid-v0aS8GaaCI .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v0aS8GaaCI .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0aS8GaaCI .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v0aS8GaaCI .navbar-collapse.collapsing,
  .cid-v0aS8GaaCI .navbar-collapse.show {
    display: block !important;
  }
  .cid-v0aS8GaaCI .navbar-collapse.collapsing .navbar-nav,
  .cid-v0aS8GaaCI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v0aS8GaaCI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v0aS8GaaCI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v0aS8GaaCI .navbar-collapse.collapsing .navbar-buttons,
  .cid-v0aS8GaaCI .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v0aS8GaaCI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v0aS8GaaCI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v0aS8GaaCI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v0aS8GaaCI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v0aS8GaaCI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v0aS8GaaCI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v0aS8GaaCI .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v0aS8GaaCI .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v0aS8GaaCI .nav-link:hover,
.cid-v0aS8GaaCI .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v0aVG7cxeP {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVG7cxeP .mbr-section-subtitle {
  color: #000000;
}
.cid-v0aVG7cxeP H2 {
  color: #000000;
}
.cid-v0aVG7cxeP .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0aVG7cxeP .inner-container {
    width: 100% !important;
  }
}
.cid-v0aVHpKspl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVHpKspl .mbr-text,
.cid-v0aVHpKspl blockquote {
  color: #767676;
}
.cid-v0aVHpKspl .mbr-text {
  color: #000000;
}
.cid-v0aVHpKspl .mbr-text P {
  text-align: center;
}
.cid-v0aVJJZcYH {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v0aVJJZcYH .image-block {
  margin: auto;
}
.cid-v0aVJJZcYH figcaption {
  position: relative;
}
.cid-v0aVJJZcYH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v0aVJJZcYH .image-block {
    width: 100% !important;
  }
}
.cid-v0aVQLffC7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVQLffC7 .mbr-section-subtitle {
  color: #767676;
}
.cid-v0aVQLffC7 .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0aVRHHOb3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVRHHOb3 .row {
  border-top: 1px solid #f1f1f1;
  padding-top: 2rem;
}
.cid-v0aVRHHOb3 .mbr-text {
  line-height: 1.5;
}
.cid-v0aVRHHOb3 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-v0aVRHHOb3 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-v0aVRHHOb3 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-v0aVRHHOb3 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-v0aVRHHOb3 .container2 input:checked ~ .checkmark {
  background-color: #149dcc;
}
.cid-v0aVRHHOb3 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-v0aVRHHOb3 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-v0aVRHHOb3 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-v0aVRHHOb3 .mbr-section-title {
  text-align: left;
  color: #656565;
}
.cid-v0aVSIr18Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVTmwnQs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVTmwnQs .mbr-section-subtitle {
  color: #767676;
}
.cid-v0aVTmwnQs .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0aVTWw1CL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVTWw1CL .card-box {
  padding: 0 2rem;
}
.cid-v0aVTWw1CL .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v0aVTWw1CL .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v0aVTWw1CL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-v0aVTWw1CL p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-v0aVTWw1CL .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v0aVTWw1CL .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-v0aVTWw1CL .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-v0aVTWw1CL .card-title {
  text-align: center;
}
.cid-v0aVUZkH3B {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-v0aVUZkH3B .images-container.container-fluid {
  padding: 0;
}
.cid-v0aVUZkH3B .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-v0aVUZkH3B .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-v0aVUZkH3B .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v0aVUZkH3B .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v0aVUZkH3B .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v0aVUZkH3B .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v0aVUZkH3B .img-item {
    width: 100% !important;
  }
  .cid-v0aVUZkH3B .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-v0aVVF75Ez {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVVF75Ez .mbr-text,
.cid-v0aVVF75Ez blockquote {
  color: #767676;
}
.cid-v0aVVF75Ez .mbr-text {
  color: #000000;
}
.cid-v0aVVF75Ez .mbr-text P {
  text-align: justify;
}
.cid-v0aS8Huteq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aS8Huteq .container-fluid {
  padding: 0 3rem;
}
.cid-v0aS8Huteq .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0aS8Huteq .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0aS8Huteq .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0aS8Huteq .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0aS8Huteq .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0aS8Huteq .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0aS8Huteq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0aS8Huteq .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v0aS8Huteq .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0aS8Huteq .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0aS8Huteq .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0aS8Huteq .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0aS8Huteq .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0aS8Huteq .header-text {
    padding: 1rem !important;
  }
  .cid-v0aS8Huteq .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0aS8Huteq .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0aS8Huteq .panel-group {
    padding: 0;
  }
}
.cid-v0aS8Huteq .header-text,
.cid-v0aS8Huteq .sign {
  color: #000000;
  text-align: left;
}
.cid-v0aS8Huteq .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0aVWHvpjG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVWHvpjG .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-v0aVWHvpjG .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0aVXIrXu8 .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0aVXIrXu8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0aVXIrXu8 .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-v0aVXIrXu8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0aVXIrXu8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0aVYM1HO5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0aVYM1HO5 .row {
  border-top: 1px solid #ffffff;
  padding-top: 2rem;
}
.cid-v0aVYM1HO5 .mbr-text {
  line-height: 1.5;
  color: #000000;
  text-align: left;
}
.cid-v0aVYM1HO5 .container2 {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-v0aVYM1HO5 .container2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cid-v0aVYM1HO5 .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.cid-v0aVYM1HO5 .container2:hover input ~ .checkmark {
  background-color: #ccc;
}
.cid-v0aVYM1HO5 .container2 input:checked ~ .checkmark {
  background-color: #0f7699;
}
.cid-v0aVYM1HO5 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cid-v0aVYM1HO5 .container2 input:checked ~ .checkmark:after {
  display: block;
}
.cid-v0aVYM1HO5 .container2 .checkmark:after {
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-v0aVYM1HO5 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v0aS8I7vBD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0aS8I7vBD .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v0aS8I7vBD .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v0aS8I7vBD .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v0aS8I7vBD .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v0aS8I7vBD .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v0aS8I7vBD .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v0aS8I7vBD .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v0aS8I7vBD .btn-social {
  border: none !important;
}
.cid-v0aS8I7vBD [class^="socicon-"]:before,
.cid-v0aS8I7vBD [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v0aS8I7vBD .btn {
    font-size: 20px !important;
  }
}
.cid-v0aS8IihCs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0aS8IihCs .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0aS8IihCs .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v0aS8IihCs .media-wrap img {
  height: 6rem;
}
.cid-v0aS8IihCs .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v0aS8IihCs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0aS8IihCs .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v0aS8IihCs .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v0aS8IihCs .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v0aS8IihCs .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0aS8IihCs .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v0aS8IihCs .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0aS8IihCs .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v0aS8IihCs .links {
  color: #000000;
  text-align: right;
}
.cid-v0aS8IihCs .copyright > p {
  color: #000000;
}
.cid-v0aS8IApTT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v0aS8IApTT .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v0bKCKiUqH .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v0bKCKiUqH .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v0bKCKiUqH a {
  font-style: normal;
}
.cid-v0bKCKiUqH .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v0bKCKiUqH .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v0bKCKiUqH .nav-item:focus,
.cid-v0bKCKiUqH .nav-link:focus {
  outline: none;
}
.cid-v0bKCKiUqH .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0bKCKiUqH .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v0bKCKiUqH .menu-logo {
  margin-right: auto;
}
.cid-v0bKCKiUqH .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0bKCKiUqH .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v0bKCKiUqH .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v0bKCKiUqH .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v0bKCKiUqH .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v0bKCKiUqH .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v0bKCKiUqH .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v0bKCKiUqH .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v0bKCKiUqH .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0bKCKiUqH .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v0bKCKiUqH .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v0bKCKiUqH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v0bKCKiUqH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0bKCKiUqH .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v0bKCKiUqH .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0bKCKiUqH .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v0bKCKiUqH .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v0bKCKiUqH .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v0bKCKiUqH .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v0bKCKiUqH .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v0bKCKiUqH .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v0bKCKiUqH .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v0bKCKiUqH button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v0bKCKiUqH button.navbar-toggler:focus {
  outline: none;
}
.cid-v0bKCKiUqH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0bKCKiUqH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0bKCKiUqH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0bKCKiUqH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0bKCKiUqH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0bKCKiUqH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0bKCKiUqH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0bKCKiUqH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0bKCKiUqH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0bKCKiUqH .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0bKCKiUqH .collapsed .btn {
  display: -webkit-flex;
}
.cid-v0bKCKiUqH .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v0bKCKiUqH .collapsed .navbar-collapse.collapsing,
.cid-v0bKCKiUqH .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v0bKCKiUqH .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v0bKCKiUqH .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v0bKCKiUqH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v0bKCKiUqH .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v0bKCKiUqH .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v0bKCKiUqH .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v0bKCKiUqH .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v0bKCKiUqH .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v0bKCKiUqH .collapsed button.navbar-toggler {
  display: block;
}
.cid-v0bKCKiUqH .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v0bKCKiUqH .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0bKCKiUqH .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v0bKCKiUqH .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v0bKCKiUqH .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v0bKCKiUqH .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v0bKCKiUqH.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0bKCKiUqH img {
    height: 3.8rem !important;
  }
  .cid-v0bKCKiUqH .btn {
    display: -webkit-flex;
  }
  .cid-v0bKCKiUqH button.navbar-toggler {
    display: block;
  }
  .cid-v0bKCKiUqH .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v0bKCKiUqH .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0bKCKiUqH .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v0bKCKiUqH .navbar-collapse.collapsing,
  .cid-v0bKCKiUqH .navbar-collapse.show {
    display: block !important;
  }
  .cid-v0bKCKiUqH .navbar-collapse.collapsing .navbar-nav,
  .cid-v0bKCKiUqH .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v0bKCKiUqH .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v0bKCKiUqH .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v0bKCKiUqH .navbar-collapse.collapsing .navbar-buttons,
  .cid-v0bKCKiUqH .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v0bKCKiUqH .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v0bKCKiUqH .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v0bKCKiUqH .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v0bKCKiUqH .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v0bKCKiUqH .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v0bKCKiUqH .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v0bKCKiUqH .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v0bKCKiUqH .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v0bKCKiUqH .nav-link:hover,
.cid-v0bKCKiUqH .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v0bKCKC4HJ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0bKCKC4HJ .mbr-section-subtitle {
  color: #000000;
}
.cid-v0bKCKC4HJ H2 {
  color: #000000;
}
.cid-v0bKCKC4HJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0bKCKC4HJ .inner-container {
    width: 100% !important;
  }
}
.cid-v0bKCKC4HJ H1 {
  color: #000000;
}
.cid-v0bKCKLsDb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0bKCKLsDb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0bKCKLsDb .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0bKCKLsDb .mbr-text {
    text-align: center;
  }
}
.cid-v0bKCKLsDb .mbr-text,
.cid-v0bKCKLsDb .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v0bKCKLsDb H3 {
  color: #000000;
}
.cid-v0bKCKLsDb H1 {
  color: #000000;
}
.cid-v0bKCKLsDb H2 {
  color: #000000;
}
.cid-v0bKLYI0Wh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0bKLYI0Wh .container-fluid {
  padding: 0 3rem;
}
.cid-v0bKLYI0Wh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0bKLYI0Wh .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0bKLYI0Wh .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0bKLYI0Wh .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0bKLYI0Wh .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0bKLYI0Wh .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0bKLYI0Wh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0bKLYI0Wh .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v0bKLYI0Wh .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0bKLYI0Wh .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0bKLYI0Wh .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0bKLYI0Wh .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0bKLYI0Wh .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0bKLYI0Wh .header-text {
    padding: 1rem !important;
  }
  .cid-v0bKLYI0Wh .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0bKLYI0Wh .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0bKLYI0Wh .panel-group {
    padding: 0;
  }
}
.cid-v0bKLYI0Wh .header-text,
.cid-v0bKLYI0Wh .sign {
  color: #000000;
  text-align: left;
}
.cid-v0bKLYI0Wh .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0bKCL6cQm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0bKCL6cQm .mbr-text,
.cid-v0bKCL6cQm blockquote {
  color: #767676;
}
.cid-v0bKCL6cQm .mbr-text {
  color: #000000;
}
.cid-v0bKCL6cQm .mbr-text P {
  text-align: justify;
}
.cid-v0bKCLfXAh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0bKCLfXAh .container-fluid {
  padding: 0 3rem;
}
.cid-v0bKCLfXAh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0bKCLfXAh .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0bKCLfXAh .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0bKCLfXAh .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0bKCLfXAh .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0bKCLfXAh .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0bKCLfXAh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0bKCLfXAh .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v0bKCLfXAh .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0bKCLfXAh .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0bKCLfXAh .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0bKCLfXAh .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0bKCLfXAh .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0bKCLfXAh .header-text {
    padding: 1rem !important;
  }
  .cid-v0bKCLfXAh .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0bKCLfXAh .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0bKCLfXAh .panel-group {
    padding: 0;
  }
}
.cid-v0bKCLfXAh .header-text,
.cid-v0bKCLfXAh .sign {
  color: #000000;
  text-align: left;
}
.cid-v0bKCLfXAh .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0bKCLvKca {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0bKCLvKca .mbr-section-subtitle {
  color: #767676;
}
.cid-v0bKCLvKca .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0bKCLEwa0 .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0bKCLEwa0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0bKCLEwa0 .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-v0bKCLEwa0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0bKCLEwa0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0c5TFNXxD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c5TFNXxD .mbr-section-subtitle {
  color: #767676;
}
.cid-v0c5TFNXxD .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0c5D1BoI9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c5D1BoI9 .card-box {
  padding: 0 2rem;
}
.cid-v0c5D1BoI9 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v0c5D1BoI9 .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v0c5D1BoI9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-v0c5D1BoI9 p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-v0c5D1BoI9 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v0c5D1BoI9 .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-v0c5D1BoI9 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-v0c5D1BoI9 .card-title {
  text-align: center;
}
.cid-v0c5QVXWlg {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-v0c5QVXWlg .images-container.container-fluid {
  padding: 0;
}
.cid-v0c5QVXWlg .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-v0c5QVXWlg .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-v0c5QVXWlg .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v0c5QVXWlg .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v0c5QVXWlg .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v0c5QVXWlg .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v0c5QVXWlg .img-item {
    width: 100% !important;
  }
  .cid-v0c5QVXWlg .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-v0bKCLQXbS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0bKCLQXbS .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v0bKCLQXbS .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v0bKCLQXbS .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v0bKCLQXbS .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v0bKCLQXbS .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v0bKCLQXbS .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v0bKCLQXbS .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v0bKCLQXbS .btn-social {
  border: none !important;
}
.cid-v0bKCLQXbS [class^="socicon-"]:before,
.cid-v0bKCLQXbS [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v0bKCLQXbS .btn {
    font-size: 20px !important;
  }
}
.cid-v0bKCM1yAz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0bKCM1yAz .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0bKCM1yAz .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v0bKCM1yAz .media-wrap img {
  height: 6rem;
}
.cid-v0bKCM1yAz .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v0bKCM1yAz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0bKCM1yAz .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v0bKCM1yAz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v0bKCM1yAz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v0bKCM1yAz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0bKCM1yAz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v0bKCM1yAz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0bKCM1yAz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v0bKCM1yAz .links {
  color: #000000;
  text-align: right;
}
.cid-v0bKCM1yAz .copyright > p {
  color: #000000;
}
.cid-v0bKCMkQCB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v0bKCMkQCB .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v0c6Pl9nTa .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v0c6Pl9nTa .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v0c6Pl9nTa a {
  font-style: normal;
}
.cid-v0c6Pl9nTa .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v0c6Pl9nTa .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v0c6Pl9nTa .nav-item:focus,
.cid-v0c6Pl9nTa .nav-link:focus {
  outline: none;
}
.cid-v0c6Pl9nTa .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0c6Pl9nTa .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v0c6Pl9nTa .menu-logo {
  margin-right: auto;
}
.cid-v0c6Pl9nTa .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0c6Pl9nTa .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v0c6Pl9nTa .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v0c6Pl9nTa .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v0c6Pl9nTa .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v0c6Pl9nTa .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v0c6Pl9nTa .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v0c6Pl9nTa .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v0c6Pl9nTa .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0c6Pl9nTa .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v0c6Pl9nTa .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v0c6Pl9nTa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v0c6Pl9nTa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0c6Pl9nTa .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v0c6Pl9nTa .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0c6Pl9nTa .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v0c6Pl9nTa .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v0c6Pl9nTa .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v0c6Pl9nTa .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v0c6Pl9nTa .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v0c6Pl9nTa .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v0c6Pl9nTa .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v0c6Pl9nTa button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v0c6Pl9nTa button.navbar-toggler:focus {
  outline: none;
}
.cid-v0c6Pl9nTa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0c6Pl9nTa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0c6Pl9nTa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0c6Pl9nTa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0c6Pl9nTa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0c6Pl9nTa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0c6Pl9nTa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0c6Pl9nTa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0c6Pl9nTa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0c6Pl9nTa .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0c6Pl9nTa .collapsed .btn {
  display: -webkit-flex;
}
.cid-v0c6Pl9nTa .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.collapsing,
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v0c6Pl9nTa .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v0c6Pl9nTa .collapsed button.navbar-toggler {
  display: block;
}
.cid-v0c6Pl9nTa .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v0c6Pl9nTa .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0c6Pl9nTa .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v0c6Pl9nTa .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v0c6Pl9nTa .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v0c6Pl9nTa .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v0c6Pl9nTa.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0c6Pl9nTa img {
    height: 3.8rem !important;
  }
  .cid-v0c6Pl9nTa .btn {
    display: -webkit-flex;
  }
  .cid-v0c6Pl9nTa button.navbar-toggler {
    display: block;
  }
  .cid-v0c6Pl9nTa .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v0c6Pl9nTa .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0c6Pl9nTa .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v0c6Pl9nTa .navbar-collapse.collapsing,
  .cid-v0c6Pl9nTa .navbar-collapse.show {
    display: block !important;
  }
  .cid-v0c6Pl9nTa .navbar-collapse.collapsing .navbar-nav,
  .cid-v0c6Pl9nTa .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v0c6Pl9nTa .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v0c6Pl9nTa .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v0c6Pl9nTa .navbar-collapse.collapsing .navbar-buttons,
  .cid-v0c6Pl9nTa .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v0c6Pl9nTa .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v0c6Pl9nTa .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v0c6Pl9nTa .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v0c6Pl9nTa .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v0c6Pl9nTa .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v0c6Pl9nTa .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v0c6Pl9nTa .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v0c6Pl9nTa .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v0c6Pl9nTa .nav-link:hover,
.cid-v0c6Pl9nTa .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v0c6PlFx4R {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c6PlFx4R .mbr-section-subtitle {
  color: #000000;
}
.cid-v0c6PlFx4R H2 {
  color: #000000;
}
.cid-v0c6PlFx4R .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0c6PlFx4R .inner-container {
    width: 100% !important;
  }
}
.cid-v0c6PlFx4R H1 {
  color: #000000;
}
.cid-v0c6PlUEn3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0c6PlUEn3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0c6PlUEn3 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0c6PlUEn3 .mbr-text {
    text-align: center;
  }
}
.cid-v0c6PlUEn3 .mbr-text,
.cid-v0c6PlUEn3 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v0c6PlUEn3 H3 {
  color: #000000;
}
.cid-v0c6PlUEn3 H1 {
  color: #000000;
}
.cid-v0c6PlUEn3 H2 {
  color: #000000;
}
.cid-v0c6PmbbDC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c6PmbbDC .container-fluid {
  padding: 0 3rem;
}
.cid-v0c6PmbbDC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0c6PmbbDC .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0c6PmbbDC .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0c6PmbbDC .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0c6PmbbDC .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0c6PmbbDC .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0c6PmbbDC .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0c6PmbbDC .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v0c6PmbbDC .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0c6PmbbDC .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0c6PmbbDC .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0c6PmbbDC .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0c6PmbbDC .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0c6PmbbDC .header-text {
    padding: 1rem !important;
  }
  .cid-v0c6PmbbDC .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0c6PmbbDC .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0c6PmbbDC .panel-group {
    padding: 0;
  }
}
.cid-v0c6PmbbDC .header-text,
.cid-v0c6PmbbDC .sign {
  color: #000000;
  text-align: left;
}
.cid-v0c6PmbbDC .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0c6PmpzpR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c6PmpzpR .mbr-text,
.cid-v0c6PmpzpR blockquote {
  color: #767676;
}
.cid-v0c6PmpzpR .mbr-text {
  color: #000000;
}
.cid-v0c6PmpzpR .mbr-text P {
  text-align: justify;
}
.cid-v0c6PmAMlw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c6PmAMlw .container-fluid {
  padding: 0 3rem;
}
.cid-v0c6PmAMlw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0c6PmAMlw .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0c6PmAMlw .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0c6PmAMlw .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0c6PmAMlw .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0c6PmAMlw .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0c6PmAMlw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0c6PmAMlw .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v0c6PmAMlw .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0c6PmAMlw .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0c6PmAMlw .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0c6PmAMlw .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0c6PmAMlw .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0c6PmAMlw .header-text {
    padding: 1rem !important;
  }
  .cid-v0c6PmAMlw .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0c6PmAMlw .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0c6PmAMlw .panel-group {
    padding: 0;
  }
}
.cid-v0c6PmAMlw .header-text,
.cid-v0c6PmAMlw .sign {
  color: #000000;
  text-align: left;
}
.cid-v0c6PmAMlw .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0c6PmY9Q5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c6PmY9Q5 .mbr-section-subtitle {
  color: #767676;
}
.cid-v0c6PmY9Q5 .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0c6Pn9vg6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0c6Pn9vg6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0c6Pn9vg6 .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-v0c6Pn9vg6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0c6Pn9vg6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0c6PnmfGP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c6PnmfGP .mbr-section-subtitle {
  color: #767676;
}
.cid-v0c6PnmfGP .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0c6PnyCaj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0c6PnyCaj .card-box {
  padding: 0 2rem;
}
.cid-v0c6PnyCaj .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v0c6PnyCaj .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v0c6PnyCaj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-v0c6PnyCaj p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-v0c6PnyCaj .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v0c6PnyCaj .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-v0c6PnyCaj .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-v0c6PnyCaj .card-title {
  text-align: center;
}
.cid-v0c6PnYFW2 {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-v0c6PnYFW2 .images-container.container-fluid {
  padding: 0;
}
.cid-v0c6PnYFW2 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-v0c6PnYFW2 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-v0c6PnYFW2 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v0c6PnYFW2 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v0c6PnYFW2 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v0c6PnYFW2 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v0c6PnYFW2 .img-item {
    width: 100% !important;
  }
  .cid-v0c6PnYFW2 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-v0c6Pobdqg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0c6Pobdqg .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v0c6Pobdqg .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v0c6Pobdqg .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v0c6Pobdqg .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v0c6Pobdqg .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v0c6Pobdqg .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v0c6Pobdqg .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v0c6Pobdqg .btn-social {
  border: none !important;
}
.cid-v0c6Pobdqg [class^="socicon-"]:before,
.cid-v0c6Pobdqg [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v0c6Pobdqg .btn {
    font-size: 20px !important;
  }
}
.cid-v0c6PoqjZu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0c6PoqjZu .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0c6PoqjZu .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v0c6PoqjZu .media-wrap img {
  height: 6rem;
}
.cid-v0c6PoqjZu .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v0c6PoqjZu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0c6PoqjZu .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v0c6PoqjZu .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v0c6PoqjZu .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v0c6PoqjZu .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0c6PoqjZu .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v0c6PoqjZu .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0c6PoqjZu .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v0c6PoqjZu .links {
  color: #000000;
  text-align: right;
}
.cid-v0c6PoqjZu .copyright > p {
  color: #000000;
}
.cid-v0c6PoKB1b {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v0c6PoKB1b .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v0ceGFsa0r .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v0ceGFsa0r .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v0ceGFsa0r a {
  font-style: normal;
}
.cid-v0ceGFsa0r .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v0ceGFsa0r .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v0ceGFsa0r .nav-item:focus,
.cid-v0ceGFsa0r .nav-link:focus {
  outline: none;
}
.cid-v0ceGFsa0r .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0ceGFsa0r .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v0ceGFsa0r .menu-logo {
  margin-right: auto;
}
.cid-v0ceGFsa0r .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0ceGFsa0r .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v0ceGFsa0r .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v0ceGFsa0r .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v0ceGFsa0r .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v0ceGFsa0r .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v0ceGFsa0r .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v0ceGFsa0r .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v0ceGFsa0r .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0ceGFsa0r .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v0ceGFsa0r .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v0ceGFsa0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v0ceGFsa0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ceGFsa0r .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v0ceGFsa0r .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ceGFsa0r .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v0ceGFsa0r .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v0ceGFsa0r .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v0ceGFsa0r .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v0ceGFsa0r .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v0ceGFsa0r .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v0ceGFsa0r .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v0ceGFsa0r button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v0ceGFsa0r button.navbar-toggler:focus {
  outline: none;
}
.cid-v0ceGFsa0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ceGFsa0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0ceGFsa0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0ceGFsa0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0ceGFsa0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0ceGFsa0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0ceGFsa0r nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0ceGFsa0r nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0ceGFsa0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0ceGFsa0r .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0ceGFsa0r .collapsed .btn {
  display: -webkit-flex;
}
.cid-v0ceGFsa0r .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v0ceGFsa0r .collapsed .navbar-collapse.collapsing,
.cid-v0ceGFsa0r .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v0ceGFsa0r .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v0ceGFsa0r .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v0ceGFsa0r .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v0ceGFsa0r .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v0ceGFsa0r .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v0ceGFsa0r .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v0ceGFsa0r .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v0ceGFsa0r .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v0ceGFsa0r .collapsed button.navbar-toggler {
  display: block;
}
.cid-v0ceGFsa0r .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v0ceGFsa0r .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0ceGFsa0r .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v0ceGFsa0r .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v0ceGFsa0r .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v0ceGFsa0r .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v0ceGFsa0r.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0ceGFsa0r img {
    height: 3.8rem !important;
  }
  .cid-v0ceGFsa0r .btn {
    display: -webkit-flex;
  }
  .cid-v0ceGFsa0r button.navbar-toggler {
    display: block;
  }
  .cid-v0ceGFsa0r .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v0ceGFsa0r .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0ceGFsa0r .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v0ceGFsa0r .navbar-collapse.collapsing,
  .cid-v0ceGFsa0r .navbar-collapse.show {
    display: block !important;
  }
  .cid-v0ceGFsa0r .navbar-collapse.collapsing .navbar-nav,
  .cid-v0ceGFsa0r .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v0ceGFsa0r .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v0ceGFsa0r .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v0ceGFsa0r .navbar-collapse.collapsing .navbar-buttons,
  .cid-v0ceGFsa0r .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v0ceGFsa0r .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v0ceGFsa0r .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v0ceGFsa0r .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v0ceGFsa0r .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v0ceGFsa0r .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v0ceGFsa0r .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v0ceGFsa0r .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v0ceGFsa0r .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v0ceGFsa0r .nav-link:hover,
.cid-v0ceGFsa0r .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v0ceGFQoE0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ceGFQoE0 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0ceGFQoE0 H2 {
  color: #000000;
}
.cid-v0ceGFQoE0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0ceGFQoE0 .inner-container {
    width: 100% !important;
  }
}
.cid-v0ceGFQoE0 H1 {
  color: #000000;
}
.cid-v0ceGFZylR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0ceGFZylR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0ceGFZylR .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0ceGFZylR .mbr-text {
    text-align: center;
  }
}
.cid-v0ceGFZylR .mbr-text,
.cid-v0ceGFZylR .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v0ceGFZylR H3 {
  color: #000000;
}
.cid-v0ceGFZylR H1 {
  color: #000000;
}
.cid-v0ceGFZylR H2 {
  color: #000000;
}
.cid-v0ceGGbw3F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ceGGbw3F .container-fluid {
  padding: 0 3rem;
}
.cid-v0ceGGbw3F .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0ceGGbw3F .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0ceGGbw3F .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0ceGGbw3F .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0ceGGbw3F .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0ceGGbw3F .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0ceGGbw3F .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0ceGGbw3F .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v0ceGGbw3F .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0ceGGbw3F .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0ceGGbw3F .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0ceGGbw3F .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0ceGGbw3F .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0ceGGbw3F .header-text {
    padding: 1rem !important;
  }
  .cid-v0ceGGbw3F .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0ceGGbw3F .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0ceGGbw3F .panel-group {
    padding: 0;
  }
}
.cid-v0ceGGbw3F .header-text,
.cid-v0ceGGbw3F .sign {
  color: #000000;
  text-align: left;
}
.cid-v0ceGGbw3F .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0ceGGmJLg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ceGGmJLg .mbr-text,
.cid-v0ceGGmJLg blockquote {
  color: #767676;
}
.cid-v0ceGGmJLg .mbr-text {
  color: #000000;
}
.cid-v0ceGGmJLg .mbr-text P {
  text-align: justify;
}
.cid-v0ceGGvkHz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ceGGvkHz .container-fluid {
  padding: 0 3rem;
}
.cid-v0ceGGvkHz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0ceGGvkHz .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0ceGGvkHz .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0ceGGvkHz .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0ceGGvkHz .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0ceGGvkHz .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0ceGGvkHz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0ceGGvkHz .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v0ceGGvkHz .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0ceGGvkHz .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0ceGGvkHz .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0ceGGvkHz .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0ceGGvkHz .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0ceGGvkHz .header-text {
    padding: 1rem !important;
  }
  .cid-v0ceGGvkHz .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0ceGGvkHz .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0ceGGvkHz .panel-group {
    padding: 0;
  }
}
.cid-v0ceGGvkHz .header-text,
.cid-v0ceGGvkHz .sign {
  color: #000000;
  text-align: left;
}
.cid-v0ceGGvkHz .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0ceGGLPif {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ceGGLPif .mbr-section-subtitle {
  color: #767676;
}
.cid-v0ceGGLPif .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0ceGGYrs1 .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0ceGGYrs1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0ceGGYrs1 .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-v0ceGGYrs1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0ceGGYrs1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0ceGH8hVt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ceGH8hVt .mbr-section-subtitle {
  color: #767676;
}
.cid-v0ceGH8hVt .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0ceGHiaYN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ceGHiaYN .card-box {
  padding: 0 2rem;
}
.cid-v0ceGHiaYN .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v0ceGHiaYN .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v0ceGHiaYN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-v0ceGHiaYN p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-v0ceGHiaYN .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v0ceGHiaYN .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-v0ceGHiaYN .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-v0ceGHiaYN .card-title {
  text-align: center;
}
.cid-v0ceGHDYWA {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-v0ceGHDYWA .images-container.container-fluid {
  padding: 0;
}
.cid-v0ceGHDYWA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-v0ceGHDYWA .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-v0ceGHDYWA .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v0ceGHDYWA .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v0ceGHDYWA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v0ceGHDYWA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v0ceGHDYWA .img-item {
    width: 100% !important;
  }
  .cid-v0ceGHDYWA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-v0ceGHN4dS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0ceGHN4dS .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v0ceGHN4dS .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v0ceGHN4dS .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v0ceGHN4dS .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v0ceGHN4dS .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v0ceGHN4dS .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v0ceGHN4dS .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v0ceGHN4dS .btn-social {
  border: none !important;
}
.cid-v0ceGHN4dS [class^="socicon-"]:before,
.cid-v0ceGHN4dS [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v0ceGHN4dS .btn {
    font-size: 20px !important;
  }
}
.cid-v0ceGHYaBQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0ceGHYaBQ .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0ceGHYaBQ .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v0ceGHYaBQ .media-wrap img {
  height: 6rem;
}
.cid-v0ceGHYaBQ .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v0ceGHYaBQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0ceGHYaBQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v0ceGHYaBQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v0ceGHYaBQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v0ceGHYaBQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0ceGHYaBQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v0ceGHYaBQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0ceGHYaBQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v0ceGHYaBQ .links {
  color: #000000;
  text-align: right;
}
.cid-v0ceGHYaBQ .copyright > p {
  color: #000000;
}
.cid-v0ceGIfziY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v0ceGIfziY .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v0ctsXwwvc .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v0ctsXwwvc .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v0ctsXwwvc a {
  font-style: normal;
}
.cid-v0ctsXwwvc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v0ctsXwwvc .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v0ctsXwwvc .nav-item:focus,
.cid-v0ctsXwwvc .nav-link:focus {
  outline: none;
}
.cid-v0ctsXwwvc .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0ctsXwwvc .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v0ctsXwwvc .menu-logo {
  margin-right: auto;
}
.cid-v0ctsXwwvc .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0ctsXwwvc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v0ctsXwwvc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v0ctsXwwvc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v0ctsXwwvc .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v0ctsXwwvc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v0ctsXwwvc .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v0ctsXwwvc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v0ctsXwwvc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0ctsXwwvc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v0ctsXwwvc .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v0ctsXwwvc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v0ctsXwwvc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ctsXwwvc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v0ctsXwwvc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ctsXwwvc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v0ctsXwwvc .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v0ctsXwwvc .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v0ctsXwwvc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v0ctsXwwvc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v0ctsXwwvc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v0ctsXwwvc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v0ctsXwwvc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v0ctsXwwvc button.navbar-toggler:focus {
  outline: none;
}
.cid-v0ctsXwwvc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ctsXwwvc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0ctsXwwvc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0ctsXwwvc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0ctsXwwvc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0ctsXwwvc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0ctsXwwvc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0ctsXwwvc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0ctsXwwvc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0ctsXwwvc .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0ctsXwwvc .collapsed .btn {
  display: -webkit-flex;
}
.cid-v0ctsXwwvc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v0ctsXwwvc .collapsed .navbar-collapse.collapsing,
.cid-v0ctsXwwvc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v0ctsXwwvc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v0ctsXwwvc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v0ctsXwwvc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v0ctsXwwvc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v0ctsXwwvc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v0ctsXwwvc .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v0ctsXwwvc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v0ctsXwwvc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v0ctsXwwvc .collapsed button.navbar-toggler {
  display: block;
}
.cid-v0ctsXwwvc .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v0ctsXwwvc .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0ctsXwwvc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v0ctsXwwvc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v0ctsXwwvc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v0ctsXwwvc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v0ctsXwwvc.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0ctsXwwvc img {
    height: 3.8rem !important;
  }
  .cid-v0ctsXwwvc .btn {
    display: -webkit-flex;
  }
  .cid-v0ctsXwwvc button.navbar-toggler {
    display: block;
  }
  .cid-v0ctsXwwvc .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v0ctsXwwvc .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0ctsXwwvc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v0ctsXwwvc .navbar-collapse.collapsing,
  .cid-v0ctsXwwvc .navbar-collapse.show {
    display: block !important;
  }
  .cid-v0ctsXwwvc .navbar-collapse.collapsing .navbar-nav,
  .cid-v0ctsXwwvc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v0ctsXwwvc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v0ctsXwwvc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v0ctsXwwvc .navbar-collapse.collapsing .navbar-buttons,
  .cid-v0ctsXwwvc .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v0ctsXwwvc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v0ctsXwwvc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v0ctsXwwvc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v0ctsXwwvc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v0ctsXwwvc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v0ctsXwwvc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v0ctsXwwvc .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v0ctsXwwvc .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v0ctsXwwvc .nav-link:hover,
.cid-v0ctsXwwvc .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v0ctsXPXEv {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ctsXPXEv .mbr-section-subtitle {
  color: #000000;
}
.cid-v0ctsXPXEv H2 {
  color: #000000;
}
.cid-v0ctsXPXEv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0ctsXPXEv .inner-container {
    width: 100% !important;
  }
}
.cid-v0ctsXPXEv H1 {
  color: #000000;
}
.cid-v0ctsXXgi9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0ctsXXgi9 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0ctsXXgi9 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0ctsXXgi9 .mbr-text {
    text-align: center;
  }
}
.cid-v0ctsXXgi9 .mbr-text,
.cid-v0ctsXXgi9 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v0ctsXXgi9 H3 {
  color: #000000;
}
.cid-v0ctsXXgi9 H1 {
  color: #000000;
}
.cid-v0ctsXXgi9 H2 {
  color: #000000;
}
.cid-v0ctsY9EpD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ctsY9EpD .container-fluid {
  padding: 0 3rem;
}
.cid-v0ctsY9EpD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0ctsY9EpD .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0ctsY9EpD .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0ctsY9EpD .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0ctsY9EpD .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0ctsY9EpD .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0ctsY9EpD .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0ctsY9EpD .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v0ctsY9EpD .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0ctsY9EpD .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0ctsY9EpD .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0ctsY9EpD .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0ctsY9EpD .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0ctsY9EpD .header-text {
    padding: 1rem !important;
  }
  .cid-v0ctsY9EpD .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0ctsY9EpD .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0ctsY9EpD .panel-group {
    padding: 0;
  }
}
.cid-v0ctsY9EpD .header-text,
.cid-v0ctsY9EpD .sign {
  color: #000000;
  text-align: left;
}
.cid-v0ctsY9EpD .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0ctsYjxPH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ctsYjxPH .mbr-text,
.cid-v0ctsYjxPH blockquote {
  color: #767676;
}
.cid-v0ctsYjxPH .mbr-text {
  color: #000000;
}
.cid-v0ctsYjxPH .mbr-text P {
  text-align: justify;
}
.cid-v0ctsYssOc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ctsYssOc .container-fluid {
  padding: 0 3rem;
}
.cid-v0ctsYssOc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0ctsYssOc .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0ctsYssOc .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0ctsYssOc .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0ctsYssOc .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0ctsYssOc .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0ctsYssOc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0ctsYssOc .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v0ctsYssOc .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0ctsYssOc .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0ctsYssOc .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0ctsYssOc .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0ctsYssOc .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0ctsYssOc .header-text {
    padding: 1rem !important;
  }
  .cid-v0ctsYssOc .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0ctsYssOc .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0ctsYssOc .panel-group {
    padding: 0;
  }
}
.cid-v0ctsYssOc .header-text,
.cid-v0ctsYssOc .sign {
  color: #000000;
  text-align: left;
}
.cid-v0ctsYssOc .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0ctsYIzgw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ctsYIzgw .mbr-section-subtitle {
  color: #767676;
}
.cid-v0ctsYIzgw .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0ctsYSbrx .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0ctsYSbrx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0ctsYSbrx .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-v0ctsYSbrx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0ctsYSbrx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0ctsZ2cOa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ctsZ2cOa .mbr-section-subtitle {
  color: #767676;
}
.cid-v0ctsZ2cOa .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0ctsZccXY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ctsZccXY .card-box {
  padding: 0 2rem;
}
.cid-v0ctsZccXY .mbr-section-btn {
  padding-top: 1rem;
}
.cid-v0ctsZccXY .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v0ctsZccXY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-v0ctsZccXY p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-v0ctsZccXY .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v0ctsZccXY .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-v0ctsZccXY .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-v0ctsZccXY .card-title {
  text-align: center;
}
.cid-v0ctsZypH5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-v0ctsZypH5 .images-container.container-fluid {
  padding: 0;
}
.cid-v0ctsZypH5 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-v0ctsZypH5 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-v0ctsZypH5 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v0ctsZypH5 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v0ctsZypH5 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v0ctsZypH5 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v0ctsZypH5 .img-item {
    width: 100% !important;
  }
  .cid-v0ctsZypH5 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-v0ctsZIhqJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0ctsZIhqJ .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v0ctsZIhqJ .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v0ctsZIhqJ .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v0ctsZIhqJ .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v0ctsZIhqJ .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v0ctsZIhqJ .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v0ctsZIhqJ .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v0ctsZIhqJ .btn-social {
  border: none !important;
}
.cid-v0ctsZIhqJ [class^="socicon-"]:before,
.cid-v0ctsZIhqJ [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v0ctsZIhqJ .btn {
    font-size: 20px !important;
  }
}
.cid-v0ctsZVny1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0ctsZVny1 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0ctsZVny1 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v0ctsZVny1 .media-wrap img {
  height: 6rem;
}
.cid-v0ctsZVny1 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v0ctsZVny1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0ctsZVny1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v0ctsZVny1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v0ctsZVny1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v0ctsZVny1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0ctsZVny1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v0ctsZVny1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0ctsZVny1 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v0ctsZVny1 .links {
  color: #000000;
  text-align: right;
}
.cid-v0ctsZVny1 .copyright > p {
  color: #000000;
}
.cid-v0ctt0aLBg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v0ctt0aLBg .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v0skRAgTY7 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v0skRAgTY7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v0skRAgTY7 a {
  font-style: normal;
}
.cid-v0skRAgTY7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v0skRAgTY7 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v0skRAgTY7 .nav-item:focus,
.cid-v0skRAgTY7 .nav-link:focus {
  outline: none;
}
.cid-v0skRAgTY7 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0skRAgTY7 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v0skRAgTY7 .menu-logo {
  margin-right: auto;
}
.cid-v0skRAgTY7 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0skRAgTY7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v0skRAgTY7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v0skRAgTY7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v0skRAgTY7 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v0skRAgTY7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v0skRAgTY7 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v0skRAgTY7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v0skRAgTY7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0skRAgTY7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v0skRAgTY7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v0skRAgTY7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v0skRAgTY7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0skRAgTY7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v0skRAgTY7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0skRAgTY7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v0skRAgTY7 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v0skRAgTY7 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v0skRAgTY7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v0skRAgTY7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v0skRAgTY7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v0skRAgTY7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v0skRAgTY7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v0skRAgTY7 button.navbar-toggler:focus {
  outline: none;
}
.cid-v0skRAgTY7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0skRAgTY7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0skRAgTY7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0skRAgTY7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0skRAgTY7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0skRAgTY7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0skRAgTY7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0skRAgTY7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0skRAgTY7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0skRAgTY7 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0skRAgTY7 .collapsed .btn {
  display: -webkit-flex;
}
.cid-v0skRAgTY7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v0skRAgTY7 .collapsed .navbar-collapse.collapsing,
.cid-v0skRAgTY7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v0skRAgTY7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v0skRAgTY7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v0skRAgTY7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v0skRAgTY7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v0skRAgTY7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v0skRAgTY7 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v0skRAgTY7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v0skRAgTY7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v0skRAgTY7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-v0skRAgTY7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v0skRAgTY7 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0skRAgTY7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v0skRAgTY7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v0skRAgTY7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v0skRAgTY7 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v0skRAgTY7.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0skRAgTY7 img {
    height: 3.8rem !important;
  }
  .cid-v0skRAgTY7 .btn {
    display: -webkit-flex;
  }
  .cid-v0skRAgTY7 button.navbar-toggler {
    display: block;
  }
  .cid-v0skRAgTY7 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v0skRAgTY7 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0skRAgTY7 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v0skRAgTY7 .navbar-collapse.collapsing,
  .cid-v0skRAgTY7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-v0skRAgTY7 .navbar-collapse.collapsing .navbar-nav,
  .cid-v0skRAgTY7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v0skRAgTY7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v0skRAgTY7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v0skRAgTY7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-v0skRAgTY7 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v0skRAgTY7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v0skRAgTY7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v0skRAgTY7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v0skRAgTY7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v0skRAgTY7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v0skRAgTY7 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v0skRAgTY7 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v0skRAgTY7 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v0skRAgTY7 .nav-link:hover,
.cid-v0skRAgTY7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v0skRAEL9i {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0skRAEL9i .mbr-section-subtitle {
  color: #000000;
}
.cid-v0skRAEL9i H2 {
  color: #000000;
}
.cid-v0skRAEL9i .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0skRAEL9i .inner-container {
    width: 100% !important;
  }
}
.cid-v0skRAEL9i H1 {
  color: #000000;
}
.cid-v0skRANDfb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0skRANDfb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0skRANDfb .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0skRANDfb .mbr-text {
    text-align: center;
  }
}
.cid-v0skRANDfb .mbr-text,
.cid-v0skRANDfb .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v0skRANDfb H3 {
  color: #000000;
}
.cid-v0skRANDfb H1 {
  color: #000000;
}
.cid-v0skRB2iMw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0skRB2iMw .container-fluid {
  padding: 0 3rem;
}
.cid-v0skRB2iMw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0skRB2iMw .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0skRB2iMw .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0skRB2iMw .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0skRB2iMw .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0skRB2iMw .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0skRB2iMw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0skRB2iMw .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v0skRB2iMw .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0skRB2iMw .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0skRB2iMw .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0skRB2iMw .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0skRB2iMw .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0skRB2iMw .header-text {
    padding: 1rem !important;
  }
  .cid-v0skRB2iMw .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0skRB2iMw .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0skRB2iMw .panel-group {
    padding: 0;
  }
}
.cid-v0skRB2iMw .header-text,
.cid-v0skRB2iMw .sign {
  color: #000000;
  text-align: left;
}
.cid-v0skRB2iMw .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0skRBdkwJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0skRBdkwJ .mbr-text,
.cid-v0skRBdkwJ blockquote {
  color: #767676;
}
.cid-v0skRBdkwJ .mbr-text {
  color: #000000;
}
.cid-v0skRBdkwJ .mbr-text P {
  text-align: justify;
}
.cid-v0skRBppTZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0skRBppTZ .container-fluid {
  padding: 0 3rem;
}
.cid-v0skRBppTZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0skRBppTZ .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0skRBppTZ .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0skRBppTZ .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0skRBppTZ .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0skRBppTZ .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0skRBppTZ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0skRBppTZ .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v0skRBppTZ .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0skRBppTZ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0skRBppTZ .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0skRBppTZ .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0skRBppTZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0skRBppTZ .header-text {
    padding: 1rem !important;
  }
  .cid-v0skRBppTZ .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0skRBppTZ .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0skRBppTZ .panel-group {
    padding: 0;
  }
}
.cid-v0skRBppTZ .header-text,
.cid-v0skRBppTZ .sign {
  color: #000000;
  text-align: left;
}
.cid-v0skRBppTZ .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0skRBFHzI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0skRBFHzI .mbr-section-subtitle {
  color: #767676;
}
.cid-v0skRBFHzI .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0skRBP7tv .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0skRBP7tv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0skRBP7tv .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-v0skRBP7tv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0skRBP7tv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0skRBZwxv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0skRBZwxv .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v0skRBZwxv .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v0skRBZwxv .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v0skRBZwxv .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v0skRBZwxv .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v0skRBZwxv .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v0skRBZwxv .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v0skRBZwxv .btn-social {
  border: none !important;
}
.cid-v0skRBZwxv [class^="socicon-"]:before,
.cid-v0skRBZwxv [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v0skRBZwxv .btn {
    font-size: 20px !important;
  }
}
.cid-v0skRCb1jV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0skRCb1jV .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0skRCb1jV .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v0skRCb1jV .media-wrap img {
  height: 6rem;
}
.cid-v0skRCb1jV .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v0skRCb1jV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0skRCb1jV .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v0skRCb1jV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v0skRCb1jV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v0skRCb1jV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0skRCb1jV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v0skRCb1jV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0skRCb1jV .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v0skRCb1jV .links {
  color: #000000;
  text-align: right;
}
.cid-v0skRCb1jV .copyright > p {
  color: #000000;
}
.cid-v0skRCsi9D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v0skRCsi9D .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v0ya0GQuSr .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v0ya0GQuSr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v0ya0GQuSr a {
  font-style: normal;
}
.cid-v0ya0GQuSr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v0ya0GQuSr .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v0ya0GQuSr .nav-item:focus,
.cid-v0ya0GQuSr .nav-link:focus {
  outline: none;
}
.cid-v0ya0GQuSr .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0ya0GQuSr .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v0ya0GQuSr .menu-logo {
  margin-right: auto;
}
.cid-v0ya0GQuSr .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v0ya0GQuSr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v0ya0GQuSr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v0ya0GQuSr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v0ya0GQuSr .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v0ya0GQuSr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v0ya0GQuSr .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v0ya0GQuSr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v0ya0GQuSr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v0ya0GQuSr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v0ya0GQuSr .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v0ya0GQuSr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v0ya0GQuSr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ya0GQuSr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v0ya0GQuSr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ya0GQuSr .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v0ya0GQuSr .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v0ya0GQuSr .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v0ya0GQuSr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v0ya0GQuSr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v0ya0GQuSr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v0ya0GQuSr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v0ya0GQuSr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v0ya0GQuSr button.navbar-toggler:focus {
  outline: none;
}
.cid-v0ya0GQuSr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0ya0GQuSr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v0ya0GQuSr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v0ya0GQuSr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v0ya0GQuSr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v0ya0GQuSr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0ya0GQuSr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v0ya0GQuSr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v0ya0GQuSr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v0ya0GQuSr .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0ya0GQuSr .collapsed .btn {
  display: -webkit-flex;
}
.cid-v0ya0GQuSr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v0ya0GQuSr .collapsed .navbar-collapse.collapsing,
.cid-v0ya0GQuSr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v0ya0GQuSr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v0ya0GQuSr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v0ya0GQuSr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v0ya0GQuSr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v0ya0GQuSr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v0ya0GQuSr .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v0ya0GQuSr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v0ya0GQuSr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v0ya0GQuSr .collapsed button.navbar-toggler {
  display: block;
}
.cid-v0ya0GQuSr .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v0ya0GQuSr .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v0ya0GQuSr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v0ya0GQuSr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v0ya0GQuSr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v0ya0GQuSr .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v0ya0GQuSr.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0ya0GQuSr img {
    height: 3.8rem !important;
  }
  .cid-v0ya0GQuSr .btn {
    display: -webkit-flex;
  }
  .cid-v0ya0GQuSr button.navbar-toggler {
    display: block;
  }
  .cid-v0ya0GQuSr .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v0ya0GQuSr .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v0ya0GQuSr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v0ya0GQuSr .navbar-collapse.collapsing,
  .cid-v0ya0GQuSr .navbar-collapse.show {
    display: block !important;
  }
  .cid-v0ya0GQuSr .navbar-collapse.collapsing .navbar-nav,
  .cid-v0ya0GQuSr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v0ya0GQuSr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v0ya0GQuSr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v0ya0GQuSr .navbar-collapse.collapsing .navbar-buttons,
  .cid-v0ya0GQuSr .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v0ya0GQuSr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v0ya0GQuSr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v0ya0GQuSr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v0ya0GQuSr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v0ya0GQuSr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v0ya0GQuSr .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v0ya0GQuSr .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v0ya0GQuSr .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v0ya0GQuSr .nav-link:hover,
.cid-v0ya0GQuSr .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v0ya0Hb009 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ya0Hb009 .mbr-section-subtitle {
  color: #000000;
}
.cid-v0ya0Hb009 H2 {
  color: #000000;
}
.cid-v0ya0Hb009 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v0ya0Hb009 .inner-container {
    width: 100% !important;
  }
}
.cid-v0ya0Hb009 H1 {
  color: #000000;
}
.cid-v0ya0HjqgB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0ya0HjqgB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v0ya0HjqgB .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v0ya0HjqgB .mbr-text {
    text-align: center;
  }
}
.cid-v0ya0HjqgB .mbr-text,
.cid-v0ya0HjqgB .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v0ya0HjqgB H3 {
  color: #000000;
}
.cid-v0ya0HjqgB H1 {
  color: #000000;
}
.cid-v0ya0HjqgB H2 {
  color: #000000;
}
.cid-v0ya0HtLmE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ya0HtLmE .container-fluid {
  padding: 0 3rem;
}
.cid-v0ya0HtLmE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0ya0HtLmE .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0ya0HtLmE .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0ya0HtLmE .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0ya0HtLmE .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0ya0HtLmE .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0ya0HtLmE .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0ya0HtLmE .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v0ya0HtLmE .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0ya0HtLmE .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0ya0HtLmE .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0ya0HtLmE .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0ya0HtLmE .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0ya0HtLmE .header-text {
    padding: 1rem !important;
  }
  .cid-v0ya0HtLmE .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0ya0HtLmE .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0ya0HtLmE .panel-group {
    padding: 0;
  }
}
.cid-v0ya0HtLmE .header-text,
.cid-v0ya0HtLmE .sign {
  color: #000000;
  text-align: left;
}
.cid-v0ya0HtLmE .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0ya0HExIb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ya0HExIb .mbr-text,
.cid-v0ya0HExIb blockquote {
  color: #767676;
}
.cid-v0ya0HExIb .mbr-text {
  color: #000000;
}
.cid-v0ya0HExIb .mbr-text P {
  text-align: justify;
}
.cid-v0ya0HMK9H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ya0HMK9H .container-fluid {
  padding: 0 3rem;
}
.cid-v0ya0HMK9H .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v0ya0HMK9H .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v0ya0HMK9H .header-text {
  padding: 2rem 1rem !important;
}
.cid-v0ya0HMK9H .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v0ya0HMK9H .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v0ya0HMK9H .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v0ya0HMK9H .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v0ya0HMK9H .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v0ya0HMK9H .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v0ya0HMK9H .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v0ya0HMK9H .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v0ya0HMK9H .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v0ya0HMK9H .container-fluid {
    padding: 0 1rem;
  }
  .cid-v0ya0HMK9H .header-text {
    padding: 1rem !important;
  }
  .cid-v0ya0HMK9H .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v0ya0HMK9H .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v0ya0HMK9H .panel-group {
    padding: 0;
  }
}
.cid-v0ya0HMK9H .header-text,
.cid-v0ya0HMK9H .sign {
  color: #000000;
  text-align: left;
}
.cid-v0ya0HMK9H .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v0ya0I1qA0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ya0I1qA0 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v0ya0I1qA0 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0ya0I1qA0 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0ya0I1qA0 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v0ya0I1qA0 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v0ya0I1qA0 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v0ya0I1qA0 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v0ya0I1qA0 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v0ya0I1qA0 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v0ya0IgOPo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ya0IgOPo .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-v0ya0IgOPo .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0ya0Ir8Hg {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v0ya0Ir8Hg .image-block {
  margin: auto;
}
.cid-v0ya0Ir8Hg figcaption {
  position: relative;
}
.cid-v0ya0Ir8Hg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v0ya0Ir8Hg .image-block {
    width: 100% !important;
  }
}
.cid-v0ya0J5IdA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0ya0J5IdA .mbr-section-subtitle {
  color: #767676;
}
.cid-v0ya0J5IdA .mbr-section-subtitle U {
  color: #000000;
}
.cid-v0ya0JfjhA .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0ya0JfjhA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0ya0JfjhA .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-v0ya0JfjhA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0ya0JfjhA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0ya0JoSgJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v0ya0JoSgJ .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v0ya0JoSgJ .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v0ya0JoSgJ .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v0ya0JoSgJ .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v0ya0JoSgJ .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v0ya0JoSgJ .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v0ya0JoSgJ .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v0ya0JoSgJ .btn-social {
  border: none !important;
}
.cid-v0ya0JoSgJ [class^="socicon-"]:before,
.cid-v0ya0JoSgJ [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v0ya0JoSgJ .btn {
    font-size: 20px !important;
  }
}
.cid-v0ya0Jzjbb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v0ya0Jzjbb .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0ya0Jzjbb .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v0ya0Jzjbb .media-wrap img {
  height: 6rem;
}
.cid-v0ya0Jzjbb .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v0ya0Jzjbb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0ya0Jzjbb .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v0ya0Jzjbb .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v0ya0Jzjbb .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v0ya0Jzjbb .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v0ya0Jzjbb .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v0ya0Jzjbb .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0ya0Jzjbb .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v0ya0Jzjbb .links {
  color: #000000;
  text-align: right;
}
.cid-v0ya0Jzjbb .copyright > p {
  color: #000000;
}
.cid-v0ya0JP6td {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v0ya0JP6td .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v18bwuvQZB .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v18bwuvQZB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v18bwuvQZB a {
  font-style: normal;
}
.cid-v18bwuvQZB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v18bwuvQZB .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v18bwuvQZB .nav-item:focus,
.cid-v18bwuvQZB .nav-link:focus {
  outline: none;
}
.cid-v18bwuvQZB .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v18bwuvQZB .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v18bwuvQZB .menu-logo {
  margin-right: auto;
}
.cid-v18bwuvQZB .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v18bwuvQZB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v18bwuvQZB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v18bwuvQZB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v18bwuvQZB .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v18bwuvQZB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v18bwuvQZB .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v18bwuvQZB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v18bwuvQZB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v18bwuvQZB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v18bwuvQZB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v18bwuvQZB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v18bwuvQZB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v18bwuvQZB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v18bwuvQZB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v18bwuvQZB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v18bwuvQZB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v18bwuvQZB .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v18bwuvQZB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v18bwuvQZB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v18bwuvQZB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v18bwuvQZB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v18bwuvQZB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v18bwuvQZB button.navbar-toggler:focus {
  outline: none;
}
.cid-v18bwuvQZB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v18bwuvQZB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v18bwuvQZB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v18bwuvQZB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v18bwuvQZB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v18bwuvQZB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v18bwuvQZB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v18bwuvQZB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v18bwuvQZB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v18bwuvQZB .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v18bwuvQZB .collapsed .btn {
  display: -webkit-flex;
}
.cid-v18bwuvQZB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v18bwuvQZB .collapsed .navbar-collapse.collapsing,
.cid-v18bwuvQZB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v18bwuvQZB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v18bwuvQZB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v18bwuvQZB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v18bwuvQZB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v18bwuvQZB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v18bwuvQZB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v18bwuvQZB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v18bwuvQZB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v18bwuvQZB .collapsed button.navbar-toggler {
  display: block;
}
.cid-v18bwuvQZB .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v18bwuvQZB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v18bwuvQZB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v18bwuvQZB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v18bwuvQZB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v18bwuvQZB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v18bwuvQZB.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v18bwuvQZB img {
    height: 3.8rem !important;
  }
  .cid-v18bwuvQZB .btn {
    display: -webkit-flex;
  }
  .cid-v18bwuvQZB button.navbar-toggler {
    display: block;
  }
  .cid-v18bwuvQZB .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v18bwuvQZB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v18bwuvQZB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v18bwuvQZB .navbar-collapse.collapsing,
  .cid-v18bwuvQZB .navbar-collapse.show {
    display: block !important;
  }
  .cid-v18bwuvQZB .navbar-collapse.collapsing .navbar-nav,
  .cid-v18bwuvQZB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v18bwuvQZB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v18bwuvQZB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v18bwuvQZB .navbar-collapse.collapsing .navbar-buttons,
  .cid-v18bwuvQZB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v18bwuvQZB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v18bwuvQZB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v18bwuvQZB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v18bwuvQZB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v18bwuvQZB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v18bwuvQZB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v18bwuvQZB .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v18bwuvQZB .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v18bwuvQZB .nav-link:hover,
.cid-v18bwuvQZB .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v18bwuVW4U {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v18bwuVW4U .mbr-section-subtitle {
  color: #000000;
}
.cid-v18bwuVW4U H2 {
  color: #000000;
}
.cid-v18bwuVW4U .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v18bwuVW4U .inner-container {
    width: 100% !important;
  }
}
.cid-v18bwuVW4U H1 {
  color: #000000;
}
.cid-v18bwv4CIr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v18bwv4CIr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v18bwv4CIr .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v18bwv4CIr .mbr-text {
    text-align: center;
  }
}
.cid-v18bwv4CIr .mbr-text,
.cid-v18bwv4CIr .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v18bwv4CIr H3 {
  color: #000000;
}
.cid-v18bwv4CIr H1 {
  color: #000000;
}
.cid-v18bwvg6lK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v18bwvg6lK .container-fluid {
  padding: 0 3rem;
}
.cid-v18bwvg6lK .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v18bwvg6lK .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v18bwvg6lK .header-text {
  padding: 2rem 1rem !important;
}
.cid-v18bwvg6lK .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v18bwvg6lK .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v18bwvg6lK .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v18bwvg6lK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v18bwvg6lK .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v18bwvg6lK .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v18bwvg6lK .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v18bwvg6lK .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v18bwvg6lK .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v18bwvg6lK .container-fluid {
    padding: 0 1rem;
  }
  .cid-v18bwvg6lK .header-text {
    padding: 1rem !important;
  }
  .cid-v18bwvg6lK .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v18bwvg6lK .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v18bwvg6lK .panel-group {
    padding: 0;
  }
}
.cid-v18bwvg6lK .header-text,
.cid-v18bwvg6lK .sign {
  color: #000000;
  text-align: left;
}
.cid-v18bwvg6lK .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v18bwvsShR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v18bwvsShR .mbr-text,
.cid-v18bwvsShR blockquote {
  color: #767676;
}
.cid-v18bwvsShR .mbr-text {
  color: #000000;
}
.cid-v18bwvsShR .mbr-text P {
  text-align: justify;
}
.cid-v18bwvCaoQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v18bwvCaoQ .container-fluid {
  padding: 0 3rem;
}
.cid-v18bwvCaoQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v18bwvCaoQ .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v18bwvCaoQ .header-text {
  padding: 2rem 1rem !important;
}
.cid-v18bwvCaoQ .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v18bwvCaoQ .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v18bwvCaoQ .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v18bwvCaoQ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v18bwvCaoQ .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v18bwvCaoQ .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v18bwvCaoQ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v18bwvCaoQ .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v18bwvCaoQ .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v18bwvCaoQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-v18bwvCaoQ .header-text {
    padding: 1rem !important;
  }
  .cid-v18bwvCaoQ .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v18bwvCaoQ .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v18bwvCaoQ .panel-group {
    padding: 0;
  }
}
.cid-v18bwvCaoQ .header-text,
.cid-v18bwvCaoQ .sign {
  color: #000000;
  text-align: left;
}
.cid-v18bwvCaoQ .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v18bwvXll6 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v18bwvXll6 .mbr-section-subtitle {
  color: #767676;
}
.cid-v18bwvXll6 .mbr-section-subtitle U {
  color: #000000;
}
.cid-v18bww6JbT .google-map {
  height: 25rem;
  position: relative;
}
.cid-v18bww6JbT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v18bww6JbT .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-v18bww6JbT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v18bww6JbT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v18bwwgny1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v18bwwgny1 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v18bwwgny1 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v18bwwgny1 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v18bwwgny1 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v18bwwgny1 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v18bwwgny1 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v18bwwgny1 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v18bwwgny1 .btn-social {
  border: none !important;
}
.cid-v18bwwgny1 [class^="socicon-"]:before,
.cid-v18bwwgny1 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v18bwwgny1 .btn {
    font-size: 20px !important;
  }
}
.cid-v18bwwqq0S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v18bwwqq0S .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v18bwwqq0S .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v18bwwqq0S .media-wrap img {
  height: 6rem;
}
.cid-v18bwwqq0S .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v18bwwqq0S .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v18bwwqq0S .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v18bwwqq0S .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v18bwwqq0S .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v18bwwqq0S .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v18bwwqq0S .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v18bwwqq0S .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v18bwwqq0S .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v18bwwqq0S .links {
  color: #000000;
  text-align: right;
}
.cid-v18bwwqq0S .copyright > p {
  color: #000000;
}
.cid-v18bwwGtTG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v18bwwGtTG .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v5DYKrpOqW .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v5DYKrpOqW .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v5DYKrpOqW a {
  font-style: normal;
}
.cid-v5DYKrpOqW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v5DYKrpOqW .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v5DYKrpOqW .nav-item:focus,
.cid-v5DYKrpOqW .nav-link:focus {
  outline: none;
}
.cid-v5DYKrpOqW .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v5DYKrpOqW .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v5DYKrpOqW .menu-logo {
  margin-right: auto;
}
.cid-v5DYKrpOqW .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v5DYKrpOqW .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v5DYKrpOqW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v5DYKrpOqW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v5DYKrpOqW .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v5DYKrpOqW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v5DYKrpOqW .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v5DYKrpOqW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v5DYKrpOqW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5DYKrpOqW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v5DYKrpOqW .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v5DYKrpOqW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v5DYKrpOqW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5DYKrpOqW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v5DYKrpOqW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5DYKrpOqW .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v5DYKrpOqW .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v5DYKrpOqW .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v5DYKrpOqW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v5DYKrpOqW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v5DYKrpOqW .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v5DYKrpOqW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v5DYKrpOqW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v5DYKrpOqW button.navbar-toggler:focus {
  outline: none;
}
.cid-v5DYKrpOqW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v5DYKrpOqW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v5DYKrpOqW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v5DYKrpOqW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v5DYKrpOqW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v5DYKrpOqW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5DYKrpOqW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v5DYKrpOqW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v5DYKrpOqW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5DYKrpOqW .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5DYKrpOqW .collapsed .btn {
  display: -webkit-flex;
}
.cid-v5DYKrpOqW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v5DYKrpOqW .collapsed .navbar-collapse.collapsing,
.cid-v5DYKrpOqW .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v5DYKrpOqW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v5DYKrpOqW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v5DYKrpOqW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v5DYKrpOqW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v5DYKrpOqW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v5DYKrpOqW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v5DYKrpOqW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v5DYKrpOqW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v5DYKrpOqW .collapsed button.navbar-toggler {
  display: block;
}
.cid-v5DYKrpOqW .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v5DYKrpOqW .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5DYKrpOqW .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v5DYKrpOqW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v5DYKrpOqW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v5DYKrpOqW .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v5DYKrpOqW.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5DYKrpOqW img {
    height: 3.8rem !important;
  }
  .cid-v5DYKrpOqW .btn {
    display: -webkit-flex;
  }
  .cid-v5DYKrpOqW button.navbar-toggler {
    display: block;
  }
  .cid-v5DYKrpOqW .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v5DYKrpOqW .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5DYKrpOqW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v5DYKrpOqW .navbar-collapse.collapsing,
  .cid-v5DYKrpOqW .navbar-collapse.show {
    display: block !important;
  }
  .cid-v5DYKrpOqW .navbar-collapse.collapsing .navbar-nav,
  .cid-v5DYKrpOqW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v5DYKrpOqW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v5DYKrpOqW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v5DYKrpOqW .navbar-collapse.collapsing .navbar-buttons,
  .cid-v5DYKrpOqW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v5DYKrpOqW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v5DYKrpOqW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v5DYKrpOqW .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v5DYKrpOqW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v5DYKrpOqW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v5DYKrpOqW .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v5DYKrpOqW .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v5DYKrpOqW .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v5DYKrpOqW .nav-link:hover,
.cid-v5DYKrpOqW .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v5DYKrKTTL {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v5DYKrKTTL .mbr-section-subtitle {
  color: #000000;
}
.cid-v5DYKrKTTL H2 {
  color: #000000;
}
.cid-v5DYKrKTTL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v5DYKrKTTL .inner-container {
    width: 100% !important;
  }
}
.cid-v5DYKrKTTL H1 {
  color: #000000;
}
.cid-v5DYKrSQ6w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v5DYKrSQ6w .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v5DYKrSQ6w .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v5DYKrSQ6w .mbr-text {
    text-align: center;
  }
}
.cid-v5DYKrSQ6w .mbr-text,
.cid-v5DYKrSQ6w .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v5DYKrSQ6w H3 {
  color: #000000;
}
.cid-v5DYKrSQ6w H1 {
  color: #000000;
}
.cid-v5DYKrSQ6w H2 {
  color: #000000;
}
.cid-v5DYKs23Pn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v5DYKs23Pn .container-fluid {
  padding: 0 3rem;
}
.cid-v5DYKs23Pn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v5DYKs23Pn .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v5DYKs23Pn .header-text {
  padding: 2rem 1rem !important;
}
.cid-v5DYKs23Pn .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v5DYKs23Pn .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v5DYKs23Pn .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v5DYKs23Pn .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v5DYKs23Pn .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v5DYKs23Pn .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v5DYKs23Pn .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v5DYKs23Pn .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v5DYKs23Pn .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v5DYKs23Pn .container-fluid {
    padding: 0 1rem;
  }
  .cid-v5DYKs23Pn .header-text {
    padding: 1rem !important;
  }
  .cid-v5DYKs23Pn .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v5DYKs23Pn .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v5DYKs23Pn .panel-group {
    padding: 0;
  }
}
.cid-v5DYKs23Pn .header-text,
.cid-v5DYKs23Pn .sign {
  color: #000000;
  text-align: left;
}
.cid-v5DYKs23Pn .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v5DYKsaCgD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v5DYKsaCgD .mbr-text,
.cid-v5DYKsaCgD blockquote {
  color: #767676;
}
.cid-v5DYKsaCgD .mbr-text {
  color: #000000;
}
.cid-v5DYKsaCgD .mbr-text P {
  text-align: justify;
}
.cid-v5DYKsjoRG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v5DYKsjoRG .container-fluid {
  padding: 0 3rem;
}
.cid-v5DYKsjoRG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v5DYKsjoRG .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v5DYKsjoRG .header-text {
  padding: 2rem 1rem !important;
}
.cid-v5DYKsjoRG .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v5DYKsjoRG .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v5DYKsjoRG .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v5DYKsjoRG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v5DYKsjoRG .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v5DYKsjoRG .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v5DYKsjoRG .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v5DYKsjoRG .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v5DYKsjoRG .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v5DYKsjoRG .container-fluid {
    padding: 0 1rem;
  }
  .cid-v5DYKsjoRG .header-text {
    padding: 1rem !important;
  }
  .cid-v5DYKsjoRG .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v5DYKsjoRG .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v5DYKsjoRG .panel-group {
    padding: 0;
  }
}
.cid-v5DYKsjoRG .header-text,
.cid-v5DYKsjoRG .sign {
  color: #000000;
  text-align: left;
}
.cid-v5DYKsjoRG .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v5DYKsxKtZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v5DYKsxKtZ .mbr-section-subtitle {
  color: #767676;
}
.cid-v5DYKsxKtZ .mbr-section-subtitle U {
  color: #000000;
}
.cid-v5DYKsFpHb .google-map {
  height: 25rem;
  position: relative;
}
.cid-v5DYKsFpHb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v5DYKsFpHb .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-v5DYKsFpHb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v5DYKsFpHb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v5DYKtkQo2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-v5DYKtkQo2 .images-container.container-fluid {
  padding: 0;
}
.cid-v5DYKtkQo2 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-v5DYKtkQo2 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-v5DYKtkQo2 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-v5DYKtkQo2 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-v5DYKtkQo2 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-v5DYKtkQo2 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-v5DYKtkQo2 .img-item {
    width: 100% !important;
  }
  .cid-v5DYKtkQo2 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-v5DYKtvP81 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v5DYKtvP81 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v5DYKtvP81 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v5DYKtvP81 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v5DYKtvP81 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v5DYKtvP81 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v5DYKtvP81 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v5DYKtvP81 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v5DYKtvP81 .btn-social {
  border: none !important;
}
.cid-v5DYKtvP81 [class^="socicon-"]:before,
.cid-v5DYKtvP81 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v5DYKtvP81 .btn {
    font-size: 20px !important;
  }
}
.cid-v5DYKtIyfz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v5DYKtIyfz .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v5DYKtIyfz .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v5DYKtIyfz .media-wrap img {
  height: 6rem;
}
.cid-v5DYKtIyfz .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v5DYKtIyfz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v5DYKtIyfz .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v5DYKtIyfz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v5DYKtIyfz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v5DYKtIyfz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v5DYKtIyfz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v5DYKtIyfz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v5DYKtIyfz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v5DYKtIyfz .links {
  color: #000000;
  text-align: right;
}
.cid-v5DYKtIyfz .copyright > p {
  color: #000000;
}
.cid-v5DYKtYoYw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v5DYKtYoYw .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v8WGxQW1Bd .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v8WGxQW1Bd .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v8WGxQW1Bd a {
  font-style: normal;
}
.cid-v8WGxQW1Bd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v8WGxQW1Bd .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v8WGxQW1Bd .nav-item:focus,
.cid-v8WGxQW1Bd .nav-link:focus {
  outline: none;
}
.cid-v8WGxQW1Bd .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v8WGxQW1Bd .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v8WGxQW1Bd .menu-logo {
  margin-right: auto;
}
.cid-v8WGxQW1Bd .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v8WGxQW1Bd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v8WGxQW1Bd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v8WGxQW1Bd .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v8WGxQW1Bd .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v8WGxQW1Bd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v8WGxQW1Bd .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v8WGxQW1Bd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v8WGxQW1Bd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v8WGxQW1Bd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v8WGxQW1Bd .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v8WGxQW1Bd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v8WGxQW1Bd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8WGxQW1Bd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v8WGxQW1Bd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8WGxQW1Bd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v8WGxQW1Bd .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v8WGxQW1Bd .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v8WGxQW1Bd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v8WGxQW1Bd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v8WGxQW1Bd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v8WGxQW1Bd .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v8WGxQW1Bd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v8WGxQW1Bd button.navbar-toggler:focus {
  outline: none;
}
.cid-v8WGxQW1Bd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v8WGxQW1Bd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v8WGxQW1Bd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v8WGxQW1Bd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v8WGxQW1Bd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v8WGxQW1Bd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v8WGxQW1Bd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v8WGxQW1Bd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v8WGxQW1Bd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v8WGxQW1Bd .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v8WGxQW1Bd .collapsed .btn {
  display: -webkit-flex;
}
.cid-v8WGxQW1Bd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.collapsing,
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v8WGxQW1Bd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v8WGxQW1Bd .collapsed button.navbar-toggler {
  display: block;
}
.cid-v8WGxQW1Bd .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v8WGxQW1Bd .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v8WGxQW1Bd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v8WGxQW1Bd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v8WGxQW1Bd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v8WGxQW1Bd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v8WGxQW1Bd.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v8WGxQW1Bd img {
    height: 3.8rem !important;
  }
  .cid-v8WGxQW1Bd .btn {
    display: -webkit-flex;
  }
  .cid-v8WGxQW1Bd button.navbar-toggler {
    display: block;
  }
  .cid-v8WGxQW1Bd .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v8WGxQW1Bd .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v8WGxQW1Bd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v8WGxQW1Bd .navbar-collapse.collapsing,
  .cid-v8WGxQW1Bd .navbar-collapse.show {
    display: block !important;
  }
  .cid-v8WGxQW1Bd .navbar-collapse.collapsing .navbar-nav,
  .cid-v8WGxQW1Bd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v8WGxQW1Bd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v8WGxQW1Bd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v8WGxQW1Bd .navbar-collapse.collapsing .navbar-buttons,
  .cid-v8WGxQW1Bd .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v8WGxQW1Bd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v8WGxQW1Bd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v8WGxQW1Bd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v8WGxQW1Bd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v8WGxQW1Bd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v8WGxQW1Bd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v8WGxQW1Bd .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v8WGxQW1Bd .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v8WGxQW1Bd .nav-link:hover,
.cid-v8WGxQW1Bd .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v8WGxRjplx {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8WGxRjplx .mbr-section-subtitle {
  color: #000000;
}
.cid-v8WGxRjplx H2 {
  color: #000000;
}
.cid-v8WGxRjplx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8WGxRjplx .inner-container {
    width: 100% !important;
  }
}
.cid-v8WGxRjplx H1 {
  color: #000000;
}
.cid-v8WGxRrCHi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v8WGxRrCHi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v8WGxRrCHi .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v8WGxRrCHi .mbr-text {
    text-align: center;
  }
}
.cid-v8WGxRrCHi .mbr-text,
.cid-v8WGxRrCHi .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v8WGxRrCHi H3 {
  color: #000000;
}
.cid-v8WGxRrCHi H1 {
  color: #000000;
}
.cid-v8WOwHfQmh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8WOwHfQmh .container-fluid {
  padding: 0 3rem;
}
.cid-v8WOwHfQmh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v8WOwHfQmh .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v8WOwHfQmh .header-text {
  padding: 2rem 1rem !important;
}
.cid-v8WOwHfQmh .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v8WOwHfQmh .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v8WOwHfQmh .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v8WOwHfQmh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v8WOwHfQmh .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v8WOwHfQmh .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v8WOwHfQmh .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v8WOwHfQmh .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v8WOwHfQmh .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v8WOwHfQmh .container-fluid {
    padding: 0 1rem;
  }
  .cid-v8WOwHfQmh .header-text {
    padding: 1rem !important;
  }
  .cid-v8WOwHfQmh .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v8WOwHfQmh .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v8WOwHfQmh .panel-group {
    padding: 0;
  }
}
.cid-v8WOwHfQmh .header-text,
.cid-v8WOwHfQmh .sign {
  color: #000000;
  text-align: left;
}
.cid-v8WOwHfQmh .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v8WGxROny6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8WGxROny6 .mbr-text,
.cid-v8WGxROny6 blockquote {
  color: #767676;
}
.cid-v8WGxROny6 .mbr-text {
  color: #000000;
}
.cid-v8WGxROny6 .mbr-text P {
  text-align: justify;
}
.cid-v8WGxRWFjp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8WGxRWFjp .container-fluid {
  padding: 0 3rem;
}
.cid-v8WGxRWFjp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v8WGxRWFjp .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v8WGxRWFjp .header-text {
  padding: 2rem 1rem !important;
}
.cid-v8WGxRWFjp .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v8WGxRWFjp .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v8WGxRWFjp .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v8WGxRWFjp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v8WGxRWFjp .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v8WGxRWFjp .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v8WGxRWFjp .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v8WGxRWFjp .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v8WGxRWFjp .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v8WGxRWFjp .container-fluid {
    padding: 0 1rem;
  }
  .cid-v8WGxRWFjp .header-text {
    padding: 1rem !important;
  }
  .cid-v8WGxRWFjp .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v8WGxRWFjp .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v8WGxRWFjp .panel-group {
    padding: 0;
  }
}
.cid-v8WGxRWFjp .header-text,
.cid-v8WGxRWFjp .sign {
  color: #000000;
  text-align: left;
}
.cid-v8WGxRWFjp .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v8WGxSbVvz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v8WGxSbVvz .mbr-section-subtitle {
  color: #767676;
}
.cid-v8WGxSbVvz .mbr-section-subtitle U {
  color: #000000;
}
.cid-v8WGxSnqnY .google-map {
  height: 25rem;
  position: relative;
}
.cid-v8WGxSnqnY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v8WGxSnqnY .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-v8WGxSnqnY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v8WGxSnqnY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v8WGxSwvEx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v8WGxSwvEx .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v8WGxSwvEx .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v8WGxSwvEx .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v8WGxSwvEx .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v8WGxSwvEx .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v8WGxSwvEx .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v8WGxSwvEx .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v8WGxSwvEx .btn-social {
  border: none !important;
}
.cid-v8WGxSwvEx [class^="socicon-"]:before,
.cid-v8WGxSwvEx [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v8WGxSwvEx .btn {
    font-size: 20px !important;
  }
}
.cid-v8WGxSHZhz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v8WGxSHZhz .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v8WGxSHZhz .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v8WGxSHZhz .media-wrap img {
  height: 6rem;
}
.cid-v8WGxSHZhz .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v8WGxSHZhz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v8WGxSHZhz .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v8WGxSHZhz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v8WGxSHZhz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v8WGxSHZhz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v8WGxSHZhz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v8WGxSHZhz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v8WGxSHZhz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v8WGxSHZhz .links {
  color: #000000;
  text-align: right;
}
.cid-v8WGxSHZhz .copyright > p {
  color: #000000;
}
.cid-v8WGxSYzoQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v8WGxSYzoQ .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v8YqmS5xCc .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v8YqmS5xCc .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v8YqmS5xCc a {
  font-style: normal;
}
.cid-v8YqmS5xCc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v8YqmS5xCc .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v8YqmS5xCc .nav-item:focus,
.cid-v8YqmS5xCc .nav-link:focus {
  outline: none;
}
.cid-v8YqmS5xCc .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v8YqmS5xCc .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v8YqmS5xCc .menu-logo {
  margin-right: auto;
}
.cid-v8YqmS5xCc .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v8YqmS5xCc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v8YqmS5xCc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v8YqmS5xCc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v8YqmS5xCc .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v8YqmS5xCc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v8YqmS5xCc .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v8YqmS5xCc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v8YqmS5xCc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v8YqmS5xCc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v8YqmS5xCc .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v8YqmS5xCc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v8YqmS5xCc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8YqmS5xCc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v8YqmS5xCc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8YqmS5xCc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v8YqmS5xCc .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v8YqmS5xCc .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v8YqmS5xCc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v8YqmS5xCc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v8YqmS5xCc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v8YqmS5xCc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v8YqmS5xCc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v8YqmS5xCc button.navbar-toggler:focus {
  outline: none;
}
.cid-v8YqmS5xCc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v8YqmS5xCc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v8YqmS5xCc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v8YqmS5xCc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v8YqmS5xCc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v8YqmS5xCc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v8YqmS5xCc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v8YqmS5xCc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v8YqmS5xCc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v8YqmS5xCc .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v8YqmS5xCc .collapsed .btn {
  display: -webkit-flex;
}
.cid-v8YqmS5xCc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v8YqmS5xCc .collapsed .navbar-collapse.collapsing,
.cid-v8YqmS5xCc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v8YqmS5xCc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v8YqmS5xCc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v8YqmS5xCc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v8YqmS5xCc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v8YqmS5xCc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v8YqmS5xCc .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v8YqmS5xCc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v8YqmS5xCc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v8YqmS5xCc .collapsed button.navbar-toggler {
  display: block;
}
.cid-v8YqmS5xCc .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v8YqmS5xCc .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v8YqmS5xCc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v8YqmS5xCc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v8YqmS5xCc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v8YqmS5xCc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v8YqmS5xCc.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v8YqmS5xCc img {
    height: 3.8rem !important;
  }
  .cid-v8YqmS5xCc .btn {
    display: -webkit-flex;
  }
  .cid-v8YqmS5xCc button.navbar-toggler {
    display: block;
  }
  .cid-v8YqmS5xCc .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v8YqmS5xCc .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v8YqmS5xCc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v8YqmS5xCc .navbar-collapse.collapsing,
  .cid-v8YqmS5xCc .navbar-collapse.show {
    display: block !important;
  }
  .cid-v8YqmS5xCc .navbar-collapse.collapsing .navbar-nav,
  .cid-v8YqmS5xCc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v8YqmS5xCc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v8YqmS5xCc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v8YqmS5xCc .navbar-collapse.collapsing .navbar-buttons,
  .cid-v8YqmS5xCc .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v8YqmS5xCc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v8YqmS5xCc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v8YqmS5xCc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v8YqmS5xCc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v8YqmS5xCc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v8YqmS5xCc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v8YqmS5xCc .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v8YqmS5xCc .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v8YqmS5xCc .nav-link:hover,
.cid-v8YqmS5xCc .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v8YqmSsVsi {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8YqmSsVsi .mbr-section-subtitle {
  color: #000000;
}
.cid-v8YqmSsVsi H2 {
  color: #000000;
}
.cid-v8YqmSsVsi .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v8YqmSsVsi .inner-container {
    width: 100% !important;
  }
}
.cid-v8YqmSsVsi H1 {
  color: #000000;
}
.cid-v8YqmSB1uE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v8YqmSB1uE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v8YqmSB1uE .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v8YqmSB1uE .mbr-text {
    text-align: center;
  }
}
.cid-v8YqmSB1uE .mbr-text,
.cid-v8YqmSB1uE .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v8YqmSB1uE H3 {
  color: #000000;
}
.cid-v8YqmSB1uE H1 {
  color: #000000;
}
.cid-v8YqmSNcrI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8YqmSNcrI .container-fluid {
  padding: 0 3rem;
}
.cid-v8YqmSNcrI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v8YqmSNcrI .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v8YqmSNcrI .header-text {
  padding: 2rem 1rem !important;
}
.cid-v8YqmSNcrI .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v8YqmSNcrI .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v8YqmSNcrI .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v8YqmSNcrI .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v8YqmSNcrI .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v8YqmSNcrI .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v8YqmSNcrI .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v8YqmSNcrI .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v8YqmSNcrI .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v8YqmSNcrI .container-fluid {
    padding: 0 1rem;
  }
  .cid-v8YqmSNcrI .header-text {
    padding: 1rem !important;
  }
  .cid-v8YqmSNcrI .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v8YqmSNcrI .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v8YqmSNcrI .panel-group {
    padding: 0;
  }
}
.cid-v8YqmSNcrI .header-text,
.cid-v8YqmSNcrI .sign {
  color: #000000;
  text-align: left;
}
.cid-v8YqmSNcrI .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v8YqmSYwBb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8YqmSYwBb .mbr-text,
.cid-v8YqmSYwBb blockquote {
  color: #767676;
}
.cid-v8YqmSYwBb .mbr-text {
  color: #000000;
}
.cid-v8YqmSYwBb .mbr-text P {
  text-align: justify;
}
.cid-v8YqmT7Ah8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8YqmT7Ah8 .container-fluid {
  padding: 0 3rem;
}
.cid-v8YqmT7Ah8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v8YqmT7Ah8 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v8YqmT7Ah8 .header-text {
  padding: 2rem 1rem !important;
}
.cid-v8YqmT7Ah8 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v8YqmT7Ah8 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v8YqmT7Ah8 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v8YqmT7Ah8 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v8YqmT7Ah8 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v8YqmT7Ah8 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v8YqmT7Ah8 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v8YqmT7Ah8 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v8YqmT7Ah8 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v8YqmT7Ah8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-v8YqmT7Ah8 .header-text {
    padding: 1rem !important;
  }
  .cid-v8YqmT7Ah8 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v8YqmT7Ah8 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v8YqmT7Ah8 .panel-group {
    padding: 0;
  }
}
.cid-v8YqmT7Ah8 .header-text,
.cid-v8YqmT7Ah8 .sign {
  color: #000000;
  text-align: left;
}
.cid-v8YqmT7Ah8 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v8YqmTngx9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v8YqmTngx9 .mbr-section-subtitle {
  color: #767676;
}
.cid-v8YqmTngx9 .mbr-section-subtitle U {
  color: #000000;
}
.cid-v8YqmTw3tg .google-map {
  height: 25rem;
  position: relative;
}
.cid-v8YqmTw3tg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v8YqmTw3tg .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-v8YqmTw3tg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v8YqmTw3tg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v8YqmTF62J {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v8YqmTF62J .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v8YqmTF62J .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v8YqmTF62J .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v8YqmTF62J .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v8YqmTF62J .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v8YqmTF62J .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v8YqmTF62J .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v8YqmTF62J .btn-social {
  border: none !important;
}
.cid-v8YqmTF62J [class^="socicon-"]:before,
.cid-v8YqmTF62J [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v8YqmTF62J .btn {
    font-size: 20px !important;
  }
}
.cid-v8YqmTQ2Hu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v8YqmTQ2Hu .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v8YqmTQ2Hu .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v8YqmTQ2Hu .media-wrap img {
  height: 6rem;
}
.cid-v8YqmTQ2Hu .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v8YqmTQ2Hu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v8YqmTQ2Hu .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v8YqmTQ2Hu .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v8YqmTQ2Hu .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v8YqmTQ2Hu .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v8YqmTQ2Hu .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v8YqmTQ2Hu .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v8YqmTQ2Hu .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v8YqmTQ2Hu .links {
  color: #000000;
  text-align: right;
}
.cid-v8YqmTQ2Hu .copyright > p {
  color: #000000;
}
.cid-v8YqmU9AGz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v8YqmU9AGz .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v92vyM20Uq .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v92vyM20Uq .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v92vyM20Uq a {
  font-style: normal;
}
.cid-v92vyM20Uq .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v92vyM20Uq .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v92vyM20Uq .nav-item:focus,
.cid-v92vyM20Uq .nav-link:focus {
  outline: none;
}
.cid-v92vyM20Uq .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v92vyM20Uq .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v92vyM20Uq .menu-logo {
  margin-right: auto;
}
.cid-v92vyM20Uq .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v92vyM20Uq .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v92vyM20Uq .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v92vyM20Uq .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v92vyM20Uq .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v92vyM20Uq .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v92vyM20Uq .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v92vyM20Uq .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v92vyM20Uq .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v92vyM20Uq .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v92vyM20Uq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v92vyM20Uq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v92vyM20Uq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v92vyM20Uq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v92vyM20Uq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v92vyM20Uq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v92vyM20Uq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v92vyM20Uq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v92vyM20Uq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v92vyM20Uq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v92vyM20Uq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v92vyM20Uq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v92vyM20Uq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v92vyM20Uq button.navbar-toggler:focus {
  outline: none;
}
.cid-v92vyM20Uq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v92vyM20Uq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v92vyM20Uq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v92vyM20Uq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v92vyM20Uq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v92vyM20Uq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v92vyM20Uq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v92vyM20Uq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v92vyM20Uq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v92vyM20Uq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v92vyM20Uq .collapsed .btn {
  display: -webkit-flex;
}
.cid-v92vyM20Uq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v92vyM20Uq .collapsed .navbar-collapse.collapsing,
.cid-v92vyM20Uq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v92vyM20Uq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v92vyM20Uq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v92vyM20Uq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v92vyM20Uq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v92vyM20Uq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v92vyM20Uq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v92vyM20Uq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v92vyM20Uq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v92vyM20Uq .collapsed button.navbar-toggler {
  display: block;
}
.cid-v92vyM20Uq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v92vyM20Uq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v92vyM20Uq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v92vyM20Uq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v92vyM20Uq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v92vyM20Uq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v92vyM20Uq.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v92vyM20Uq img {
    height: 3.8rem !important;
  }
  .cid-v92vyM20Uq .btn {
    display: -webkit-flex;
  }
  .cid-v92vyM20Uq button.navbar-toggler {
    display: block;
  }
  .cid-v92vyM20Uq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v92vyM20Uq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v92vyM20Uq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v92vyM20Uq .navbar-collapse.collapsing,
  .cid-v92vyM20Uq .navbar-collapse.show {
    display: block !important;
  }
  .cid-v92vyM20Uq .navbar-collapse.collapsing .navbar-nav,
  .cid-v92vyM20Uq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v92vyM20Uq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v92vyM20Uq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v92vyM20Uq .navbar-collapse.collapsing .navbar-buttons,
  .cid-v92vyM20Uq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v92vyM20Uq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v92vyM20Uq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v92vyM20Uq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v92vyM20Uq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v92vyM20Uq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v92vyM20Uq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v92vyM20Uq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v92vyM20Uq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v92vyM20Uq .nav-link:hover,
.cid-v92vyM20Uq .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v92vyMpyZs {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v92vyMpyZs .mbr-section-subtitle {
  color: #000000;
}
.cid-v92vyMpyZs H2 {
  color: #000000;
}
.cid-v92vyMpyZs .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v92vyMpyZs .inner-container {
    width: 100% !important;
  }
}
.cid-v92vyMpyZs H1 {
  color: #000000;
}
.cid-v92vyMy3uY {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v92vyMy3uY .image-block {
  margin: auto;
}
.cid-v92vyMy3uY .mbr-figure {
  margin: 0 auto;
}
.cid-v92vyMy3uY figcaption {
  position: relative;
}
.cid-v92vyMy3uY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v92vyMy3uY .image-block {
    width: 100% !important;
  }
}
.cid-v92vyMI8OE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v92vyMI8OE .line {
  background-color: #efefef;
  color: #efefef;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v92vyMI8OE .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-v92vyMI8OE .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v92vyMI8OE .inner-container {
    width: 100% !important;
  }
}
.cid-v92vyMQQay {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v92vyMQQay .mbr-section-subtitle {
  color: #767676;
}
.cid-v92vyMQQay .mbr-section-subtitle U {
  color: #000000;
}
.cid-v92vyMZkRI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v92vyMZkRI .container-fluid {
  padding: 0 3rem;
}
.cid-v92vyMZkRI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v92vyMZkRI .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v92vyMZkRI .header-text {
  padding: 2rem 1rem !important;
}
.cid-v92vyMZkRI .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v92vyMZkRI .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v92vyMZkRI .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v92vyMZkRI .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v92vyMZkRI .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v92vyMZkRI .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v92vyMZkRI .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v92vyMZkRI .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v92vyMZkRI .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v92vyMZkRI .container-fluid {
    padding: 0 1rem;
  }
  .cid-v92vyMZkRI .header-text {
    padding: 1rem !important;
  }
  .cid-v92vyMZkRI .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v92vyMZkRI .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v92vyMZkRI .panel-group {
    padding: 0;
  }
}
.cid-v92vyMZkRI .header-text,
.cid-v92vyMZkRI .sign {
  color: #000000;
  text-align: left;
}
.cid-v92vyMZkRI .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v92vyN89tz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v92vyN89tz .mbr-text,
.cid-v92vyN89tz blockquote {
  color: #767676;
}
.cid-v92vyN89tz .mbr-text {
  color: #000000;
}
.cid-v92vyN89tz .mbr-text P {
  text-align: justify;
}
.cid-v92vyNh0rf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v92vyNh0rf .container-fluid {
  padding: 0 3rem;
}
.cid-v92vyNh0rf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v92vyNh0rf .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v92vyNh0rf .header-text {
  padding: 2rem 1rem !important;
}
.cid-v92vyNh0rf .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v92vyNh0rf .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v92vyNh0rf .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v92vyNh0rf .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v92vyNh0rf .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v92vyNh0rf .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v92vyNh0rf .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v92vyNh0rf .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v92vyNh0rf .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v92vyNh0rf .container-fluid {
    padding: 0 1rem;
  }
  .cid-v92vyNh0rf .header-text {
    padding: 1rem !important;
  }
  .cid-v92vyNh0rf .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v92vyNh0rf .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v92vyNh0rf .panel-group {
    padding: 0;
  }
}
.cid-v92vyNh0rf .header-text,
.cid-v92vyNh0rf .sign {
  color: #000000;
  text-align: left;
}
.cid-v92vyNh0rf .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v92vyNwmPL {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v92vyNwmPL .mbr-section-subtitle {
  color: #767676;
}
.cid-v92vyNwmPL .mbr-section-subtitle U {
  color: #000000;
}
.cid-v92vyNEJXB .google-map {
  height: 25rem;
  position: relative;
}
.cid-v92vyNEJXB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v92vyNEJXB .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-v92vyNEJXB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v92vyNEJXB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v92vyNOiNm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v92vyNOiNm .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v92vyNOiNm .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v92vyNOiNm .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v92vyNOiNm .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v92vyNOiNm .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v92vyNOiNm .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v92vyNOiNm .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v92vyNOiNm .btn-social {
  border: none !important;
}
.cid-v92vyNOiNm [class^="socicon-"]:before,
.cid-v92vyNOiNm [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v92vyNOiNm .btn {
    font-size: 20px !important;
  }
}
.cid-v92vyNYegQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v92vyNYegQ .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v92vyNYegQ .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v92vyNYegQ .media-wrap img {
  height: 6rem;
}
.cid-v92vyNYegQ .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v92vyNYegQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v92vyNYegQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v92vyNYegQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v92vyNYegQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v92vyNYegQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v92vyNYegQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v92vyNYegQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v92vyNYegQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v92vyNYegQ .links {
  color: #000000;
  text-align: right;
}
.cid-v92vyNYegQ .copyright > p {
  color: #000000;
}
.cid-v92vyOgojh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v92vyOgojh .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v9rlJNOs7m .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v9rlJNOs7m .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v9rlJNOs7m a {
  font-style: normal;
}
.cid-v9rlJNOs7m .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v9rlJNOs7m .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v9rlJNOs7m .nav-item:focus,
.cid-v9rlJNOs7m .nav-link:focus {
  outline: none;
}
.cid-v9rlJNOs7m .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9rlJNOs7m .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v9rlJNOs7m .menu-logo {
  margin-right: auto;
}
.cid-v9rlJNOs7m .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9rlJNOs7m .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v9rlJNOs7m .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v9rlJNOs7m .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v9rlJNOs7m .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v9rlJNOs7m .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v9rlJNOs7m .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v9rlJNOs7m .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v9rlJNOs7m .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9rlJNOs7m .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v9rlJNOs7m .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v9rlJNOs7m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v9rlJNOs7m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9rlJNOs7m .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v9rlJNOs7m .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9rlJNOs7m .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v9rlJNOs7m .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v9rlJNOs7m .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v9rlJNOs7m .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v9rlJNOs7m .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v9rlJNOs7m .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v9rlJNOs7m .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v9rlJNOs7m button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v9rlJNOs7m button.navbar-toggler:focus {
  outline: none;
}
.cid-v9rlJNOs7m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9rlJNOs7m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9rlJNOs7m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9rlJNOs7m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9rlJNOs7m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9rlJNOs7m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9rlJNOs7m nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9rlJNOs7m nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9rlJNOs7m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9rlJNOs7m .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9rlJNOs7m .collapsed .btn {
  display: -webkit-flex;
}
.cid-v9rlJNOs7m .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v9rlJNOs7m .collapsed .navbar-collapse.collapsing,
.cid-v9rlJNOs7m .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v9rlJNOs7m .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v9rlJNOs7m .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v9rlJNOs7m .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v9rlJNOs7m .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v9rlJNOs7m .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v9rlJNOs7m .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v9rlJNOs7m .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v9rlJNOs7m .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v9rlJNOs7m .collapsed button.navbar-toggler {
  display: block;
}
.cid-v9rlJNOs7m .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v9rlJNOs7m .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9rlJNOs7m .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v9rlJNOs7m .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v9rlJNOs7m .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v9rlJNOs7m .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v9rlJNOs7m.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9rlJNOs7m img {
    height: 3.8rem !important;
  }
  .cid-v9rlJNOs7m .btn {
    display: -webkit-flex;
  }
  .cid-v9rlJNOs7m button.navbar-toggler {
    display: block;
  }
  .cid-v9rlJNOs7m .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v9rlJNOs7m .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9rlJNOs7m .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v9rlJNOs7m .navbar-collapse.collapsing,
  .cid-v9rlJNOs7m .navbar-collapse.show {
    display: block !important;
  }
  .cid-v9rlJNOs7m .navbar-collapse.collapsing .navbar-nav,
  .cid-v9rlJNOs7m .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v9rlJNOs7m .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v9rlJNOs7m .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v9rlJNOs7m .navbar-collapse.collapsing .navbar-buttons,
  .cid-v9rlJNOs7m .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v9rlJNOs7m .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v9rlJNOs7m .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v9rlJNOs7m .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v9rlJNOs7m .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v9rlJNOs7m .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v9rlJNOs7m .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v9rlJNOs7m .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v9rlJNOs7m .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v9rlJNOs7m .nav-link:hover,
.cid-v9rlJNOs7m .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v9rt3EXY04 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9rt3EXY04 .mbr-section-subtitle {
  color: #000000;
}
.cid-v9rt3EXY04 H2 {
  color: #000000;
}
.cid-v9rt3EXY04 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9rt3EXY04 .inner-container {
    width: 100% !important;
  }
}
.cid-v9rt8pXtha {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v9rt8pXtha .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v9rt8pXtha .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v9rt8pXtha .mbr-text {
    text-align: center;
  }
}
.cid-v9rt8pXtha .mbr-text,
.cid-v9rt8pXtha .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9rt8pXtha H3 {
  color: #000000;
}
.cid-v9rt8pXtha H1 {
  color: #000000;
}
.cid-v9rtGhovhQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9rtGhovhQ .container-fluid {
  padding: 0 3rem;
}
.cid-v9rtGhovhQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v9rtGhovhQ .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v9rtGhovhQ .header-text {
  padding: 2rem 1rem !important;
}
.cid-v9rtGhovhQ .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v9rtGhovhQ .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v9rtGhovhQ .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v9rtGhovhQ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9rtGhovhQ .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v9rtGhovhQ .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v9rtGhovhQ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v9rtGhovhQ .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v9rtGhovhQ .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v9rtGhovhQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-v9rtGhovhQ .header-text {
    padding: 1rem !important;
  }
  .cid-v9rtGhovhQ .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v9rtGhovhQ .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v9rtGhovhQ .panel-group {
    padding: 0;
  }
}
.cid-v9rtGhovhQ .header-text,
.cid-v9rtGhovhQ .sign {
  color: #000000;
  text-align: left;
}
.cid-v9rtGhovhQ .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v9rtbvNvLz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9rtbvNvLz .mbr-text,
.cid-v9rtbvNvLz blockquote {
  color: #767676;
}
.cid-v9rtbvNvLz .mbr-text {
  color: #000000;
}
.cid-v9rtbvNvLz .mbr-text P {
  text-align: justify;
}
.cid-v9rtGVg0tz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9rtGVg0tz .container-fluid {
  padding: 0 3rem;
}
.cid-v9rtGVg0tz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v9rtGVg0tz .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v9rtGVg0tz .header-text {
  padding: 2rem 1rem !important;
}
.cid-v9rtGVg0tz .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v9rtGVg0tz .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v9rtGVg0tz .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v9rtGVg0tz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9rtGVg0tz .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v9rtGVg0tz .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v9rtGVg0tz .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v9rtGVg0tz .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v9rtGVg0tz .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v9rtGVg0tz .container-fluid {
    padding: 0 1rem;
  }
  .cid-v9rtGVg0tz .header-text {
    padding: 1rem !important;
  }
  .cid-v9rtGVg0tz .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v9rtGVg0tz .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v9rtGVg0tz .panel-group {
    padding: 0;
  }
}
.cid-v9rtGVg0tz .header-text,
.cid-v9rtGVg0tz .sign {
  color: #000000;
  text-align: left;
}
.cid-v9rtGVg0tz .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v9ruo8kmUq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9ruo8kmUq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v9ruo8kmUq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v9ruo8kmUq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v9ruo8kmUq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v9ruo8kmUq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v9ruo8kmUq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v9ruo8kmUq .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-v9ruo8kmUq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v9ruo8kmUq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v9ruoHNdeK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9ruoHNdeK .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-v9ruoHNdeK .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9ruq5YHZt {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v9ruq5YHZt .image-block {
  margin: auto;
}
.cid-v9ruq5YHZt figcaption {
  position: relative;
}
.cid-v9ruq5YHZt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v9ruq5YHZt .image-block {
    width: 100% !important;
  }
}
.cid-v9rur9m54n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9rur9m54n .mbr-section-subtitle {
  color: #767676;
}
.cid-v9rur9m54n .container-table {
  margin: 0 auto;
}
.cid-v9rur9m54n .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9rur9m54n .dataTables_wrapper {
  display: block;
}
.cid-v9rur9m54n .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9rur9m54n .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9rur9m54n table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #efefef;
  margin-bottom: 0;
}
.cid-v9rur9m54n table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9rur9m54n table th:hover {
  background: #efefef;
  color: #000000;
}
.cid-v9rur9m54n table td {
  border-top: 1px solid #efefef;
}
.cid-v9rur9m54n table.table {
  background: #ffffff;
}
.cid-v9rur9m54n .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9rur9m54n .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9rur9m54n .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9rur9m54n .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9rur9m54n .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9rur9m54n .dataTables_filter {
    text-align: center;
  }
  .cid-v9rur9m54n .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9rur9m54n .head-item {
  text-align: center;
  color: #000000;
}
.cid-v9rur9m54n .body-item {
  color: #000000;
  text-align: center;
}
.cid-v9rurIHB5N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9rurIHB5N .mbr-section-subtitle {
  color: #767676;
}
.cid-v9rurIHB5N .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9rusfgNT7 .google-map {
  height: 25rem;
  position: relative;
}
.cid-v9rusfgNT7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v9rusfgNT7 .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-v9rusfgNT7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v9rusfgNT7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v9rlJPhl2F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v9rlJPhl2F .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v9rlJPhl2F .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v9rlJPhl2F .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v9rlJPhl2F .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v9rlJPhl2F .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v9rlJPhl2F .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v9rlJPhl2F .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v9rlJPhl2F .btn-social {
  border: none !important;
}
.cid-v9rlJPhl2F [class^="socicon-"]:before,
.cid-v9rlJPhl2F [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v9rlJPhl2F .btn {
    font-size: 20px !important;
  }
}
.cid-v9rlJPrQKN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v9rlJPrQKN .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9rlJPrQKN .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v9rlJPrQKN .media-wrap img {
  height: 6rem;
}
.cid-v9rlJPrQKN .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v9rlJPrQKN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9rlJPrQKN .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v9rlJPrQKN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v9rlJPrQKN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v9rlJPrQKN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v9rlJPrQKN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v9rlJPrQKN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v9rlJPrQKN .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v9rlJPrQKN .links {
  color: #000000;
  text-align: right;
}
.cid-v9rlJPrQKN .copyright > p {
  color: #000000;
}
.cid-v9rlJPGtEI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v9rlJPGtEI .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v9CcBiKRoL .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v9CcBiKRoL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v9CcBiKRoL a {
  font-style: normal;
}
.cid-v9CcBiKRoL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v9CcBiKRoL .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v9CcBiKRoL .nav-item:focus,
.cid-v9CcBiKRoL .nav-link:focus {
  outline: none;
}
.cid-v9CcBiKRoL .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9CcBiKRoL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v9CcBiKRoL .menu-logo {
  margin-right: auto;
}
.cid-v9CcBiKRoL .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9CcBiKRoL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v9CcBiKRoL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v9CcBiKRoL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v9CcBiKRoL .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v9CcBiKRoL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v9CcBiKRoL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v9CcBiKRoL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v9CcBiKRoL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9CcBiKRoL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v9CcBiKRoL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v9CcBiKRoL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v9CcBiKRoL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9CcBiKRoL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v9CcBiKRoL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9CcBiKRoL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v9CcBiKRoL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v9CcBiKRoL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v9CcBiKRoL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v9CcBiKRoL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v9CcBiKRoL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v9CcBiKRoL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v9CcBiKRoL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v9CcBiKRoL button.navbar-toggler:focus {
  outline: none;
}
.cid-v9CcBiKRoL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9CcBiKRoL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9CcBiKRoL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CcBiKRoL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9CcBiKRoL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9CcBiKRoL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CcBiKRoL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9CcBiKRoL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9CcBiKRoL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9CcBiKRoL .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9CcBiKRoL .collapsed .btn {
  display: -webkit-flex;
}
.cid-v9CcBiKRoL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v9CcBiKRoL .collapsed .navbar-collapse.collapsing,
.cid-v9CcBiKRoL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v9CcBiKRoL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v9CcBiKRoL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v9CcBiKRoL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v9CcBiKRoL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v9CcBiKRoL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v9CcBiKRoL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v9CcBiKRoL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v9CcBiKRoL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v9CcBiKRoL .collapsed button.navbar-toggler {
  display: block;
}
.cid-v9CcBiKRoL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v9CcBiKRoL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9CcBiKRoL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v9CcBiKRoL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v9CcBiKRoL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v9CcBiKRoL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v9CcBiKRoL.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9CcBiKRoL img {
    height: 3.8rem !important;
  }
  .cid-v9CcBiKRoL .btn {
    display: -webkit-flex;
  }
  .cid-v9CcBiKRoL button.navbar-toggler {
    display: block;
  }
  .cid-v9CcBiKRoL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v9CcBiKRoL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9CcBiKRoL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v9CcBiKRoL .navbar-collapse.collapsing,
  .cid-v9CcBiKRoL .navbar-collapse.show {
    display: block !important;
  }
  .cid-v9CcBiKRoL .navbar-collapse.collapsing .navbar-nav,
  .cid-v9CcBiKRoL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v9CcBiKRoL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v9CcBiKRoL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v9CcBiKRoL .navbar-collapse.collapsing .navbar-buttons,
  .cid-v9CcBiKRoL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v9CcBiKRoL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v9CcBiKRoL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v9CcBiKRoL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v9CcBiKRoL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v9CcBiKRoL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v9CcBiKRoL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v9CcBiKRoL .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v9CcBiKRoL .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v9CcBiKRoL .nav-link:hover,
.cid-v9CcBiKRoL .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v9CcBjkap0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9CcBjkap0 .mbr-section-subtitle {
  color: #000000;
}
.cid-v9CcBjkap0 H2 {
  color: #000000;
}
.cid-v9CcBjkap0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9CcBjkap0 .inner-container {
    width: 100% !important;
  }
}
.cid-v9CcBjkap0 H1 {
  color: #000000;
}
.cid-v9CcBjsW6k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v9CcBjsW6k .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CcBjsW6k .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v9CcBjsW6k .mbr-text {
    text-align: center;
  }
}
.cid-v9CcBjsW6k .mbr-text,
.cid-v9CcBjsW6k .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9CcBjsW6k H3 {
  color: #000000;
}
.cid-v9CcBjsW6k H1 {
  color: #000000;
}
.cid-v9CcBjDSqv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9CcBjDSqv .container-fluid {
  padding: 0 3rem;
}
.cid-v9CcBjDSqv .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v9CcBjDSqv .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v9CcBjDSqv .header-text {
  padding: 2rem 1rem !important;
}
.cid-v9CcBjDSqv .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v9CcBjDSqv .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v9CcBjDSqv .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v9CcBjDSqv .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9CcBjDSqv .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v9CcBjDSqv .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v9CcBjDSqv .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v9CcBjDSqv .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v9CcBjDSqv .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v9CcBjDSqv .container-fluid {
    padding: 0 1rem;
  }
  .cid-v9CcBjDSqv .header-text {
    padding: 1rem !important;
  }
  .cid-v9CcBjDSqv .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v9CcBjDSqv .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v9CcBjDSqv .panel-group {
    padding: 0;
  }
}
.cid-v9CcBjDSqv .header-text,
.cid-v9CcBjDSqv .sign {
  color: #000000;
  text-align: left;
}
.cid-v9CcBjDSqv .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v9CcBjQ9zs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9CcBjQ9zs .mbr-text,
.cid-v9CcBjQ9zs blockquote {
  color: #767676;
}
.cid-v9CcBjQ9zs .mbr-text {
  color: #000000;
}
.cid-v9CcBjQ9zs .mbr-text P {
  text-align: justify;
}
.cid-v9CcBjYxpD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9CcBjYxpD .container-fluid {
  padding: 0 3rem;
}
.cid-v9CcBjYxpD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v9CcBjYxpD .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v9CcBjYxpD .header-text {
  padding: 2rem 1rem !important;
}
.cid-v9CcBjYxpD .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v9CcBjYxpD .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v9CcBjYxpD .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v9CcBjYxpD .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9CcBjYxpD .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v9CcBjYxpD .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v9CcBjYxpD .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v9CcBjYxpD .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v9CcBjYxpD .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v9CcBjYxpD .container-fluid {
    padding: 0 1rem;
  }
  .cid-v9CcBjYxpD .header-text {
    padding: 1rem !important;
  }
  .cid-v9CcBjYxpD .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v9CcBjYxpD .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v9CcBjYxpD .panel-group {
    padding: 0;
  }
}
.cid-v9CcBjYxpD .header-text,
.cid-v9CcBjYxpD .sign {
  color: #000000;
  text-align: left;
}
.cid-v9CcBjYxpD .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v9CcBkryi9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9CcBkryi9 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-v9CcBkryi9 .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9CcBkBYIA {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v9CcBkBYIA .image-block {
  margin: auto;
}
.cid-v9CcBkBYIA figcaption {
  position: relative;
}
.cid-v9CcBkBYIA figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v9CcBkBYIA .image-block {
    width: 100% !important;
  }
}
.cid-v9CcBkJqKJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9CcBkJqKJ .mbr-section-subtitle {
  color: #767676;
}
.cid-v9CcBkJqKJ .container-table {
  margin: 0 auto;
}
.cid-v9CcBkJqKJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9CcBkJqKJ .dataTables_wrapper {
  display: block;
}
.cid-v9CcBkJqKJ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9CcBkJqKJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9CcBkJqKJ table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-v9CcBkJqKJ table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9CcBkJqKJ table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-v9CcBkJqKJ table td {
  border-top: 1px solid #cccccc;
}
.cid-v9CcBkJqKJ table.table {
  background: #ffffff;
}
.cid-v9CcBkJqKJ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9CcBkJqKJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9CcBkJqKJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9CcBkJqKJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9CcBkJqKJ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9CcBkJqKJ .dataTables_filter {
    text-align: center;
  }
  .cid-v9CcBkJqKJ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9CcBkJqKJ .head-item {
  text-align: center;
  color: #000000;
}
.cid-v9CcBkJqKJ .body-item {
  color: #000000;
  text-align: center;
}
.cid-v9CcBlgN8Z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9CcBlgN8Z .mbr-section-subtitle {
  color: #767676;
}
.cid-v9CcBlgN8Z .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9CcBlpLB6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-v9CcBlpLB6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v9CcBlpLB6 .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-v9CcBlpLB6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v9CcBlpLB6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v9CcBlye70 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v9CcBlye70 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v9CcBlye70 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v9CcBlye70 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v9CcBlye70 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v9CcBlye70 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v9CcBlye70 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v9CcBlye70 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v9CcBlye70 .btn-social {
  border: none !important;
}
.cid-v9CcBlye70 [class^="socicon-"]:before,
.cid-v9CcBlye70 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v9CcBlye70 .btn {
    font-size: 20px !important;
  }
}
.cid-v9CcBlLGUq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v9CcBlLGUq .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9CcBlLGUq .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v9CcBlLGUq .media-wrap img {
  height: 6rem;
}
.cid-v9CcBlLGUq .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v9CcBlLGUq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9CcBlLGUq .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v9CcBlLGUq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v9CcBlLGUq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v9CcBlLGUq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v9CcBlLGUq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v9CcBlLGUq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v9CcBlLGUq .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v9CcBlLGUq .links {
  color: #000000;
  text-align: right;
}
.cid-v9CcBlLGUq .copyright > p {
  color: #000000;
}
.cid-v9CcBm1dGU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v9CcBm1dGU .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v9EfROmDRX .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v9EfROmDRX .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v9EfROmDRX a {
  font-style: normal;
}
.cid-v9EfROmDRX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v9EfROmDRX .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v9EfROmDRX .nav-item:focus,
.cid-v9EfROmDRX .nav-link:focus {
  outline: none;
}
.cid-v9EfROmDRX .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9EfROmDRX .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v9EfROmDRX .menu-logo {
  margin-right: auto;
}
.cid-v9EfROmDRX .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9EfROmDRX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v9EfROmDRX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v9EfROmDRX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v9EfROmDRX .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v9EfROmDRX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v9EfROmDRX .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v9EfROmDRX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v9EfROmDRX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9EfROmDRX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v9EfROmDRX .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v9EfROmDRX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v9EfROmDRX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9EfROmDRX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v9EfROmDRX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9EfROmDRX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v9EfROmDRX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v9EfROmDRX .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v9EfROmDRX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v9EfROmDRX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v9EfROmDRX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v9EfROmDRX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v9EfROmDRX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v9EfROmDRX button.navbar-toggler:focus {
  outline: none;
}
.cid-v9EfROmDRX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9EfROmDRX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9EfROmDRX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9EfROmDRX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9EfROmDRX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9EfROmDRX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9EfROmDRX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9EfROmDRX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9EfROmDRX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9EfROmDRX .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9EfROmDRX .collapsed .btn {
  display: -webkit-flex;
}
.cid-v9EfROmDRX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v9EfROmDRX .collapsed .navbar-collapse.collapsing,
.cid-v9EfROmDRX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v9EfROmDRX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v9EfROmDRX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v9EfROmDRX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v9EfROmDRX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v9EfROmDRX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v9EfROmDRX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v9EfROmDRX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v9EfROmDRX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v9EfROmDRX .collapsed button.navbar-toggler {
  display: block;
}
.cid-v9EfROmDRX .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v9EfROmDRX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9EfROmDRX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v9EfROmDRX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v9EfROmDRX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v9EfROmDRX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v9EfROmDRX.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9EfROmDRX img {
    height: 3.8rem !important;
  }
  .cid-v9EfROmDRX .btn {
    display: -webkit-flex;
  }
  .cid-v9EfROmDRX button.navbar-toggler {
    display: block;
  }
  .cid-v9EfROmDRX .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v9EfROmDRX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9EfROmDRX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v9EfROmDRX .navbar-collapse.collapsing,
  .cid-v9EfROmDRX .navbar-collapse.show {
    display: block !important;
  }
  .cid-v9EfROmDRX .navbar-collapse.collapsing .navbar-nav,
  .cid-v9EfROmDRX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v9EfROmDRX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v9EfROmDRX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v9EfROmDRX .navbar-collapse.collapsing .navbar-buttons,
  .cid-v9EfROmDRX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v9EfROmDRX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v9EfROmDRX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v9EfROmDRX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v9EfROmDRX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v9EfROmDRX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v9EfROmDRX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v9EfROmDRX .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v9EfROmDRX .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v9EfROmDRX .nav-link:hover,
.cid-v9EfROmDRX .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v9EfROMwYH {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9EfROMwYH .mbr-section-subtitle {
  color: #000000;
}
.cid-v9EfROMwYH H2 {
  color: #000000;
}
.cid-v9EfROMwYH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9EfROMwYH .inner-container {
    width: 100% !important;
  }
}
.cid-v9EfROMwYH H1 {
  color: #000000;
}
.cid-v9EgRgqCOY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v9EgRgqCOY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v9EgRgqCOY .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v9EgRgqCOY .mbr-text {
    text-align: center;
  }
}
.cid-v9EgRgqCOY .mbr-text,
.cid-v9EgRgqCOY .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9EgRgqCOY H3 {
  color: #000000;
}
.cid-v9EgRgqCOY H1 {
  color: #000000;
}
.cid-v9EkncTgoF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9EkncTgoF .container-fluid {
  padding: 0 3rem;
}
.cid-v9EkncTgoF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v9EkncTgoF .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v9EkncTgoF .header-text {
  padding: 2rem 1rem !important;
}
.cid-v9EkncTgoF .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v9EkncTgoF .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v9EkncTgoF .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v9EkncTgoF .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9EkncTgoF .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v9EkncTgoF .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v9EkncTgoF .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v9EkncTgoF .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v9EkncTgoF .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v9EkncTgoF .container-fluid {
    padding: 0 1rem;
  }
  .cid-v9EkncTgoF .header-text {
    padding: 1rem !important;
  }
  .cid-v9EkncTgoF .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v9EkncTgoF .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v9EkncTgoF .panel-group {
    padding: 0;
  }
}
.cid-v9EkncTgoF .header-text,
.cid-v9EkncTgoF .sign {
  color: #000000;
  text-align: left;
}
.cid-v9EkncTgoF .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v9EgSWLJoM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9EgSWLJoM .mbr-text,
.cid-v9EgSWLJoM blockquote {
  color: #767676;
}
.cid-v9EgSWLJoM .mbr-text {
  color: #000000;
}
.cid-v9EgSWLJoM .mbr-text P {
  text-align: justify;
}
.cid-v9EgXe4r3p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9EgXe4r3p .mbr-section-subtitle {
  color: #767676;
}
.cid-v9EgXe4r3p .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9EgW2MDjJ {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-v9EgW2MDjJ .image-block {
  margin: auto;
}
.cid-v9EgW2MDjJ figcaption {
  position: relative;
}
.cid-v9EgW2MDjJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v9EgW2MDjJ .image-block {
    width: 100% !important;
  }
}
.cid-v9EgYJy3Qk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9EgYJy3Qk .mbr-section-subtitle {
  color: #767676;
}
.cid-v9EgYJy3Qk .container-table {
  margin: 0 auto;
}
.cid-v9EgYJy3Qk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9EgYJy3Qk .dataTables_wrapper {
  display: block;
}
.cid-v9EgYJy3Qk .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9EgYJy3Qk .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9EgYJy3Qk table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-v9EgYJy3Qk table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9EgYJy3Qk table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-v9EgYJy3Qk table td {
  border-top: 1px solid #cccccc;
}
.cid-v9EgYJy3Qk table.table {
  background: #ffffff;
}
.cid-v9EgYJy3Qk .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9EgYJy3Qk .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9EgYJy3Qk .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9EgYJy3Qk .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9EgYJy3Qk .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9EgYJy3Qk .dataTables_filter {
    text-align: center;
  }
  .cid-v9EgYJy3Qk .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9EgYJy3Qk .head-item {
  text-align: center;
  color: #000000;
}
.cid-v9EgYJy3Qk .body-item {
  color: #000000;
  text-align: center;
}
.cid-v9EgZQHKDi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9EgZQHKDi .mbr-section-subtitle {
  color: #767676;
}
.cid-v9EgZQHKDi .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9Eh0Q7T0G .google-map {
  height: 25rem;
  position: relative;
}
.cid-v9Eh0Q7T0G .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v9Eh0Q7T0G .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-v9Eh0Q7T0G .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v9Eh0Q7T0G .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v9EfRQQMWU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v9EfRQQMWU .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v9EfRQQMWU .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v9EfRQQMWU .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v9EfRQQMWU .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v9EfRQQMWU .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v9EfRQQMWU .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v9EfRQQMWU .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v9EfRQQMWU .btn-social {
  border: none !important;
}
.cid-v9EfRQQMWU [class^="socicon-"]:before,
.cid-v9EfRQQMWU [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v9EfRQQMWU .btn {
    font-size: 20px !important;
  }
}
.cid-v9EfRR32Ai {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v9EfRR32Ai .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9EfRR32Ai .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v9EfRR32Ai .media-wrap img {
  height: 6rem;
}
.cid-v9EfRR32Ai .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v9EfRR32Ai .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9EfRR32Ai .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v9EfRR32Ai .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v9EfRR32Ai .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v9EfRR32Ai .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v9EfRR32Ai .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v9EfRR32Ai .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v9EfRR32Ai .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v9EfRR32Ai .links {
  color: #000000;
  text-align: right;
}
.cid-v9EfRR32Ai .copyright > p {
  color: #000000;
}
.cid-v9EfRRjP8G {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v9EfRRjP8G .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v9NpCHfEgP .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v9NpCHfEgP .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v9NpCHfEgP a {
  font-style: normal;
}
.cid-v9NpCHfEgP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v9NpCHfEgP .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v9NpCHfEgP .nav-item:focus,
.cid-v9NpCHfEgP .nav-link:focus {
  outline: none;
}
.cid-v9NpCHfEgP .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9NpCHfEgP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v9NpCHfEgP .menu-logo {
  margin-right: auto;
}
.cid-v9NpCHfEgP .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v9NpCHfEgP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v9NpCHfEgP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v9NpCHfEgP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v9NpCHfEgP .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-v9NpCHfEgP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v9NpCHfEgP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v9NpCHfEgP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v9NpCHfEgP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9NpCHfEgP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v9NpCHfEgP .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v9NpCHfEgP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v9NpCHfEgP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9NpCHfEgP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v9NpCHfEgP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9NpCHfEgP .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v9NpCHfEgP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v9NpCHfEgP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v9NpCHfEgP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v9NpCHfEgP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v9NpCHfEgP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v9NpCHfEgP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v9NpCHfEgP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v9NpCHfEgP button.navbar-toggler:focus {
  outline: none;
}
.cid-v9NpCHfEgP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9NpCHfEgP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9NpCHfEgP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9NpCHfEgP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9NpCHfEgP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9NpCHfEgP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9NpCHfEgP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9NpCHfEgP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9NpCHfEgP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9NpCHfEgP .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9NpCHfEgP .collapsed .btn {
  display: -webkit-flex;
}
.cid-v9NpCHfEgP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v9NpCHfEgP .collapsed .navbar-collapse.collapsing,
.cid-v9NpCHfEgP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v9NpCHfEgP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v9NpCHfEgP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v9NpCHfEgP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v9NpCHfEgP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v9NpCHfEgP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v9NpCHfEgP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v9NpCHfEgP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v9NpCHfEgP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-v9NpCHfEgP .collapsed button.navbar-toggler {
  display: block;
}
.cid-v9NpCHfEgP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v9NpCHfEgP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v9NpCHfEgP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v9NpCHfEgP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v9NpCHfEgP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v9NpCHfEgP .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v9NpCHfEgP.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9NpCHfEgP img {
    height: 3.8rem !important;
  }
  .cid-v9NpCHfEgP .btn {
    display: -webkit-flex;
  }
  .cid-v9NpCHfEgP button.navbar-toggler {
    display: block;
  }
  .cid-v9NpCHfEgP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v9NpCHfEgP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v9NpCHfEgP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v9NpCHfEgP .navbar-collapse.collapsing,
  .cid-v9NpCHfEgP .navbar-collapse.show {
    display: block !important;
  }
  .cid-v9NpCHfEgP .navbar-collapse.collapsing .navbar-nav,
  .cid-v9NpCHfEgP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v9NpCHfEgP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v9NpCHfEgP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v9NpCHfEgP .navbar-collapse.collapsing .navbar-buttons,
  .cid-v9NpCHfEgP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v9NpCHfEgP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v9NpCHfEgP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v9NpCHfEgP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v9NpCHfEgP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v9NpCHfEgP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v9NpCHfEgP .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v9NpCHfEgP .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v9NpCHfEgP .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v9NpCHfEgP .nav-link:hover,
.cid-v9NpCHfEgP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-v9NpCHyIIU {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9NpCHyIIU .mbr-section-subtitle {
  color: #000000;
}
.cid-v9NpCHyIIU H2 {
  color: #000000;
}
.cid-v9NpCHyIIU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v9NpCHyIIU .inner-container {
    width: 100% !important;
  }
}
.cid-v9NpCHyIIU H1 {
  color: #000000;
}
.cid-v9NpCHG44D {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v9NpCHG44D .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v9NpCHG44D .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v9NpCHG44D .mbr-text {
    text-align: center;
  }
}
.cid-v9NpCHG44D .mbr-text,
.cid-v9NpCHG44D .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v9NpCHG44D H3 {
  color: #000000;
}
.cid-v9NpCHG44D H1 {
  color: #000000;
}
.cid-v9NpCHG44D H2 {
  color: #000000;
}
.cid-v9NpCHSO76 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9NpCHSO76 .container-fluid {
  padding: 0 3rem;
}
.cid-v9NpCHSO76 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v9NpCHSO76 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v9NpCHSO76 .header-text {
  padding: 2rem 1rem !important;
}
.cid-v9NpCHSO76 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v9NpCHSO76 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v9NpCHSO76 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v9NpCHSO76 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9NpCHSO76 .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-v9NpCHSO76 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v9NpCHSO76 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v9NpCHSO76 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v9NpCHSO76 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v9NpCHSO76 .container-fluid {
    padding: 0 1rem;
  }
  .cid-v9NpCHSO76 .header-text {
    padding: 1rem !important;
  }
  .cid-v9NpCHSO76 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v9NpCHSO76 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v9NpCHSO76 .panel-group {
    padding: 0;
  }
}
.cid-v9NpCHSO76 .header-text,
.cid-v9NpCHSO76 .sign {
  color: #000000;
  text-align: left;
}
.cid-v9NpCHSO76 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v9NpCI2ukq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9NpCI2ukq .mbr-text,
.cid-v9NpCI2ukq blockquote {
  color: #767676;
}
.cid-v9NpCI2ukq .mbr-text {
  color: #000000;
}
.cid-v9NpCI2ukq .mbr-text P {
  text-align: justify;
}
.cid-v9NpCIa7Gw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9NpCIa7Gw .container-fluid {
  padding: 0 3rem;
}
.cid-v9NpCIa7Gw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-v9NpCIa7Gw .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-v9NpCIa7Gw .header-text {
  padding: 2rem 1rem !important;
}
.cid-v9NpCIa7Gw .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-v9NpCIa7Gw .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-v9NpCIa7Gw .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-v9NpCIa7Gw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9NpCIa7Gw .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-v9NpCIa7Gw .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-v9NpCIa7Gw .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-v9NpCIa7Gw .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-v9NpCIa7Gw .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-v9NpCIa7Gw .container-fluid {
    padding: 0 1rem;
  }
  .cid-v9NpCIa7Gw .header-text {
    padding: 1rem !important;
  }
  .cid-v9NpCIa7Gw .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-v9NpCIa7Gw .panel-body {
    width: calc(100% - 48px);
  }
  .cid-v9NpCIa7Gw .panel-group {
    padding: 0;
  }
}
.cid-v9NpCIa7Gw .header-text,
.cid-v9NpCIa7Gw .sign {
  color: #000000;
  text-align: left;
}
.cid-v9NpCIa7Gw .panel-text {
  text-align: left;
  color: #000000;
}
.cid-v9PiV6xpw7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9PiV6xpw7 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-v9PiV6xpw7 .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9PiVLBV3P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9PiVLBV3P .mbr-section-subtitle {
  color: #767676;
}
.cid-v9PiVLBV3P .container-table {
  margin: 0 auto;
}
.cid-v9PiVLBV3P .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9PiVLBV3P .dataTables_wrapper {
  display: block;
}
.cid-v9PiVLBV3P .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9PiVLBV3P .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9PiVLBV3P table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #efefef;
  margin-bottom: 0;
}
.cid-v9PiVLBV3P table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-v9PiVLBV3P table th:hover {
  background: #efefef;
  color: #000000;
}
.cid-v9PiVLBV3P table td {
  border-top: 1px solid #efefef;
}
.cid-v9PiVLBV3P table.table {
  background: #ffffff;
}
.cid-v9PiVLBV3P .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9PiVLBV3P .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9PiVLBV3P .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9PiVLBV3P .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9PiVLBV3P .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9PiVLBV3P .dataTables_filter {
    text-align: center;
  }
  .cid-v9PiVLBV3P .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9PiVLBV3P .head-item {
  text-align: center;
  color: #000000;
}
.cid-v9PiVLBV3P .body-item {
  color: #000000;
  text-align: center;
}
.cid-v9NpCIraIb {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v9NpCIraIb .mbr-section-subtitle {
  color: #767676;
}
.cid-v9NpCIraIb .mbr-section-subtitle U {
  color: #000000;
}
.cid-v9NpCIzvYk .google-map {
  height: 25rem;
  position: relative;
}
.cid-v9NpCIzvYk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v9NpCIzvYk .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-v9NpCIzvYk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v9NpCIzvYk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v9NpCIItDc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v9NpCIItDc .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-v9NpCIItDc .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-v9NpCIItDc .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-v9NpCIItDc .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-v9NpCIItDc .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-v9NpCIItDc .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-v9NpCIItDc .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-v9NpCIItDc .btn-social {
  border: none !important;
}
.cid-v9NpCIItDc [class^="socicon-"]:before,
.cid-v9NpCIItDc [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-v9NpCIItDc .btn {
    font-size: 20px !important;
  }
}
.cid-v9NpCISovN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v9NpCISovN .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9NpCISovN .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-v9NpCISovN .media-wrap img {
  height: 6rem;
}
.cid-v9NpCISovN .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-v9NpCISovN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v9NpCISovN .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-v9NpCISovN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-v9NpCISovN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-v9NpCISovN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v9NpCISovN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v9NpCISovN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v9NpCISovN .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-v9NpCISovN .links {
  color: #000000;
  text-align: right;
}
.cid-v9NpCISovN .copyright > p {
  color: #000000;
}
.cid-v9NpCJ7l57 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-v9NpCJ7l57 .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-va5hRo5O4S .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-va5hRo5O4S .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-va5hRo5O4S a {
  font-style: normal;
}
.cid-va5hRo5O4S .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-va5hRo5O4S .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-va5hRo5O4S .nav-item:focus,
.cid-va5hRo5O4S .nav-link:focus {
  outline: none;
}
.cid-va5hRo5O4S .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va5hRo5O4S .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-va5hRo5O4S .menu-logo {
  margin-right: auto;
}
.cid-va5hRo5O4S .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va5hRo5O4S .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-va5hRo5O4S .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-va5hRo5O4S .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-va5hRo5O4S .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-va5hRo5O4S .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-va5hRo5O4S .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-va5hRo5O4S .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-va5hRo5O4S .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-va5hRo5O4S .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-va5hRo5O4S .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-va5hRo5O4S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-va5hRo5O4S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va5hRo5O4S .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-va5hRo5O4S .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va5hRo5O4S .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-va5hRo5O4S .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-va5hRo5O4S .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-va5hRo5O4S .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-va5hRo5O4S .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-va5hRo5O4S .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-va5hRo5O4S .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-va5hRo5O4S button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-va5hRo5O4S button.navbar-toggler:focus {
  outline: none;
}
.cid-va5hRo5O4S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-va5hRo5O4S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-va5hRo5O4S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-va5hRo5O4S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-va5hRo5O4S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-va5hRo5O4S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-va5hRo5O4S nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-va5hRo5O4S nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-va5hRo5O4S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-va5hRo5O4S .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va5hRo5O4S .collapsed .btn {
  display: -webkit-flex;
}
.cid-va5hRo5O4S .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-va5hRo5O4S .collapsed .navbar-collapse.collapsing,
.cid-va5hRo5O4S .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-va5hRo5O4S .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-va5hRo5O4S .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-va5hRo5O4S .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-va5hRo5O4S .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-va5hRo5O4S .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-va5hRo5O4S .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-va5hRo5O4S .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-va5hRo5O4S .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-va5hRo5O4S .collapsed button.navbar-toggler {
  display: block;
}
.cid-va5hRo5O4S .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-va5hRo5O4S .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va5hRo5O4S .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-va5hRo5O4S .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-va5hRo5O4S .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-va5hRo5O4S .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-va5hRo5O4S.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va5hRo5O4S img {
    height: 3.8rem !important;
  }
  .cid-va5hRo5O4S .btn {
    display: -webkit-flex;
  }
  .cid-va5hRo5O4S button.navbar-toggler {
    display: block;
  }
  .cid-va5hRo5O4S .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-va5hRo5O4S .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va5hRo5O4S .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-va5hRo5O4S .navbar-collapse.collapsing,
  .cid-va5hRo5O4S .navbar-collapse.show {
    display: block !important;
  }
  .cid-va5hRo5O4S .navbar-collapse.collapsing .navbar-nav,
  .cid-va5hRo5O4S .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-va5hRo5O4S .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-va5hRo5O4S .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-va5hRo5O4S .navbar-collapse.collapsing .navbar-buttons,
  .cid-va5hRo5O4S .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-va5hRo5O4S .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-va5hRo5O4S .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-va5hRo5O4S .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-va5hRo5O4S .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-va5hRo5O4S .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-va5hRo5O4S .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-va5hRo5O4S .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-va5hRo5O4S .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-va5hRo5O4S .nav-link:hover,
.cid-va5hRo5O4S .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-va5hRooDar {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5hRooDar .mbr-section-subtitle {
  color: #000000;
}
.cid-va5hRooDar H2 {
  color: #000000;
}
.cid-va5hRooDar .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-va5hRooDar .inner-container {
    width: 100% !important;
  }
}
.cid-va5hRooDar H1 {
  color: #000000;
}
.cid-va5hRowiOa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-va5hRowiOa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-va5hRowiOa .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-va5hRowiOa .mbr-text {
    text-align: center;
  }
}
.cid-va5hRowiOa .mbr-text,
.cid-va5hRowiOa .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-va5hRowiOa H3 {
  color: #000000;
}
.cid-va5hRowiOa H1 {
  color: #000000;
}
.cid-va5hRoGS04 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5hRoGS04 .container-fluid {
  padding: 0 3rem;
}
.cid-va5hRoGS04 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-va5hRoGS04 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-va5hRoGS04 .header-text {
  padding: 2rem 1rem !important;
}
.cid-va5hRoGS04 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-va5hRoGS04 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-va5hRoGS04 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-va5hRoGS04 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-va5hRoGS04 .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-va5hRoGS04 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-va5hRoGS04 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-va5hRoGS04 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-va5hRoGS04 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-va5hRoGS04 .container-fluid {
    padding: 0 1rem;
  }
  .cid-va5hRoGS04 .header-text {
    padding: 1rem !important;
  }
  .cid-va5hRoGS04 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-va5hRoGS04 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-va5hRoGS04 .panel-group {
    padding: 0;
  }
}
.cid-va5hRoGS04 .header-text,
.cid-va5hRoGS04 .sign {
  color: #000000;
  text-align: left;
}
.cid-va5hRoGS04 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-va5hRoPXEQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5hRoPXEQ .mbr-text,
.cid-va5hRoPXEQ blockquote {
  color: #767676;
}
.cid-va5hRoPXEQ .mbr-text {
  color: #000000;
}
.cid-va5hRoPXEQ .mbr-text P {
  text-align: justify;
}
.cid-va5hRoXbMe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5hRoXbMe .container-fluid {
  padding: 0 3rem;
}
.cid-va5hRoXbMe .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-va5hRoXbMe .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-va5hRoXbMe .header-text {
  padding: 2rem 1rem !important;
}
.cid-va5hRoXbMe .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-va5hRoXbMe .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-va5hRoXbMe .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-va5hRoXbMe .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-va5hRoXbMe .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-va5hRoXbMe .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-va5hRoXbMe .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-va5hRoXbMe .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-va5hRoXbMe .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-va5hRoXbMe .container-fluid {
    padding: 0 1rem;
  }
  .cid-va5hRoXbMe .header-text {
    padding: 1rem !important;
  }
  .cid-va5hRoXbMe .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-va5hRoXbMe .panel-body {
    width: calc(100% - 48px);
  }
  .cid-va5hRoXbMe .panel-group {
    padding: 0;
  }
}
.cid-va5hRoXbMe .header-text,
.cid-va5hRoXbMe .sign {
  color: #000000;
  text-align: left;
}
.cid-va5hRoXbMe .panel-text {
  text-align: left;
  color: #000000;
}
.cid-va5hRpcfl5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-va5hRpcfl5 .mbr-section-subtitle {
  color: #767676;
}
.cid-va5hRpcfl5 .mbr-section-subtitle U {
  color: #000000;
}
.cid-va5hRpkfGM .google-map {
  height: 25rem;
  position: relative;
}
.cid-va5hRpkfGM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-va5hRpkfGM .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-va5hRpkfGM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-va5hRpkfGM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-va5hRptp5R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-va5hRptp5R .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-va5hRptp5R .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-va5hRptp5R .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-va5hRptp5R .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-va5hRptp5R .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-va5hRptp5R .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-va5hRptp5R .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-va5hRptp5R .btn-social {
  border: none !important;
}
.cid-va5hRptp5R [class^="socicon-"]:before,
.cid-va5hRptp5R [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-va5hRptp5R .btn {
    font-size: 20px !important;
  }
}
.cid-va5hRpD4ty {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-va5hRpD4ty .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-va5hRpD4ty .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-va5hRpD4ty .media-wrap img {
  height: 6rem;
}
.cid-va5hRpD4ty .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-va5hRpD4ty .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-va5hRpD4ty .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-va5hRpD4ty .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-va5hRpD4ty .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-va5hRpD4ty .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-va5hRpD4ty .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-va5hRpD4ty .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-va5hRpD4ty .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-va5hRpD4ty .links {
  color: #000000;
  text-align: right;
}
.cid-va5hRpD4ty .copyright > p {
  color: #000000;
}
.cid-va5hRpUI1Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-va5hRpUI1Q .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-va5vVk8IfY .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-va5vVk8IfY .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-va5vVk8IfY a {
  font-style: normal;
}
.cid-va5vVk8IfY .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-va5vVk8IfY .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-va5vVk8IfY .nav-item:focus,
.cid-va5vVk8IfY .nav-link:focus {
  outline: none;
}
.cid-va5vVk8IfY .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va5vVk8IfY .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-va5vVk8IfY .menu-logo {
  margin-right: auto;
}
.cid-va5vVk8IfY .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va5vVk8IfY .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-va5vVk8IfY .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-va5vVk8IfY .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-va5vVk8IfY .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-va5vVk8IfY .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-va5vVk8IfY .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-va5vVk8IfY .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-va5vVk8IfY .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-va5vVk8IfY .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-va5vVk8IfY .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-va5vVk8IfY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-va5vVk8IfY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va5vVk8IfY .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-va5vVk8IfY .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va5vVk8IfY .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-va5vVk8IfY .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-va5vVk8IfY .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-va5vVk8IfY .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-va5vVk8IfY .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-va5vVk8IfY .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-va5vVk8IfY .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-va5vVk8IfY button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-va5vVk8IfY button.navbar-toggler:focus {
  outline: none;
}
.cid-va5vVk8IfY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-va5vVk8IfY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-va5vVk8IfY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-va5vVk8IfY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-va5vVk8IfY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-va5vVk8IfY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-va5vVk8IfY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-va5vVk8IfY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-va5vVk8IfY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-va5vVk8IfY .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va5vVk8IfY .collapsed .btn {
  display: -webkit-flex;
}
.cid-va5vVk8IfY .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-va5vVk8IfY .collapsed .navbar-collapse.collapsing,
.cid-va5vVk8IfY .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-va5vVk8IfY .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-va5vVk8IfY .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-va5vVk8IfY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-va5vVk8IfY .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-va5vVk8IfY .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-va5vVk8IfY .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-va5vVk8IfY .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-va5vVk8IfY .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-va5vVk8IfY .collapsed button.navbar-toggler {
  display: block;
}
.cid-va5vVk8IfY .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-va5vVk8IfY .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va5vVk8IfY .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-va5vVk8IfY .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-va5vVk8IfY .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-va5vVk8IfY .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-va5vVk8IfY.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va5vVk8IfY img {
    height: 3.8rem !important;
  }
  .cid-va5vVk8IfY .btn {
    display: -webkit-flex;
  }
  .cid-va5vVk8IfY button.navbar-toggler {
    display: block;
  }
  .cid-va5vVk8IfY .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-va5vVk8IfY .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va5vVk8IfY .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-va5vVk8IfY .navbar-collapse.collapsing,
  .cid-va5vVk8IfY .navbar-collapse.show {
    display: block !important;
  }
  .cid-va5vVk8IfY .navbar-collapse.collapsing .navbar-nav,
  .cid-va5vVk8IfY .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-va5vVk8IfY .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-va5vVk8IfY .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-va5vVk8IfY .navbar-collapse.collapsing .navbar-buttons,
  .cid-va5vVk8IfY .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-va5vVk8IfY .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-va5vVk8IfY .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-va5vVk8IfY .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-va5vVk8IfY .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-va5vVk8IfY .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-va5vVk8IfY .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-va5vVk8IfY .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-va5vVk8IfY .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-va5vVk8IfY .nav-link:hover,
.cid-va5vVk8IfY .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-va5vVku2Xu {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5vVku2Xu .mbr-section-subtitle {
  color: #000000;
}
.cid-va5vVku2Xu H2 {
  color: #000000;
}
.cid-va5vVku2Xu .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-va5vVku2Xu .inner-container {
    width: 100% !important;
  }
}
.cid-va5vVku2Xu H1 {
  color: #000000;
}
.cid-va5vVkCzLO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-va5vVkCzLO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-va5vVkCzLO .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-va5vVkCzLO .mbr-text {
    text-align: center;
  }
}
.cid-va5vVkCzLO .mbr-text,
.cid-va5vVkCzLO .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-va5vVkCzLO H3 {
  color: #000000;
}
.cid-va5vVkCzLO H1 {
  color: #000000;
}
.cid-va5vVkNXx2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5vVkNXx2 .container-fluid {
  padding: 0 3rem;
}
.cid-va5vVkNXx2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-va5vVkNXx2 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-va5vVkNXx2 .header-text {
  padding: 2rem 1rem !important;
}
.cid-va5vVkNXx2 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-va5vVkNXx2 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-va5vVkNXx2 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-va5vVkNXx2 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-va5vVkNXx2 .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-va5vVkNXx2 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-va5vVkNXx2 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-va5vVkNXx2 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-va5vVkNXx2 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-va5vVkNXx2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-va5vVkNXx2 .header-text {
    padding: 1rem !important;
  }
  .cid-va5vVkNXx2 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-va5vVkNXx2 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-va5vVkNXx2 .panel-group {
    padding: 0;
  }
}
.cid-va5vVkNXx2 .header-text,
.cid-va5vVkNXx2 .sign {
  color: #000000;
  text-align: left;
}
.cid-va5vVkNXx2 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-va5vVkXZ8O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5vVkXZ8O .mbr-text,
.cid-va5vVkXZ8O blockquote {
  color: #767676;
}
.cid-va5vVkXZ8O .mbr-text {
  color: #000000;
}
.cid-va5vVkXZ8O .mbr-text P {
  text-align: justify;
}
.cid-va5vVl6YM1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5vVl6YM1 .container-fluid {
  padding: 0 3rem;
}
.cid-va5vVl6YM1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-va5vVl6YM1 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-va5vVl6YM1 .header-text {
  padding: 2rem 1rem !important;
}
.cid-va5vVl6YM1 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-va5vVl6YM1 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-va5vVl6YM1 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-va5vVl6YM1 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-va5vVl6YM1 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-va5vVl6YM1 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-va5vVl6YM1 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-va5vVl6YM1 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-va5vVl6YM1 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-va5vVl6YM1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-va5vVl6YM1 .header-text {
    padding: 1rem !important;
  }
  .cid-va5vVl6YM1 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-va5vVl6YM1 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-va5vVl6YM1 .panel-group {
    padding: 0;
  }
}
.cid-va5vVl6YM1 .header-text,
.cid-va5vVl6YM1 .sign {
  color: #000000;
  text-align: left;
}
.cid-va5vVl6YM1 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-va5vVmp9yB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-va5vVmp9yB .mbr-section-subtitle {
  color: #767676;
}
.cid-va5vVmp9yB .mbr-section-subtitle U {
  color: #000000;
}
.cid-va5vVmxKQ2 .google-map {
  height: 25rem;
  position: relative;
}
.cid-va5vVmxKQ2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-va5vVmxKQ2 .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-va5vVmxKQ2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-va5vVmxKQ2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-va5vVmHNYG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-va5vVmHNYG .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-va5vVmHNYG .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-va5vVmHNYG .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-va5vVmHNYG .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-va5vVmHNYG .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-va5vVmHNYG .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-va5vVmHNYG .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-va5vVmHNYG .btn-social {
  border: none !important;
}
.cid-va5vVmHNYG [class^="socicon-"]:before,
.cid-va5vVmHNYG [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-va5vVmHNYG .btn {
    font-size: 20px !important;
  }
}
.cid-va5vVmUg7F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-va5vVmUg7F .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-va5vVmUg7F .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-va5vVmUg7F .media-wrap img {
  height: 6rem;
}
.cid-va5vVmUg7F .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-va5vVmUg7F .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-va5vVmUg7F .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-va5vVmUg7F .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-va5vVmUg7F .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-va5vVmUg7F .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-va5vVmUg7F .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-va5vVmUg7F .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-va5vVmUg7F .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-va5vVmUg7F .links {
  color: #000000;
  text-align: right;
}
.cid-va5vVmUg7F .copyright > p {
  color: #000000;
}
.cid-va5vVndaoE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-va5vVndaoE .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vaj6a4XQDE .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vaj6a4XQDE .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vaj6a4XQDE a {
  font-style: normal;
}
.cid-vaj6a4XQDE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vaj6a4XQDE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vaj6a4XQDE .nav-item:focus,
.cid-vaj6a4XQDE .nav-link:focus {
  outline: none;
}
.cid-vaj6a4XQDE .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vaj6a4XQDE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vaj6a4XQDE .menu-logo {
  margin-right: auto;
}
.cid-vaj6a4XQDE .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vaj6a4XQDE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vaj6a4XQDE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vaj6a4XQDE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vaj6a4XQDE .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vaj6a4XQDE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vaj6a4XQDE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vaj6a4XQDE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vaj6a4XQDE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vaj6a4XQDE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vaj6a4XQDE .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vaj6a4XQDE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vaj6a4XQDE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaj6a4XQDE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vaj6a4XQDE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaj6a4XQDE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vaj6a4XQDE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vaj6a4XQDE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vaj6a4XQDE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vaj6a4XQDE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vaj6a4XQDE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vaj6a4XQDE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vaj6a4XQDE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vaj6a4XQDE button.navbar-toggler:focus {
  outline: none;
}
.cid-vaj6a4XQDE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vaj6a4XQDE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vaj6a4XQDE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vaj6a4XQDE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vaj6a4XQDE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vaj6a4XQDE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vaj6a4XQDE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vaj6a4XQDE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vaj6a4XQDE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vaj6a4XQDE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vaj6a4XQDE .collapsed .btn {
  display: -webkit-flex;
}
.cid-vaj6a4XQDE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vaj6a4XQDE .collapsed .navbar-collapse.collapsing,
.cid-vaj6a4XQDE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vaj6a4XQDE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vaj6a4XQDE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vaj6a4XQDE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vaj6a4XQDE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vaj6a4XQDE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vaj6a4XQDE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vaj6a4XQDE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vaj6a4XQDE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vaj6a4XQDE .collapsed button.navbar-toggler {
  display: block;
}
.cid-vaj6a4XQDE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vaj6a4XQDE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vaj6a4XQDE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vaj6a4XQDE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vaj6a4XQDE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vaj6a4XQDE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vaj6a4XQDE.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vaj6a4XQDE img {
    height: 3.8rem !important;
  }
  .cid-vaj6a4XQDE .btn {
    display: -webkit-flex;
  }
  .cid-vaj6a4XQDE button.navbar-toggler {
    display: block;
  }
  .cid-vaj6a4XQDE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vaj6a4XQDE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vaj6a4XQDE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vaj6a4XQDE .navbar-collapse.collapsing,
  .cid-vaj6a4XQDE .navbar-collapse.show {
    display: block !important;
  }
  .cid-vaj6a4XQDE .navbar-collapse.collapsing .navbar-nav,
  .cid-vaj6a4XQDE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vaj6a4XQDE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vaj6a4XQDE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vaj6a4XQDE .navbar-collapse.collapsing .navbar-buttons,
  .cid-vaj6a4XQDE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vaj6a4XQDE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vaj6a4XQDE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vaj6a4XQDE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vaj6a4XQDE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vaj6a4XQDE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vaj6a4XQDE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vaj6a4XQDE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vaj6a4XQDE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vaj6a4XQDE .nav-link:hover,
.cid-vaj6a4XQDE .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vaj6wjGd9C {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaj6wjGd9C .mbr-section-subtitle {
  color: #000000;
}
.cid-vaj6wjGd9C H2 {
  color: #000000;
}
.cid-vaj6wjGd9C .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vaj6wjGd9C .inner-container {
    width: 100% !important;
  }
}
.cid-vaj6xGiEgv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vaj6xGiEgv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vaj6xGiEgv .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vaj6xGiEgv .mbr-text {
    text-align: center;
  }
}
.cid-vaj6xGiEgv .mbr-text,
.cid-vaj6xGiEgv .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vaj6xGiEgv H3 {
  color: #000000;
}
.cid-vaj6xGiEgv H1 {
  color: #000000;
}
.cid-vaj6z3ES8A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaj6z3ES8A .container-fluid {
  padding: 0 3rem;
}
.cid-vaj6z3ES8A .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vaj6z3ES8A .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vaj6z3ES8A .header-text {
  padding: 2rem 1rem !important;
}
.cid-vaj6z3ES8A .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vaj6z3ES8A .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vaj6z3ES8A .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vaj6z3ES8A .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vaj6z3ES8A .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vaj6z3ES8A .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vaj6z3ES8A .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vaj6z3ES8A .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vaj6z3ES8A .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vaj6z3ES8A .container-fluid {
    padding: 0 1rem;
  }
  .cid-vaj6z3ES8A .header-text {
    padding: 1rem !important;
  }
  .cid-vaj6z3ES8A .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vaj6z3ES8A .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vaj6z3ES8A .panel-group {
    padding: 0;
  }
}
.cid-vaj6z3ES8A .header-text,
.cid-vaj6z3ES8A .sign {
  color: #000000;
  text-align: left;
}
.cid-vaj6z3ES8A .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vaj6A0liNx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaj6A0liNx .mbr-text,
.cid-vaj6A0liNx blockquote {
  color: #767676;
}
.cid-vaj6A0liNx .mbr-text {
  color: #000000;
}
.cid-vaj6A0liNx .mbr-text P {
  text-align: justify;
}
.cid-vaj6AYhW3R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaj6AYhW3R .container-fluid {
  padding: 0 3rem;
}
.cid-vaj6AYhW3R .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vaj6AYhW3R .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vaj6AYhW3R .header-text {
  padding: 2rem 1rem !important;
}
.cid-vaj6AYhW3R .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vaj6AYhW3R .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vaj6AYhW3R .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vaj6AYhW3R .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vaj6AYhW3R .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vaj6AYhW3R .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vaj6AYhW3R .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vaj6AYhW3R .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vaj6AYhW3R .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vaj6AYhW3R .container-fluid {
    padding: 0 1rem;
  }
  .cid-vaj6AYhW3R .header-text {
    padding: 1rem !important;
  }
  .cid-vaj6AYhW3R .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vaj6AYhW3R .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vaj6AYhW3R .panel-group {
    padding: 0;
  }
}
.cid-vaj6AYhW3R .header-text,
.cid-vaj6AYhW3R .sign {
  color: #000000;
  text-align: left;
}
.cid-vaj6AYhW3R .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vaj6COGtJa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaj6COGtJa .mbr-section-subtitle {
  color: #767676;
}
.cid-vaj6COGtJa .mbr-section-subtitle U {
  color: #000000;
}
.cid-vaj6DzBzMy .google-map {
  height: 25rem;
  position: relative;
}
.cid-vaj6DzBzMy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vaj6DzBzMy .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-vaj6DzBzMy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vaj6DzBzMy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vaj6a7r3Kn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vaj6a7r3Kn .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vaj6a7r3Kn .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vaj6a7r3Kn .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vaj6a7r3Kn .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vaj6a7r3Kn .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vaj6a7r3Kn .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vaj6a7r3Kn .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vaj6a7r3Kn .btn-social {
  border: none !important;
}
.cid-vaj6a7r3Kn [class^="socicon-"]:before,
.cid-vaj6a7r3Kn [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vaj6a7r3Kn .btn {
    font-size: 20px !important;
  }
}
.cid-vaj6a7Bwhx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vaj6a7Bwhx .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vaj6a7Bwhx .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vaj6a7Bwhx .media-wrap img {
  height: 6rem;
}
.cid-vaj6a7Bwhx .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vaj6a7Bwhx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vaj6a7Bwhx .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vaj6a7Bwhx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vaj6a7Bwhx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vaj6a7Bwhx .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vaj6a7Bwhx .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vaj6a7Bwhx .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vaj6a7Bwhx .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vaj6a7Bwhx .links {
  color: #000000;
  text-align: right;
}
.cid-vaj6a7Bwhx .copyright > p {
  color: #000000;
}
.cid-vaj6a7Q6hK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vaj6a7Q6hK .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vb24kCPP6Y .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vb24kCPP6Y .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vb24kCPP6Y a {
  font-style: normal;
}
.cid-vb24kCPP6Y .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vb24kCPP6Y .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vb24kCPP6Y .nav-item:focus,
.cid-vb24kCPP6Y .nav-link:focus {
  outline: none;
}
.cid-vb24kCPP6Y .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vb24kCPP6Y .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vb24kCPP6Y .menu-logo {
  margin-right: auto;
}
.cid-vb24kCPP6Y .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vb24kCPP6Y .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vb24kCPP6Y .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vb24kCPP6Y .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vb24kCPP6Y .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vb24kCPP6Y .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vb24kCPP6Y .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vb24kCPP6Y .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vb24kCPP6Y .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vb24kCPP6Y .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vb24kCPP6Y .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vb24kCPP6Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vb24kCPP6Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vb24kCPP6Y .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vb24kCPP6Y .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vb24kCPP6Y .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vb24kCPP6Y .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vb24kCPP6Y .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vb24kCPP6Y .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vb24kCPP6Y .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vb24kCPP6Y .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vb24kCPP6Y .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vb24kCPP6Y button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vb24kCPP6Y button.navbar-toggler:focus {
  outline: none;
}
.cid-vb24kCPP6Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vb24kCPP6Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vb24kCPP6Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vb24kCPP6Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vb24kCPP6Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vb24kCPP6Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vb24kCPP6Y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vb24kCPP6Y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vb24kCPP6Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vb24kCPP6Y .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vb24kCPP6Y .collapsed .btn {
  display: -webkit-flex;
}
.cid-vb24kCPP6Y .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vb24kCPP6Y .collapsed .navbar-collapse.collapsing,
.cid-vb24kCPP6Y .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vb24kCPP6Y .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vb24kCPP6Y .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vb24kCPP6Y .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vb24kCPP6Y .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vb24kCPP6Y .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vb24kCPP6Y .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vb24kCPP6Y .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vb24kCPP6Y .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vb24kCPP6Y .collapsed button.navbar-toggler {
  display: block;
}
.cid-vb24kCPP6Y .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vb24kCPP6Y .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vb24kCPP6Y .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vb24kCPP6Y .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vb24kCPP6Y .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vb24kCPP6Y .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vb24kCPP6Y.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vb24kCPP6Y img {
    height: 3.8rem !important;
  }
  .cid-vb24kCPP6Y .btn {
    display: -webkit-flex;
  }
  .cid-vb24kCPP6Y button.navbar-toggler {
    display: block;
  }
  .cid-vb24kCPP6Y .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vb24kCPP6Y .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vb24kCPP6Y .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vb24kCPP6Y .navbar-collapse.collapsing,
  .cid-vb24kCPP6Y .navbar-collapse.show {
    display: block !important;
  }
  .cid-vb24kCPP6Y .navbar-collapse.collapsing .navbar-nav,
  .cid-vb24kCPP6Y .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vb24kCPP6Y .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vb24kCPP6Y .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vb24kCPP6Y .navbar-collapse.collapsing .navbar-buttons,
  .cid-vb24kCPP6Y .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vb24kCPP6Y .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vb24kCPP6Y .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vb24kCPP6Y .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vb24kCPP6Y .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vb24kCPP6Y .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vb24kCPP6Y .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vb24kCPP6Y .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vb24kCPP6Y .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vb24kCPP6Y .nav-link:hover,
.cid-vb24kCPP6Y .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vb24kDcdoH {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb24kDcdoH .mbr-section-subtitle {
  color: #000000;
}
.cid-vb24kDcdoH H2 {
  color: #000000;
}
.cid-vb24kDcdoH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vb24kDcdoH .inner-container {
    width: 100% !important;
  }
}
.cid-vb24kDcdoH H1 {
  color: #000000;
}
.cid-vb24kDkdER {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vb24kDkdER .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vb24kDkdER .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vb24kDkdER .mbr-text {
    text-align: center;
  }
}
.cid-vb24kDkdER .mbr-text,
.cid-vb24kDkdER .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vb24kDkdER H3 {
  color: #000000;
}
.cid-vb24kDkdER H1 {
  color: #000000;
}
.cid-vb24kDyhPa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb24kDyhPa .container-fluid {
  padding: 0 3rem;
}
.cid-vb24kDyhPa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vb24kDyhPa .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vb24kDyhPa .header-text {
  padding: 2rem 1rem !important;
}
.cid-vb24kDyhPa .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vb24kDyhPa .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vb24kDyhPa .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vb24kDyhPa .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vb24kDyhPa .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vb24kDyhPa .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vb24kDyhPa .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vb24kDyhPa .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vb24kDyhPa .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vb24kDyhPa .container-fluid {
    padding: 0 1rem;
  }
  .cid-vb24kDyhPa .header-text {
    padding: 1rem !important;
  }
  .cid-vb24kDyhPa .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vb24kDyhPa .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vb24kDyhPa .panel-group {
    padding: 0;
  }
}
.cid-vb24kDyhPa .header-text,
.cid-vb24kDyhPa .sign {
  color: #000000;
  text-align: left;
}
.cid-vb24kDyhPa .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vb24kDJ4qC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb24kDJ4qC .mbr-text,
.cid-vb24kDJ4qC blockquote {
  color: #767676;
}
.cid-vb24kDJ4qC .mbr-text {
  color: #000000;
}
.cid-vb24kDJ4qC .mbr-text P {
  text-align: justify;
}
.cid-vb24kDRBn4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb24kDRBn4 .container-fluid {
  padding: 0 3rem;
}
.cid-vb24kDRBn4 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vb24kDRBn4 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vb24kDRBn4 .header-text {
  padding: 2rem 1rem !important;
}
.cid-vb24kDRBn4 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vb24kDRBn4 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vb24kDRBn4 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vb24kDRBn4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vb24kDRBn4 .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vb24kDRBn4 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vb24kDRBn4 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vb24kDRBn4 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vb24kDRBn4 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vb24kDRBn4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-vb24kDRBn4 .header-text {
    padding: 1rem !important;
  }
  .cid-vb24kDRBn4 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vb24kDRBn4 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vb24kDRBn4 .panel-group {
    padding: 0;
  }
}
.cid-vb24kDRBn4 .header-text,
.cid-vb24kDRBn4 .sign {
  color: #000000;
  text-align: left;
}
.cid-vb24kDRBn4 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vb24kE50iB {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vb24kE50iB .mbr-section-subtitle {
  color: #767676;
}
.cid-vb24kE50iB .mbr-section-subtitle U {
  color: #000000;
}
.cid-vb24kEeHRp .google-map {
  height: 25rem;
  position: relative;
}
.cid-vb24kEeHRp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vb24kEeHRp .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-vb24kEeHRp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vb24kEeHRp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vb24kEl4fY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vb24kEl4fY .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vb24kEl4fY .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vb24kEl4fY .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vb24kEl4fY .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vb24kEl4fY .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vb24kEl4fY .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vb24kEl4fY .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vb24kEl4fY .btn-social {
  border: none !important;
}
.cid-vb24kEl4fY [class^="socicon-"]:before,
.cid-vb24kEl4fY [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vb24kEl4fY .btn {
    font-size: 20px !important;
  }
}
.cid-vb24kEvmFp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vb24kEvmFp .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vb24kEvmFp .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vb24kEvmFp .media-wrap img {
  height: 6rem;
}
.cid-vb24kEvmFp .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vb24kEvmFp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vb24kEvmFp .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vb24kEvmFp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vb24kEvmFp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vb24kEvmFp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vb24kEvmFp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vb24kEvmFp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vb24kEvmFp .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vb24kEvmFp .links {
  color: #000000;
  text-align: right;
}
.cid-vb24kEvmFp .copyright > p {
  color: #000000;
}
.cid-vb24kELLhe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vb24kELLhe .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vb7BkHYeH5 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vb7BkHYeH5 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vb7BkHYeH5 a {
  font-style: normal;
}
.cid-vb7BkHYeH5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vb7BkHYeH5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vb7BkHYeH5 .nav-item:focus,
.cid-vb7BkHYeH5 .nav-link:focus {
  outline: none;
}
.cid-vb7BkHYeH5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vb7BkHYeH5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vb7BkHYeH5 .menu-logo {
  margin-right: auto;
}
.cid-vb7BkHYeH5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vb7BkHYeH5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vb7BkHYeH5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vb7BkHYeH5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vb7BkHYeH5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vb7BkHYeH5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vb7BkHYeH5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vb7BkHYeH5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vb7BkHYeH5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vb7BkHYeH5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vb7BkHYeH5 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vb7BkHYeH5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vb7BkHYeH5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vb7BkHYeH5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vb7BkHYeH5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vb7BkHYeH5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vb7BkHYeH5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vb7BkHYeH5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vb7BkHYeH5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vb7BkHYeH5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vb7BkHYeH5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vb7BkHYeH5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vb7BkHYeH5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vb7BkHYeH5 button.navbar-toggler:focus {
  outline: none;
}
.cid-vb7BkHYeH5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vb7BkHYeH5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vb7BkHYeH5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vb7BkHYeH5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vb7BkHYeH5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vb7BkHYeH5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vb7BkHYeH5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vb7BkHYeH5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vb7BkHYeH5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vb7BkHYeH5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vb7BkHYeH5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-vb7BkHYeH5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.collapsing,
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vb7BkHYeH5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vb7BkHYeH5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-vb7BkHYeH5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vb7BkHYeH5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vb7BkHYeH5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vb7BkHYeH5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vb7BkHYeH5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vb7BkHYeH5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vb7BkHYeH5.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vb7BkHYeH5 img {
    height: 3.8rem !important;
  }
  .cid-vb7BkHYeH5 .btn {
    display: -webkit-flex;
  }
  .cid-vb7BkHYeH5 button.navbar-toggler {
    display: block;
  }
  .cid-vb7BkHYeH5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vb7BkHYeH5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vb7BkHYeH5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vb7BkHYeH5 .navbar-collapse.collapsing,
  .cid-vb7BkHYeH5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-vb7BkHYeH5 .navbar-collapse.collapsing .navbar-nav,
  .cid-vb7BkHYeH5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vb7BkHYeH5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vb7BkHYeH5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vb7BkHYeH5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-vb7BkHYeH5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vb7BkHYeH5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vb7BkHYeH5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vb7BkHYeH5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vb7BkHYeH5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vb7BkHYeH5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vb7BkHYeH5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vb7BkHYeH5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vb7BkHYeH5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vb7BkHYeH5 .nav-link:hover,
.cid-vb7BkHYeH5 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vb7BkImaZf {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb7BkImaZf .mbr-section-subtitle {
  color: #000000;
}
.cid-vb7BkImaZf H2 {
  color: #000000;
}
.cid-vb7BkImaZf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vb7BkImaZf .inner-container {
    width: 100% !important;
  }
}
.cid-vb7BkImaZf H1 {
  color: #000000;
}
.cid-vb7BkIuczx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vb7BkIuczx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vb7BkIuczx .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vb7BkIuczx .mbr-text {
    text-align: center;
  }
}
.cid-vb7BkIuczx .mbr-text,
.cid-vb7BkIuczx .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vb7BkIuczx H3 {
  color: #000000;
}
.cid-vb7BkIuczx H1 {
  color: #000000;
}
.cid-vb7BkIF7NC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb7BkIF7NC .container-fluid {
  padding: 0 3rem;
}
.cid-vb7BkIF7NC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vb7BkIF7NC .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vb7BkIF7NC .header-text {
  padding: 2rem 1rem !important;
}
.cid-vb7BkIF7NC .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vb7BkIF7NC .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vb7BkIF7NC .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vb7BkIF7NC .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vb7BkIF7NC .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vb7BkIF7NC .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vb7BkIF7NC .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vb7BkIF7NC .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vb7BkIF7NC .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vb7BkIF7NC .container-fluid {
    padding: 0 1rem;
  }
  .cid-vb7BkIF7NC .header-text {
    padding: 1rem !important;
  }
  .cid-vb7BkIF7NC .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vb7BkIF7NC .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vb7BkIF7NC .panel-group {
    padding: 0;
  }
}
.cid-vb7BkIF7NC .header-text,
.cid-vb7BkIF7NC .sign {
  color: #000000;
  text-align: left;
}
.cid-vb7BkIF7NC .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vb7BkIOjp0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb7BkIOjp0 .mbr-text,
.cid-vb7BkIOjp0 blockquote {
  color: #767676;
}
.cid-vb7BkIOjp0 .mbr-text {
  color: #000000;
}
.cid-vb7BkIOjp0 .mbr-text P {
  text-align: justify;
}
.cid-vb7BkIYN1a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb7BkIYN1a .container-fluid {
  padding: 0 3rem;
}
.cid-vb7BkIYN1a .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vb7BkIYN1a .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vb7BkIYN1a .header-text {
  padding: 2rem 1rem !important;
}
.cid-vb7BkIYN1a .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vb7BkIYN1a .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vb7BkIYN1a .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vb7BkIYN1a .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vb7BkIYN1a .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vb7BkIYN1a .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vb7BkIYN1a .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vb7BkIYN1a .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vb7BkIYN1a .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vb7BkIYN1a .container-fluid {
    padding: 0 1rem;
  }
  .cid-vb7BkIYN1a .header-text {
    padding: 1rem !important;
  }
  .cid-vb7BkIYN1a .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vb7BkIYN1a .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vb7BkIYN1a .panel-group {
    padding: 0;
  }
}
.cid-vb7BkIYN1a .header-text,
.cid-vb7BkIYN1a .sign {
  color: #000000;
  text-align: left;
}
.cid-vb7BkIYN1a .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vb7BkJciwL {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vb7BkJciwL .mbr-section-subtitle {
  color: #767676;
}
.cid-vb7BkJciwL .mbr-section-subtitle U {
  color: #000000;
}
.cid-vb7BkJka2w .google-map {
  height: 25rem;
  position: relative;
}
.cid-vb7BkJka2w .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vb7BkJka2w .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-vb7BkJka2w .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vb7BkJka2w .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vb7BkJsZ4i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vb7BkJsZ4i .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vb7BkJsZ4i .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vb7BkJsZ4i .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vb7BkJsZ4i .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vb7BkJsZ4i .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vb7BkJsZ4i .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vb7BkJsZ4i .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vb7BkJsZ4i .btn-social {
  border: none !important;
}
.cid-vb7BkJsZ4i [class^="socicon-"]:before,
.cid-vb7BkJsZ4i [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vb7BkJsZ4i .btn {
    font-size: 20px !important;
  }
}
.cid-vb7BkJCPFw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vb7BkJCPFw .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vb7BkJCPFw .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vb7BkJCPFw .media-wrap img {
  height: 6rem;
}
.cid-vb7BkJCPFw .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vb7BkJCPFw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vb7BkJCPFw .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vb7BkJCPFw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vb7BkJCPFw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vb7BkJCPFw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vb7BkJCPFw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vb7BkJCPFw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vb7BkJCPFw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vb7BkJCPFw .links {
  color: #000000;
  text-align: right;
}
.cid-vb7BkJCPFw .copyright > p {
  color: #000000;
}
.cid-vb7BkJSY7Y {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vb7BkJSY7Y .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vbSLEh03ed .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vbSLEh03ed .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vbSLEh03ed a {
  font-style: normal;
}
.cid-vbSLEh03ed .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vbSLEh03ed .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vbSLEh03ed .nav-item:focus,
.cid-vbSLEh03ed .nav-link:focus {
  outline: none;
}
.cid-vbSLEh03ed .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vbSLEh03ed .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vbSLEh03ed .menu-logo {
  margin-right: auto;
}
.cid-vbSLEh03ed .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vbSLEh03ed .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vbSLEh03ed .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vbSLEh03ed .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vbSLEh03ed .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vbSLEh03ed .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vbSLEh03ed .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vbSLEh03ed .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vbSLEh03ed .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbSLEh03ed .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vbSLEh03ed .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vbSLEh03ed .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vbSLEh03ed .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbSLEh03ed .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vbSLEh03ed .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbSLEh03ed .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vbSLEh03ed .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vbSLEh03ed .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vbSLEh03ed .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vbSLEh03ed .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vbSLEh03ed .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vbSLEh03ed .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vbSLEh03ed button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vbSLEh03ed button.navbar-toggler:focus {
  outline: none;
}
.cid-vbSLEh03ed button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vbSLEh03ed button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vbSLEh03ed button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vbSLEh03ed button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vbSLEh03ed button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vbSLEh03ed nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbSLEh03ed nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vbSLEh03ed nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vbSLEh03ed nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbSLEh03ed .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vbSLEh03ed .collapsed .btn {
  display: -webkit-flex;
}
.cid-vbSLEh03ed .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vbSLEh03ed .collapsed .navbar-collapse.collapsing,
.cid-vbSLEh03ed .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vbSLEh03ed .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vbSLEh03ed .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vbSLEh03ed .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vbSLEh03ed .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vbSLEh03ed .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vbSLEh03ed .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vbSLEh03ed .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vbSLEh03ed .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vbSLEh03ed .collapsed button.navbar-toggler {
  display: block;
}
.cid-vbSLEh03ed .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vbSLEh03ed .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vbSLEh03ed .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vbSLEh03ed .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vbSLEh03ed .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vbSLEh03ed .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vbSLEh03ed.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vbSLEh03ed img {
    height: 3.8rem !important;
  }
  .cid-vbSLEh03ed .btn {
    display: -webkit-flex;
  }
  .cid-vbSLEh03ed button.navbar-toggler {
    display: block;
  }
  .cid-vbSLEh03ed .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vbSLEh03ed .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vbSLEh03ed .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vbSLEh03ed .navbar-collapse.collapsing,
  .cid-vbSLEh03ed .navbar-collapse.show {
    display: block !important;
  }
  .cid-vbSLEh03ed .navbar-collapse.collapsing .navbar-nav,
  .cid-vbSLEh03ed .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vbSLEh03ed .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vbSLEh03ed .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vbSLEh03ed .navbar-collapse.collapsing .navbar-buttons,
  .cid-vbSLEh03ed .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vbSLEh03ed .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vbSLEh03ed .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vbSLEh03ed .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vbSLEh03ed .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vbSLEh03ed .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vbSLEh03ed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vbSLEh03ed .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vbSLEh03ed .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vbSLEh03ed .nav-link:hover,
.cid-vbSLEh03ed .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vbSLEhnk6q {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSLEhnk6q .mbr-section-subtitle {
  color: #000000;
}
.cid-vbSLEhnk6q H2 {
  color: #000000;
}
.cid-vbSLEhnk6q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vbSLEhnk6q .inner-container {
    width: 100% !important;
  }
}
.cid-vbSLEhnk6q H1 {
  color: #000000;
}
.cid-vbSLEhvO7I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vbSLEhvO7I .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vbSLEhvO7I .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbSLEhvO7I .mbr-text {
    text-align: center;
  }
}
.cid-vbSLEhvO7I .mbr-text,
.cid-vbSLEhvO7I .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vbSLEhvO7I H3 {
  color: #000000;
}
.cid-vbSLEhvO7I H1 {
  color: #000000;
}
.cid-vbSLEhH3Zz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSLEhH3Zz .container-fluid {
  padding: 0 3rem;
}
.cid-vbSLEhH3Zz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vbSLEhH3Zz .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vbSLEhH3Zz .header-text {
  padding: 2rem 1rem !important;
}
.cid-vbSLEhH3Zz .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vbSLEhH3Zz .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vbSLEhH3Zz .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vbSLEhH3Zz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vbSLEhH3Zz .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vbSLEhH3Zz .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vbSLEhH3Zz .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vbSLEhH3Zz .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vbSLEhH3Zz .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vbSLEhH3Zz .container-fluid {
    padding: 0 1rem;
  }
  .cid-vbSLEhH3Zz .header-text {
    padding: 1rem !important;
  }
  .cid-vbSLEhH3Zz .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vbSLEhH3Zz .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vbSLEhH3Zz .panel-group {
    padding: 0;
  }
}
.cid-vbSLEhH3Zz .header-text,
.cid-vbSLEhH3Zz .sign {
  color: #000000;
  text-align: left;
}
.cid-vbSLEhH3Zz .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vbSLEhR8bP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSLEhR8bP .mbr-text,
.cid-vbSLEhR8bP blockquote {
  color: #767676;
}
.cid-vbSLEhR8bP .mbr-text {
  color: #000000;
}
.cid-vbSLEhR8bP .mbr-text P {
  text-align: justify;
}
.cid-vbSLEi0dtZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSLEi0dtZ .container-fluid {
  padding: 0 3rem;
}
.cid-vbSLEi0dtZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vbSLEi0dtZ .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vbSLEi0dtZ .header-text {
  padding: 2rem 1rem !important;
}
.cid-vbSLEi0dtZ .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vbSLEi0dtZ .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vbSLEi0dtZ .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vbSLEi0dtZ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vbSLEi0dtZ .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vbSLEi0dtZ .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vbSLEi0dtZ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vbSLEi0dtZ .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vbSLEi0dtZ .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vbSLEi0dtZ .container-fluid {
    padding: 0 1rem;
  }
  .cid-vbSLEi0dtZ .header-text {
    padding: 1rem !important;
  }
  .cid-vbSLEi0dtZ .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vbSLEi0dtZ .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vbSLEi0dtZ .panel-group {
    padding: 0;
  }
}
.cid-vbSLEi0dtZ .header-text,
.cid-vbSLEi0dtZ .sign {
  color: #000000;
  text-align: left;
}
.cid-vbSLEi0dtZ .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vbSLEieBHk {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vbSLEieBHk .mbr-section-subtitle {
  color: #767676;
}
.cid-vbSLEieBHk .mbr-section-subtitle U {
  color: #000000;
}
.cid-vbSLEimsGw .google-map {
  height: 25rem;
  position: relative;
}
.cid-vbSLEimsGw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vbSLEimsGw .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-vbSLEimsGw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vbSLEimsGw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vbSLEivKpc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vbSLEivKpc .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vbSLEivKpc .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vbSLEivKpc .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vbSLEivKpc .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vbSLEivKpc .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vbSLEivKpc .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vbSLEivKpc .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vbSLEivKpc .btn-social {
  border: none !important;
}
.cid-vbSLEivKpc [class^="socicon-"]:before,
.cid-vbSLEivKpc [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vbSLEivKpc .btn {
    font-size: 20px !important;
  }
}
.cid-vbSLEiFBbW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbSLEiFBbW .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vbSLEiFBbW .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vbSLEiFBbW .media-wrap img {
  height: 6rem;
}
.cid-vbSLEiFBbW .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vbSLEiFBbW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vbSLEiFBbW .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vbSLEiFBbW .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vbSLEiFBbW .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vbSLEiFBbW .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vbSLEiFBbW .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vbSLEiFBbW .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vbSLEiFBbW .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vbSLEiFBbW .links {
  color: #000000;
  text-align: right;
}
.cid-vbSLEiFBbW .copyright > p {
  color: #000000;
}
.cid-vbSLEiYCkw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vbSLEiYCkw .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vbSTpfN0vO .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vbSTpfN0vO .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vbSTpfN0vO a {
  font-style: normal;
}
.cid-vbSTpfN0vO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vbSTpfN0vO .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vbSTpfN0vO .nav-item:focus,
.cid-vbSTpfN0vO .nav-link:focus {
  outline: none;
}
.cid-vbSTpfN0vO .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vbSTpfN0vO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vbSTpfN0vO .menu-logo {
  margin-right: auto;
}
.cid-vbSTpfN0vO .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vbSTpfN0vO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vbSTpfN0vO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vbSTpfN0vO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vbSTpfN0vO .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vbSTpfN0vO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vbSTpfN0vO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vbSTpfN0vO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vbSTpfN0vO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbSTpfN0vO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vbSTpfN0vO .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vbSTpfN0vO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vbSTpfN0vO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbSTpfN0vO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vbSTpfN0vO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbSTpfN0vO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vbSTpfN0vO .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vbSTpfN0vO .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vbSTpfN0vO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vbSTpfN0vO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vbSTpfN0vO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vbSTpfN0vO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vbSTpfN0vO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vbSTpfN0vO button.navbar-toggler:focus {
  outline: none;
}
.cid-vbSTpfN0vO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vbSTpfN0vO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vbSTpfN0vO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vbSTpfN0vO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vbSTpfN0vO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vbSTpfN0vO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbSTpfN0vO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vbSTpfN0vO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vbSTpfN0vO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vbSTpfN0vO .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vbSTpfN0vO .collapsed .btn {
  display: -webkit-flex;
}
.cid-vbSTpfN0vO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vbSTpfN0vO .collapsed .navbar-collapse.collapsing,
.cid-vbSTpfN0vO .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vbSTpfN0vO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vbSTpfN0vO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vbSTpfN0vO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vbSTpfN0vO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vbSTpfN0vO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vbSTpfN0vO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vbSTpfN0vO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vbSTpfN0vO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vbSTpfN0vO .collapsed button.navbar-toggler {
  display: block;
}
.cid-vbSTpfN0vO .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vbSTpfN0vO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vbSTpfN0vO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vbSTpfN0vO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vbSTpfN0vO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vbSTpfN0vO .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vbSTpfN0vO.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vbSTpfN0vO img {
    height: 3.8rem !important;
  }
  .cid-vbSTpfN0vO .btn {
    display: -webkit-flex;
  }
  .cid-vbSTpfN0vO button.navbar-toggler {
    display: block;
  }
  .cid-vbSTpfN0vO .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vbSTpfN0vO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vbSTpfN0vO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vbSTpfN0vO .navbar-collapse.collapsing,
  .cid-vbSTpfN0vO .navbar-collapse.show {
    display: block !important;
  }
  .cid-vbSTpfN0vO .navbar-collapse.collapsing .navbar-nav,
  .cid-vbSTpfN0vO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vbSTpfN0vO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vbSTpfN0vO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vbSTpfN0vO .navbar-collapse.collapsing .navbar-buttons,
  .cid-vbSTpfN0vO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vbSTpfN0vO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vbSTpfN0vO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vbSTpfN0vO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vbSTpfN0vO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vbSTpfN0vO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vbSTpfN0vO .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vbSTpfN0vO .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vbSTpfN0vO .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vbSTpfN0vO .nav-link:hover,
.cid-vbSTpfN0vO .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vbSTpgcMfv {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSTpgcMfv .mbr-section-subtitle {
  color: #000000;
}
.cid-vbSTpgcMfv H2 {
  color: #000000;
}
.cid-vbSTpgcMfv .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vbSTpgcMfv .inner-container {
    width: 100% !important;
  }
}
.cid-vbSTpgcMfv H1 {
  color: #000000;
}
.cid-vbSTpgnaHJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vbSTpgnaHJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vbSTpgnaHJ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbSTpgnaHJ .mbr-text {
    text-align: center;
  }
}
.cid-vbSTpgnaHJ .mbr-text,
.cid-vbSTpgnaHJ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vbSTpgnaHJ H3 {
  color: #000000;
}
.cid-vbSTpgnaHJ H1 {
  color: #000000;
}
.cid-vbSTpgAaF2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSTpgAaF2 .container-fluid {
  padding: 0 3rem;
}
.cid-vbSTpgAaF2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vbSTpgAaF2 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vbSTpgAaF2 .header-text {
  padding: 2rem 1rem !important;
}
.cid-vbSTpgAaF2 .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vbSTpgAaF2 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vbSTpgAaF2 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vbSTpgAaF2 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vbSTpgAaF2 .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vbSTpgAaF2 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vbSTpgAaF2 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vbSTpgAaF2 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vbSTpgAaF2 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vbSTpgAaF2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-vbSTpgAaF2 .header-text {
    padding: 1rem !important;
  }
  .cid-vbSTpgAaF2 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vbSTpgAaF2 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vbSTpgAaF2 .panel-group {
    padding: 0;
  }
}
.cid-vbSTpgAaF2 .header-text,
.cid-vbSTpgAaF2 .sign {
  color: #000000;
  text-align: left;
}
.cid-vbSTpgAaF2 .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vbSTpgL2IA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSTpgL2IA .mbr-text,
.cid-vbSTpgL2IA blockquote {
  color: #767676;
}
.cid-vbSTpgL2IA .mbr-text {
  color: #000000;
}
.cid-vbSTpgL2IA .mbr-text P {
  text-align: justify;
}
.cid-vbSTpgUiiJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vbSTpgUiiJ .container-fluid {
  padding: 0 3rem;
}
.cid-vbSTpgUiiJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vbSTpgUiiJ .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vbSTpgUiiJ .header-text {
  padding: 2rem 1rem !important;
}
.cid-vbSTpgUiiJ .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vbSTpgUiiJ .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vbSTpgUiiJ .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vbSTpgUiiJ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vbSTpgUiiJ .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vbSTpgUiiJ .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vbSTpgUiiJ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vbSTpgUiiJ .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vbSTpgUiiJ .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vbSTpgUiiJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-vbSTpgUiiJ .header-text {
    padding: 1rem !important;
  }
  .cid-vbSTpgUiiJ .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vbSTpgUiiJ .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vbSTpgUiiJ .panel-group {
    padding: 0;
  }
}
.cid-vbSTpgUiiJ .header-text,
.cid-vbSTpgUiiJ .sign {
  color: #000000;
  text-align: left;
}
.cid-vbSTpgUiiJ .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vbSTphcXXz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vbSTphcXXz .mbr-section-subtitle {
  color: #767676;
}
.cid-vbSTphcXXz .mbr-section-subtitle U {
  color: #000000;
}
.cid-vbSTphk7Kz .google-map {
  height: 25rem;
  position: relative;
}
.cid-vbSTphk7Kz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vbSTphk7Kz .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-vbSTphk7Kz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vbSTphk7Kz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vbSTpht7DY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vbSTpht7DY .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vbSTpht7DY .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vbSTpht7DY .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vbSTpht7DY .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vbSTpht7DY .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vbSTpht7DY .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vbSTpht7DY .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vbSTpht7DY .btn-social {
  border: none !important;
}
.cid-vbSTpht7DY [class^="socicon-"]:before,
.cid-vbSTpht7DY [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vbSTpht7DY .btn {
    font-size: 20px !important;
  }
}
.cid-vbSTphFwqe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbSTphFwqe .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vbSTphFwqe .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vbSTphFwqe .media-wrap img {
  height: 6rem;
}
.cid-vbSTphFwqe .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vbSTphFwqe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vbSTphFwqe .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vbSTphFwqe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vbSTphFwqe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vbSTphFwqe .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vbSTphFwqe .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vbSTphFwqe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vbSTphFwqe .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vbSTphFwqe .links {
  color: #000000;
  text-align: right;
}
.cid-vbSTphFwqe .copyright > p {
  color: #000000;
}
.cid-vbSTphZmdF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vbSTphZmdF .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vc4xyngOsX .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vc4xyngOsX .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4xyngOsX a {
  font-style: normal;
}
.cid-vc4xyngOsX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vc4xyngOsX .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vc4xyngOsX .nav-item:focus,
.cid-vc4xyngOsX .nav-link:focus {
  outline: none;
}
.cid-vc4xyngOsX .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc4xyngOsX .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vc4xyngOsX .menu-logo {
  margin-right: auto;
}
.cid-vc4xyngOsX .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc4xyngOsX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4xyngOsX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4xyngOsX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4xyngOsX .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vc4xyngOsX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4xyngOsX .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vc4xyngOsX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4xyngOsX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4xyngOsX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4xyngOsX .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vc4xyngOsX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vc4xyngOsX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vc4xyngOsX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4xyngOsX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4xyngOsX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4xyngOsX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4xyngOsX .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vc4xyngOsX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4xyngOsX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4xyngOsX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4xyngOsX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4xyngOsX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vc4xyngOsX button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4xyngOsX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vc4xyngOsX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4xyngOsX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4xyngOsX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4xyngOsX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4xyngOsX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4xyngOsX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4xyngOsX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4xyngOsX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4xyngOsX .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc4xyngOsX .collapsed .btn {
  display: -webkit-flex;
}
.cid-vc4xyngOsX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4xyngOsX .collapsed .navbar-collapse.collapsing,
.cid-vc4xyngOsX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4xyngOsX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4xyngOsX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4xyngOsX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4xyngOsX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4xyngOsX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4xyngOsX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4xyngOsX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4xyngOsX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vc4xyngOsX .collapsed button.navbar-toggler {
  display: block;
}
.cid-vc4xyngOsX .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vc4xyngOsX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc4xyngOsX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vc4xyngOsX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4xyngOsX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4xyngOsX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vc4xyngOsX.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc4xyngOsX img {
    height: 3.8rem !important;
  }
  .cid-vc4xyngOsX .btn {
    display: -webkit-flex;
  }
  .cid-vc4xyngOsX button.navbar-toggler {
    display: block;
  }
  .cid-vc4xyngOsX .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vc4xyngOsX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc4xyngOsX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4xyngOsX .navbar-collapse.collapsing,
  .cid-vc4xyngOsX .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4xyngOsX .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4xyngOsX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4xyngOsX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4xyngOsX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vc4xyngOsX .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4xyngOsX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4xyngOsX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4xyngOsX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4xyngOsX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vc4xyngOsX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4xyngOsX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4xyngOsX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vc4xyngOsX .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vc4xyngOsX .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vc4xyngOsX .nav-link:hover,
.cid-vc4xyngOsX .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vc4xynCpuW {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4xynCpuW .mbr-section-subtitle {
  color: #000000;
}
.cid-vc4xynCpuW H2 {
  color: #000000;
}
.cid-vc4xynCpuW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vc4xynCpuW .inner-container {
    width: 100% !important;
  }
}
.cid-vc4xynCpuW H1 {
  color: #000000;
}
.cid-vc4xynL9Dz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vc4xynL9Dz .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vc4xynL9Dz .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4xynL9Dz .mbr-text {
    text-align: center;
  }
}
.cid-vc4xynL9Dz .mbr-text,
.cid-vc4xynL9Dz .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vc4xynL9Dz H3 {
  color: #000000;
}
.cid-vc4xynL9Dz H1 {
  color: #000000;
}
.cid-vc4xynX94Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4xynX94Q .container-fluid {
  padding: 0 3rem;
}
.cid-vc4xynX94Q .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc4xynX94Q .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc4xynX94Q .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc4xynX94Q .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc4xynX94Q .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc4xynX94Q .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc4xynX94Q .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc4xynX94Q .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vc4xynX94Q .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc4xynX94Q .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc4xynX94Q .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc4xynX94Q .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc4xynX94Q .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc4xynX94Q .header-text {
    padding: 1rem !important;
  }
  .cid-vc4xynX94Q .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc4xynX94Q .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc4xynX94Q .panel-group {
    padding: 0;
  }
}
.cid-vc4xynX94Q .header-text,
.cid-vc4xynX94Q .sign {
  color: #000000;
  text-align: left;
}
.cid-vc4xynX94Q .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc4xyo8BNR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4xyo8BNR .mbr-text,
.cid-vc4xyo8BNR blockquote {
  color: #767676;
}
.cid-vc4xyo8BNR .mbr-text {
  color: #000000;
}
.cid-vc4xyo8BNR .mbr-text P {
  text-align: justify;
}
.cid-vc4xyohM2x {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4xyohM2x .container-fluid {
  padding: 0 3rem;
}
.cid-vc4xyohM2x .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc4xyohM2x .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc4xyohM2x .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc4xyohM2x .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc4xyohM2x .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc4xyohM2x .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc4xyohM2x .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc4xyohM2x .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vc4xyohM2x .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc4xyohM2x .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc4xyohM2x .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc4xyohM2x .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc4xyohM2x .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc4xyohM2x .header-text {
    padding: 1rem !important;
  }
  .cid-vc4xyohM2x .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc4xyohM2x .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc4xyohM2x .panel-group {
    padding: 0;
  }
}
.cid-vc4xyohM2x .header-text,
.cid-vc4xyohM2x .sign {
  color: #000000;
  text-align: left;
}
.cid-vc4xyohM2x .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc4xyov1iI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc4xyov1iI .mbr-section-subtitle {
  color: #767676;
}
.cid-vc4xyov1iI .mbr-section-subtitle U {
  color: #000000;
}
.cid-vc4xyoEsJU .google-map {
  height: 25rem;
  position: relative;
}
.cid-vc4xyoEsJU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vc4xyoEsJU .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-vc4xyoEsJU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vc4xyoEsJU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vc4xyoNMVp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc4xyoNMVp .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vc4xyoNMVp .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vc4xyoNMVp .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vc4xyoNMVp .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vc4xyoNMVp .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vc4xyoNMVp .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vc4xyoNMVp .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vc4xyoNMVp .btn-social {
  border: none !important;
}
.cid-vc4xyoNMVp [class^="socicon-"]:before,
.cid-vc4xyoNMVp [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vc4xyoNMVp .btn {
    font-size: 20px !important;
  }
}
.cid-vc4xyoYe3A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vc4xyoYe3A .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc4xyoYe3A .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vc4xyoYe3A .media-wrap img {
  height: 6rem;
}
.cid-vc4xyoYe3A .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vc4xyoYe3A .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc4xyoYe3A .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vc4xyoYe3A .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vc4xyoYe3A .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vc4xyoYe3A .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vc4xyoYe3A .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4xyoYe3A .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4xyoYe3A .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vc4xyoYe3A .links {
  color: #000000;
  text-align: right;
}
.cid-vc4xyoYe3A .copyright > p {
  color: #000000;
}
.cid-vc4xypdBUs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vc4xypdBUs .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vc4PYuAV49 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vc4PYuAV49 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4PYuAV49 a {
  font-style: normal;
}
.cid-vc4PYuAV49 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vc4PYuAV49 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vc4PYuAV49 .nav-item:focus,
.cid-vc4PYuAV49 .nav-link:focus {
  outline: none;
}
.cid-vc4PYuAV49 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc4PYuAV49 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vc4PYuAV49 .menu-logo {
  margin-right: auto;
}
.cid-vc4PYuAV49 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc4PYuAV49 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4PYuAV49 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4PYuAV49 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4PYuAV49 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vc4PYuAV49 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4PYuAV49 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vc4PYuAV49 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4PYuAV49 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4PYuAV49 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4PYuAV49 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vc4PYuAV49 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vc4PYuAV49 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vc4PYuAV49 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4PYuAV49 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4PYuAV49 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4PYuAV49 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4PYuAV49 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vc4PYuAV49 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4PYuAV49 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4PYuAV49 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4PYuAV49 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4PYuAV49 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vc4PYuAV49 button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4PYuAV49 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vc4PYuAV49 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4PYuAV49 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4PYuAV49 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4PYuAV49 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4PYuAV49 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4PYuAV49 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4PYuAV49 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4PYuAV49 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4PYuAV49 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc4PYuAV49 .collapsed .btn {
  display: -webkit-flex;
}
.cid-vc4PYuAV49 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4PYuAV49 .collapsed .navbar-collapse.collapsing,
.cid-vc4PYuAV49 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4PYuAV49 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4PYuAV49 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4PYuAV49 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4PYuAV49 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4PYuAV49 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4PYuAV49 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4PYuAV49 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4PYuAV49 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vc4PYuAV49 .collapsed button.navbar-toggler {
  display: block;
}
.cid-vc4PYuAV49 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vc4PYuAV49 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc4PYuAV49 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vc4PYuAV49 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4PYuAV49 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4PYuAV49 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vc4PYuAV49.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc4PYuAV49 img {
    height: 3.8rem !important;
  }
  .cid-vc4PYuAV49 .btn {
    display: -webkit-flex;
  }
  .cid-vc4PYuAV49 button.navbar-toggler {
    display: block;
  }
  .cid-vc4PYuAV49 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vc4PYuAV49 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc4PYuAV49 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4PYuAV49 .navbar-collapse.collapsing,
  .cid-vc4PYuAV49 .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4PYuAV49 .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4PYuAV49 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4PYuAV49 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4PYuAV49 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vc4PYuAV49 .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4PYuAV49 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4PYuAV49 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4PYuAV49 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4PYuAV49 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vc4PYuAV49 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4PYuAV49 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4PYuAV49 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vc4PYuAV49 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vc4PYuAV49 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vc4PYuAV49 .nav-link:hover,
.cid-vc4PYuAV49 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vc4PYuXSO8 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4PYuXSO8 .mbr-section-subtitle {
  color: #000000;
}
.cid-vc4PYuXSO8 H2 {
  color: #000000;
}
.cid-vc4PYuXSO8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vc4PYuXSO8 .inner-container {
    width: 100% !important;
  }
}
.cid-vc4PYuXSO8 H1 {
  color: #000000;
}
.cid-vc4PYv5zEV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vc4PYv5zEV .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vc4PYv5zEV .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4PYv5zEV .mbr-text {
    text-align: center;
  }
}
.cid-vc4PYv5zEV .mbr-text,
.cid-vc4PYv5zEV .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vc4PYv5zEV H3 {
  color: #000000;
}
.cid-vc4PYv5zEV H1 {
  color: #000000;
}
.cid-vc4PYvj8Hg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4PYvj8Hg .container-fluid {
  padding: 0 3rem;
}
.cid-vc4PYvj8Hg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc4PYvj8Hg .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc4PYvj8Hg .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc4PYvj8Hg .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc4PYvj8Hg .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc4PYvj8Hg .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc4PYvj8Hg .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc4PYvj8Hg .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vc4PYvj8Hg .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc4PYvj8Hg .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc4PYvj8Hg .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc4PYvj8Hg .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc4PYvj8Hg .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc4PYvj8Hg .header-text {
    padding: 1rem !important;
  }
  .cid-vc4PYvj8Hg .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc4PYvj8Hg .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc4PYvj8Hg .panel-group {
    padding: 0;
  }
}
.cid-vc4PYvj8Hg .header-text,
.cid-vc4PYvj8Hg .sign {
  color: #000000;
  text-align: left;
}
.cid-vc4PYvj8Hg .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc4PYvv9ry {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4PYvv9ry .mbr-text,
.cid-vc4PYvv9ry blockquote {
  color: #767676;
}
.cid-vc4PYvv9ry .mbr-text {
  color: #000000;
}
.cid-vc4PYvv9ry .mbr-text P {
  text-align: justify;
}
.cid-vc4PYvEqcL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4PYvEqcL .container-fluid {
  padding: 0 3rem;
}
.cid-vc4PYvEqcL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc4PYvEqcL .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc4PYvEqcL .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc4PYvEqcL .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc4PYvEqcL .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc4PYvEqcL .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc4PYvEqcL .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc4PYvEqcL .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vc4PYvEqcL .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc4PYvEqcL .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc4PYvEqcL .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc4PYvEqcL .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc4PYvEqcL .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc4PYvEqcL .header-text {
    padding: 1rem !important;
  }
  .cid-vc4PYvEqcL .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc4PYvEqcL .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc4PYvEqcL .panel-group {
    padding: 0;
  }
}
.cid-vc4PYvEqcL .header-text,
.cid-vc4PYvEqcL .sign {
  color: #000000;
  text-align: left;
}
.cid-vc4PYvEqcL .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc4PYvS5xX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc4PYvS5xX .mbr-section-subtitle {
  color: #767676;
}
.cid-vc4PYvS5xX .mbr-section-subtitle U {
  color: #000000;
}
.cid-vc4PYw1hUj .google-map {
  height: 25rem;
  position: relative;
}
.cid-vc4PYw1hUj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vc4PYw1hUj .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-vc4PYw1hUj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vc4PYw1hUj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vc4PYwaP2s {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc4PYwaP2s .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vc4PYwaP2s .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vc4PYwaP2s .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vc4PYwaP2s .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vc4PYwaP2s .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vc4PYwaP2s .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vc4PYwaP2s .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vc4PYwaP2s .btn-social {
  border: none !important;
}
.cid-vc4PYwaP2s [class^="socicon-"]:before,
.cid-vc4PYwaP2s [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vc4PYwaP2s .btn {
    font-size: 20px !important;
  }
}
.cid-vc4PYwkZ3C {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vc4PYwkZ3C .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc4PYwkZ3C .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vc4PYwkZ3C .media-wrap img {
  height: 6rem;
}
.cid-vc4PYwkZ3C .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vc4PYwkZ3C .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc4PYwkZ3C .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vc4PYwkZ3C .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vc4PYwkZ3C .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vc4PYwkZ3C .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vc4PYwkZ3C .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4PYwkZ3C .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4PYwkZ3C .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vc4PYwkZ3C .links {
  color: #000000;
  text-align: right;
}
.cid-vc4PYwkZ3C .copyright > p {
  color: #000000;
}
.cid-vc4PYwAdBI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vc4PYwAdBI .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vc9tHCEmt8 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vc9tHCEmt8 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc9tHCEmt8 a {
  font-style: normal;
}
.cid-vc9tHCEmt8 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vc9tHCEmt8 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vc9tHCEmt8 .nav-item:focus,
.cid-vc9tHCEmt8 .nav-link:focus {
  outline: none;
}
.cid-vc9tHCEmt8 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc9tHCEmt8 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vc9tHCEmt8 .menu-logo {
  margin-right: auto;
}
.cid-vc9tHCEmt8 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc9tHCEmt8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc9tHCEmt8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc9tHCEmt8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc9tHCEmt8 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vc9tHCEmt8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc9tHCEmt8 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vc9tHCEmt8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc9tHCEmt8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc9tHCEmt8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc9tHCEmt8 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vc9tHCEmt8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vc9tHCEmt8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vc9tHCEmt8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc9tHCEmt8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc9tHCEmt8 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vc9tHCEmt8 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc9tHCEmt8 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vc9tHCEmt8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc9tHCEmt8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc9tHCEmt8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc9tHCEmt8 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc9tHCEmt8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vc9tHCEmt8 button.navbar-toggler:focus {
  outline: none;
}
.cid-vc9tHCEmt8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vc9tHCEmt8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc9tHCEmt8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc9tHCEmt8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc9tHCEmt8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc9tHCEmt8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc9tHCEmt8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc9tHCEmt8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc9tHCEmt8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc9tHCEmt8 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc9tHCEmt8 .collapsed .btn {
  display: -webkit-flex;
}
.cid-vc9tHCEmt8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.collapsing,
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc9tHCEmt8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vc9tHCEmt8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-vc9tHCEmt8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vc9tHCEmt8 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc9tHCEmt8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vc9tHCEmt8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc9tHCEmt8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc9tHCEmt8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vc9tHCEmt8.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc9tHCEmt8 img {
    height: 3.8rem !important;
  }
  .cid-vc9tHCEmt8 .btn {
    display: -webkit-flex;
  }
  .cid-vc9tHCEmt8 button.navbar-toggler {
    display: block;
  }
  .cid-vc9tHCEmt8 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vc9tHCEmt8 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc9tHCEmt8 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc9tHCEmt8 .navbar-collapse.collapsing,
  .cid-vc9tHCEmt8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc9tHCEmt8 .navbar-collapse.collapsing .navbar-nav,
  .cid-vc9tHCEmt8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc9tHCEmt8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc9tHCEmt8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vc9tHCEmt8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc9tHCEmt8 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc9tHCEmt8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc9tHCEmt8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc9tHCEmt8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vc9tHCEmt8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc9tHCEmt8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc9tHCEmt8 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vc9tHCEmt8 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vc9tHCEmt8 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vc9tHCEmt8 .nav-link:hover,
.cid-vc9tHCEmt8 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vc9tHD5x1f {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9tHD5x1f .mbr-section-subtitle {
  color: #000000;
}
.cid-vc9tHD5x1f H2 {
  color: #000000;
}
.cid-vc9tHD5x1f .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vc9tHD5x1f .inner-container {
    width: 100% !important;
  }
}
.cid-vc9tHD5x1f H1 {
  color: #000000;
}
.cid-vc9tHDfbWl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vc9tHDfbWl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vc9tHDfbWl .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc9tHDfbWl .mbr-text {
    text-align: center;
  }
}
.cid-vc9tHDfbWl .mbr-text,
.cid-vc9tHDfbWl .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vc9tHDfbWl H3 {
  color: #000000;
}
.cid-vc9tHDfbWl H1 {
  color: #000000;
}
.cid-vc9tHDw9eG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9tHDw9eG .container-fluid {
  padding: 0 3rem;
}
.cid-vc9tHDw9eG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc9tHDw9eG .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc9tHDw9eG .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc9tHDw9eG .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc9tHDw9eG .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc9tHDw9eG .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc9tHDw9eG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc9tHDw9eG .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vc9tHDw9eG .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc9tHDw9eG .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc9tHDw9eG .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc9tHDw9eG .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc9tHDw9eG .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc9tHDw9eG .header-text {
    padding: 1rem !important;
  }
  .cid-vc9tHDw9eG .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc9tHDw9eG .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc9tHDw9eG .panel-group {
    padding: 0;
  }
}
.cid-vc9tHDw9eG .header-text,
.cid-vc9tHDw9eG .sign {
  color: #000000;
  text-align: left;
}
.cid-vc9tHDw9eG .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc9tHDKjuK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9tHDKjuK .mbr-text,
.cid-vc9tHDKjuK blockquote {
  color: #767676;
}
.cid-vc9tHDKjuK .mbr-text {
  color: #000000;
}
.cid-vc9tHDKjuK .mbr-text P {
  text-align: justify;
}
.cid-vc9tHDV6Yg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9tHDV6Yg .container-fluid {
  padding: 0 3rem;
}
.cid-vc9tHDV6Yg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc9tHDV6Yg .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc9tHDV6Yg .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc9tHDV6Yg .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc9tHDV6Yg .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc9tHDV6Yg .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc9tHDV6Yg .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc9tHDV6Yg .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vc9tHDV6Yg .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc9tHDV6Yg .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc9tHDV6Yg .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc9tHDV6Yg .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc9tHDV6Yg .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc9tHDV6Yg .header-text {
    padding: 1rem !important;
  }
  .cid-vc9tHDV6Yg .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc9tHDV6Yg .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc9tHDV6Yg .panel-group {
    padding: 0;
  }
}
.cid-vc9tHDV6Yg .header-text,
.cid-vc9tHDV6Yg .sign {
  color: #000000;
  text-align: left;
}
.cid-vc9tHDV6Yg .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc9tHEcKbG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc9tHEcKbG .mbr-section-subtitle {
  color: #767676;
}
.cid-vc9tHEcKbG .mbr-section-subtitle U {
  color: #000000;
}
.cid-vc9tHEmkVc .google-map {
  height: 25rem;
  position: relative;
}
.cid-vc9tHEmkVc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vc9tHEmkVc .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-vc9tHEmkVc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vc9tHEmkVc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vc9tHExqMp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc9tHExqMp .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vc9tHExqMp .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vc9tHExqMp .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vc9tHExqMp .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vc9tHExqMp .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vc9tHExqMp .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vc9tHExqMp .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vc9tHExqMp .btn-social {
  border: none !important;
}
.cid-vc9tHExqMp [class^="socicon-"]:before,
.cid-vc9tHExqMp [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vc9tHExqMp .btn {
    font-size: 20px !important;
  }
}
.cid-vc9tHEMfND {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vc9tHEMfND .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc9tHEMfND .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vc9tHEMfND .media-wrap img {
  height: 6rem;
}
.cid-vc9tHEMfND .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vc9tHEMfND .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc9tHEMfND .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vc9tHEMfND .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vc9tHEMfND .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vc9tHEMfND .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vc9tHEMfND .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc9tHEMfND .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc9tHEMfND .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vc9tHEMfND .links {
  color: #000000;
  text-align: right;
}
.cid-vc9tHEMfND .copyright > p {
  color: #000000;
}
.cid-vc9tHF7GiL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vc9tHF7GiL .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vc9BRUsSLV .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vc9BRUsSLV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc9BRUsSLV a {
  font-style: normal;
}
.cid-vc9BRUsSLV .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vc9BRUsSLV .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vc9BRUsSLV .nav-item:focus,
.cid-vc9BRUsSLV .nav-link:focus {
  outline: none;
}
.cid-vc9BRUsSLV .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc9BRUsSLV .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vc9BRUsSLV .menu-logo {
  margin-right: auto;
}
.cid-vc9BRUsSLV .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vc9BRUsSLV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc9BRUsSLV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc9BRUsSLV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc9BRUsSLV .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vc9BRUsSLV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc9BRUsSLV .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vc9BRUsSLV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc9BRUsSLV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc9BRUsSLV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc9BRUsSLV .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vc9BRUsSLV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vc9BRUsSLV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vc9BRUsSLV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc9BRUsSLV .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc9BRUsSLV .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vc9BRUsSLV .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc9BRUsSLV .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vc9BRUsSLV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc9BRUsSLV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc9BRUsSLV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc9BRUsSLV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc9BRUsSLV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vc9BRUsSLV button.navbar-toggler:focus {
  outline: none;
}
.cid-vc9BRUsSLV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vc9BRUsSLV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc9BRUsSLV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc9BRUsSLV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc9BRUsSLV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc9BRUsSLV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc9BRUsSLV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc9BRUsSLV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc9BRUsSLV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc9BRUsSLV .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc9BRUsSLV .collapsed .btn {
  display: -webkit-flex;
}
.cid-vc9BRUsSLV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc9BRUsSLV .collapsed .navbar-collapse.collapsing,
.cid-vc9BRUsSLV .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc9BRUsSLV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc9BRUsSLV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc9BRUsSLV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc9BRUsSLV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc9BRUsSLV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc9BRUsSLV .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc9BRUsSLV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc9BRUsSLV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vc9BRUsSLV .collapsed button.navbar-toggler {
  display: block;
}
.cid-vc9BRUsSLV .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vc9BRUsSLV .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vc9BRUsSLV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vc9BRUsSLV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc9BRUsSLV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc9BRUsSLV .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vc9BRUsSLV.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc9BRUsSLV img {
    height: 3.8rem !important;
  }
  .cid-vc9BRUsSLV .btn {
    display: -webkit-flex;
  }
  .cid-vc9BRUsSLV button.navbar-toggler {
    display: block;
  }
  .cid-vc9BRUsSLV .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vc9BRUsSLV .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vc9BRUsSLV .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc9BRUsSLV .navbar-collapse.collapsing,
  .cid-vc9BRUsSLV .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc9BRUsSLV .navbar-collapse.collapsing .navbar-nav,
  .cid-vc9BRUsSLV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc9BRUsSLV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc9BRUsSLV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vc9BRUsSLV .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc9BRUsSLV .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc9BRUsSLV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc9BRUsSLV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc9BRUsSLV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vc9BRUsSLV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc9BRUsSLV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc9BRUsSLV .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vc9BRUsSLV .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vc9BRUsSLV .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vc9BRUsSLV .nav-link:hover,
.cid-vc9BRUsSLV .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vc9BRV5m6q {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9BRV5m6q .mbr-section-subtitle {
  color: #000000;
}
.cid-vc9BRV5m6q H2 {
  color: #000000;
}
.cid-vc9BRV5m6q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vc9BRV5m6q .inner-container {
    width: 100% !important;
  }
}
.cid-vc9BRV5m6q H1 {
  color: #000000;
}
.cid-vc9BRVrhjQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vc9BRVrhjQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vc9BRVrhjQ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc9BRVrhjQ .mbr-text {
    text-align: center;
  }
}
.cid-vc9BRVrhjQ .mbr-text,
.cid-vc9BRVrhjQ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vc9BRVrhjQ H3 {
  color: #000000;
}
.cid-vc9BRVrhjQ H1 {
  color: #000000;
}
.cid-vc9BRVP7gm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9BRVP7gm .container-fluid {
  padding: 0 3rem;
}
.cid-vc9BRVP7gm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc9BRVP7gm .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc9BRVP7gm .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc9BRVP7gm .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc9BRVP7gm .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc9BRVP7gm .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc9BRVP7gm .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc9BRVP7gm .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vc9BRVP7gm .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc9BRVP7gm .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc9BRVP7gm .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc9BRVP7gm .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc9BRVP7gm .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc9BRVP7gm .header-text {
    padding: 1rem !important;
  }
  .cid-vc9BRVP7gm .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc9BRVP7gm .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc9BRVP7gm .panel-group {
    padding: 0;
  }
}
.cid-vc9BRVP7gm .header-text,
.cid-vc9BRVP7gm .sign {
  color: #000000;
  text-align: left;
}
.cid-vc9BRVP7gm .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc9BRW9qmO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9BRW9qmO .mbr-text,
.cid-vc9BRW9qmO blockquote {
  color: #767676;
}
.cid-vc9BRW9qmO .mbr-text {
  color: #000000;
}
.cid-vc9BRW9qmO .mbr-text P {
  text-align: justify;
}
.cid-vc9BRWw1Ue {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc9BRWw1Ue .container-fluid {
  padding: 0 3rem;
}
.cid-vc9BRWw1Ue .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vc9BRWw1Ue .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vc9BRWw1Ue .header-text {
  padding: 2rem 1rem !important;
}
.cid-vc9BRWw1Ue .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vc9BRWw1Ue .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vc9BRWw1Ue .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vc9BRWw1Ue .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc9BRWw1Ue .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vc9BRWw1Ue .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vc9BRWw1Ue .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vc9BRWw1Ue .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vc9BRWw1Ue .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vc9BRWw1Ue .container-fluid {
    padding: 0 1rem;
  }
  .cid-vc9BRWw1Ue .header-text {
    padding: 1rem !important;
  }
  .cid-vc9BRWw1Ue .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vc9BRWw1Ue .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vc9BRWw1Ue .panel-group {
    padding: 0;
  }
}
.cid-vc9BRWw1Ue .header-text,
.cid-vc9BRWw1Ue .sign {
  color: #000000;
  text-align: left;
}
.cid-vc9BRWw1Ue .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vc9BRWQMtT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc9BRWQMtT .mbr-section-subtitle {
  color: #767676;
}
.cid-vc9BRWQMtT .mbr-section-subtitle U {
  color: #000000;
}
.cid-vc9BRX6sAB .google-map {
  height: 25rem;
  position: relative;
}
.cid-vc9BRX6sAB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vc9BRX6sAB .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-vc9BRX6sAB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vc9BRX6sAB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vc9BRXomql {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc9BRXomql .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vc9BRXomql .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vc9BRXomql .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vc9BRXomql .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vc9BRXomql .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vc9BRXomql .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vc9BRXomql .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vc9BRXomql .btn-social {
  border: none !important;
}
.cid-vc9BRXomql [class^="socicon-"]:before,
.cid-vc9BRXomql [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vc9BRXomql .btn {
    font-size: 20px !important;
  }
}
.cid-vc9BRXFal9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vc9BRXFal9 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc9BRXFal9 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vc9BRXFal9 .media-wrap img {
  height: 6rem;
}
.cid-vc9BRXFal9 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vc9BRXFal9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vc9BRXFal9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vc9BRXFal9 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vc9BRXFal9 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vc9BRXFal9 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vc9BRXFal9 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc9BRXFal9 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc9BRXFal9 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vc9BRXFal9 .links {
  color: #000000;
  text-align: right;
}
.cid-vc9BRXFal9 .copyright > p {
  color: #000000;
}
.cid-vc9BRYaSge {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vc9BRYaSge .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-vcUEmaWGZQ .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-vcUEmaWGZQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vcUEmaWGZQ a {
  font-style: normal;
}
.cid-vcUEmaWGZQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-vcUEmaWGZQ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-vcUEmaWGZQ .nav-item:focus,
.cid-vcUEmaWGZQ .nav-link:focus {
  outline: none;
}
.cid-vcUEmaWGZQ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vcUEmaWGZQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-vcUEmaWGZQ .menu-logo {
  margin-right: auto;
}
.cid-vcUEmaWGZQ .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vcUEmaWGZQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vcUEmaWGZQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vcUEmaWGZQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vcUEmaWGZQ .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-vcUEmaWGZQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vcUEmaWGZQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-vcUEmaWGZQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-vcUEmaWGZQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vcUEmaWGZQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vcUEmaWGZQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-vcUEmaWGZQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-vcUEmaWGZQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vcUEmaWGZQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vcUEmaWGZQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vcUEmaWGZQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-vcUEmaWGZQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vcUEmaWGZQ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-vcUEmaWGZQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vcUEmaWGZQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vcUEmaWGZQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vcUEmaWGZQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vcUEmaWGZQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-vcUEmaWGZQ button.navbar-toggler:focus {
  outline: none;
}
.cid-vcUEmaWGZQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vcUEmaWGZQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vcUEmaWGZQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vcUEmaWGZQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vcUEmaWGZQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vcUEmaWGZQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vcUEmaWGZQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vcUEmaWGZQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vcUEmaWGZQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vcUEmaWGZQ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vcUEmaWGZQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-vcUEmaWGZQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.collapsing,
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vcUEmaWGZQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-vcUEmaWGZQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-vcUEmaWGZQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-vcUEmaWGZQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-vcUEmaWGZQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-vcUEmaWGZQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vcUEmaWGZQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vcUEmaWGZQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-vcUEmaWGZQ.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vcUEmaWGZQ img {
    height: 3.8rem !important;
  }
  .cid-vcUEmaWGZQ .btn {
    display: -webkit-flex;
  }
  .cid-vcUEmaWGZQ button.navbar-toggler {
    display: block;
  }
  .cid-vcUEmaWGZQ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-vcUEmaWGZQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-vcUEmaWGZQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vcUEmaWGZQ .navbar-collapse.collapsing,
  .cid-vcUEmaWGZQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-vcUEmaWGZQ .navbar-collapse.collapsing .navbar-nav,
  .cid-vcUEmaWGZQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vcUEmaWGZQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vcUEmaWGZQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-vcUEmaWGZQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-vcUEmaWGZQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vcUEmaWGZQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vcUEmaWGZQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vcUEmaWGZQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-vcUEmaWGZQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vcUEmaWGZQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vcUEmaWGZQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-vcUEmaWGZQ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-vcUEmaWGZQ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-vcUEmaWGZQ .nav-link:hover,
.cid-vcUEmaWGZQ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-vcUEmbiIeJ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcUEmbiIeJ .mbr-section-subtitle {
  color: #000000;
}
.cid-vcUEmbiIeJ H2 {
  color: #000000;
}
.cid-vcUEmbiIeJ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-vcUEmbiIeJ .inner-container {
    width: 100% !important;
  }
}
.cid-vcUEmbiIeJ H1 {
  color: #000000;
}
.cid-vcUEmbr61S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-vcUEmbr61S .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vcUEmbr61S .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vcUEmbr61S .mbr-text {
    text-align: center;
  }
}
.cid-vcUEmbr61S .mbr-text,
.cid-vcUEmbr61S .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-vcUEmbr61S H3 {
  color: #000000;
}
.cid-vcUEmbr61S H1 {
  color: #000000;
}
.cid-vcUEmbCYmw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcUEmbCYmw .container-fluid {
  padding: 0 3rem;
}
.cid-vcUEmbCYmw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vcUEmbCYmw .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vcUEmbCYmw .header-text {
  padding: 2rem 1rem !important;
}
.cid-vcUEmbCYmw .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vcUEmbCYmw .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vcUEmbCYmw .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vcUEmbCYmw .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vcUEmbCYmw .card .card-header a.panel-title:hover .sign {
  background-color: #0f7699 !important;
}
.cid-vcUEmbCYmw .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vcUEmbCYmw .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vcUEmbCYmw .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vcUEmbCYmw .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vcUEmbCYmw .container-fluid {
    padding: 0 1rem;
  }
  .cid-vcUEmbCYmw .header-text {
    padding: 1rem !important;
  }
  .cid-vcUEmbCYmw .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vcUEmbCYmw .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vcUEmbCYmw .panel-group {
    padding: 0;
  }
}
.cid-vcUEmbCYmw .header-text,
.cid-vcUEmbCYmw .sign {
  color: #000000;
  text-align: left;
}
.cid-vcUEmbCYmw .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vcUEmbR0na {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcUEmbR0na .mbr-text,
.cid-vcUEmbR0na blockquote {
  color: #767676;
}
.cid-vcUEmbR0na .mbr-text {
  color: #000000;
}
.cid-vcUEmbR0na .mbr-text P {
  text-align: justify;
}
.cid-vcUEmc001v {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcUEmc001v .container-fluid {
  padding: 0 3rem;
}
.cid-vcUEmc001v .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #149dcc 50%, #ff3366 120%);
  display: inline-block;
}
.cid-vcUEmc001v .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-vcUEmc001v .header-text {
  padding: 2rem 1rem !important;
}
.cid-vcUEmc001v .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-vcUEmc001v .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-vcUEmc001v .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-vcUEmc001v .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vcUEmc001v .card .card-header a.panel-title:hover .sign {
  background-color: #149dcc !important;
}
.cid-vcUEmc001v .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #55b4d4;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-vcUEmc001v .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-vcUEmc001v .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-vcUEmc001v .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-vcUEmc001v .container-fluid {
    padding: 0 1rem;
  }
  .cid-vcUEmc001v .header-text {
    padding: 1rem !important;
  }
  .cid-vcUEmc001v .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-vcUEmc001v .panel-body {
    width: calc(100% - 48px);
  }
  .cid-vcUEmc001v .panel-group {
    padding: 0;
  }
}
.cid-vcUEmc001v .header-text,
.cid-vcUEmc001v .sign {
  color: #000000;
  text-align: left;
}
.cid-vcUEmc001v .panel-text {
  text-align: left;
  color: #000000;
}
.cid-vcUEmcfhGP {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vcUEmcfhGP .mbr-section-subtitle {
  color: #767676;
}
.cid-vcUEmcfhGP .mbr-section-subtitle U {
  color: #000000;
}
.cid-vcUEmcp2Vc .google-map {
  height: 25rem;
  position: relative;
}
.cid-vcUEmcp2Vc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vcUEmcp2Vc .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-vcUEmcp2Vc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vcUEmcp2Vc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vcUEmcxxhg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vcUEmcxxhg .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-vcUEmcxxhg .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-vcUEmcxxhg .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-vcUEmcxxhg .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-vcUEmcxxhg .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-vcUEmcxxhg .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-vcUEmcxxhg .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-vcUEmcxxhg .btn-social {
  border: none !important;
}
.cid-vcUEmcxxhg [class^="socicon-"]:before,
.cid-vcUEmcxxhg [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-vcUEmcxxhg .btn {
    font-size: 20px !important;
  }
}
.cid-vcUEmcI7qT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vcUEmcI7qT .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vcUEmcI7qT .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-vcUEmcI7qT .media-wrap img {
  height: 6rem;
}
.cid-vcUEmcI7qT .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-vcUEmcI7qT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-vcUEmcI7qT .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-vcUEmcI7qT .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
}
.cid-vcUEmcI7qT .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-vcUEmcI7qT .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-vcUEmcI7qT .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vcUEmcI7qT .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vcUEmcI7qT .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-vcUEmcI7qT .links {
  color: #000000;
  text-align: right;
}
.cid-vcUEmcI7qT .copyright > p {
  color: #000000;
}
.cid-vcUEmcY4x8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2e2e2e;
}
.cid-vcUEmcY4x8 .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
