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





body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', 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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #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: 'Rubik', 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);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@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-rUyQGdea1C .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ff3366;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUyQGdea1C .nav-item,
.cid-rUyQGdea1C .nav-link,
.cid-rUyQGdea1C .navbar-caption {
  font-weight: normal;
}
.cid-rUyQGdea1C .nav-item:focus,
.cid-rUyQGdea1C .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUyQGdea1C .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-rUyQGdea1C .nav-item .nav-link {
    position: relative;
  }
  .cid-rUyQGdea1C .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ff3366;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rUyQGdea1C .nav-item:hover .nav-link:before,
  .cid-rUyQGdea1C .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-rUyQGdea1C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rUyQGdea1C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUyQGdea1C .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-rUyQGdea1C .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUyQGdea1C .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUyQGdea1C .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUyQGdea1C .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rUyQGdea1C .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rUyQGdea1C .navbar .dropdown-item {
  padding: .235rem 2rem;
}
.cid-rUyQGdea1C .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rUyQGdea1C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUyQGdea1C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUyQGdea1C .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUyQGdea1C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUyQGdea1C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUyQGdea1C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rUyQGdea1C .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUyQGdea1C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUyQGdea1C .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUyQGdea1C .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUyQGdea1C .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUyQGdea1C .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUyQGdea1C .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rUyQGdea1C .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUyQGdea1C .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUyQGdea1C .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rUyQGdea1C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUyQGdea1C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUyQGdea1C .dropdown-item.active,
.cid-rUyQGdea1C .dropdown-item:active {
  background-color: transparent;
}
.cid-rUyQGdea1C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUyQGdea1C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUyQGdea1C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUyQGdea1C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  z-index: 2;
}
.cid-rUyQGdea1C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUyQGdea1C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUyQGdea1C ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUyQGdea1C .navbar-buttons {
  text-align: center;
}
.cid-rUyQGdea1C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUyQGdea1C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rUyQGdea1C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUyQGdea1C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUyQGdea1C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUyQGdea1C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUyQGdea1C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUyQGdea1C nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUyQGdea1C nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUyQGdea1C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUyQGdea1C .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUyQGdea1C a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUyQGdea1C .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ff3366;
  display: inline-flex;
}
.cid-rUyQGdea1C .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rUyQGdea1C .soc-item {
  margin: .5rem .3rem;
}
.cid-rUyQGdea1C .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUyQGdea1C a.nav-link .mbr-iconfont-btn,
.cid-rUyQGdea1C a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rUyQGdea1C a.nav-link:hover .mbr-iconfont-btn,
.cid-rUyQGdea1C a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rUyQGdea1C a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUyQGdea1C .navbar {
    height: 77px;
  }
  .cid-rUyQGdea1C .navbar.opened {
    height: auto;
  }
  .cid-rUyQGdea1C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUyUzrKH0K {
  background-color: #efeeee;
}
.cid-rUyUzrKH0K .container {
  max-width: 1500px;
}
.cid-rUyUzrKH0K img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rUyUzrKH0K img:hover {
  transform: scale(1.1);
}
.cid-rUyUzrKH0K .row {
  background: #ffffff;
}
.cid-rUyUzrKH0K .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-rUyUzrKH0K h2 {
  padding: 0;
  margin: 0;
}
.cid-rUyUzrKH0K .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rUyUzrKH0K .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-rUyUzrKH0K .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rUyUzrKH0K .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-rUyUzrKH0K .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-rUyUzrKH0K .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-rUyUzrKH0K .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rUyUzrKH0K .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rUyUzrKH0K .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rUyUzrKH0K .row {
    margin: 0rem;
  }
  .cid-rUyUzrKH0K .text-col {
    padding: 2rem 1rem;
  }
  .cid-rUyUzrKH0K .number {
    margin-right: 2rem;
  }
  .cid-rUyUzrKH0K .img-col {
    margin-bottom: 3rem;
  }
}
.cid-rUyUzrKH0K H2 {
  color: #333333;
  text-align: center;
}
.cid-rUyUzrKH0K .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-rWlOrGye2X {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rWlOrGye2X .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-rWlOrGye2X .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-rWlOrGye2X .timeline-text-content p {
  margin-bottom: 0;
}
.cid-rWlOrGye2X .time-line-date-content {
  margin-right: 2rem;
}
.cid-rWlOrGye2X .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-rWlOrGye2X .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-rWlOrGye2X .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-rWlOrGye2X .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-rWlOrGye2X .mbr-timeline-date,
.cid-rWlOrGye2X .timeline-text-content {
  transition: all .4s;
}
.cid-rWlOrGye2X .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rWlOrGye2X .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-rWlOrGye2X .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-rWlOrGye2X .reverse .time-line-date-content p {
  float: left;
}
.cid-rWlOrGye2X .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-rWlOrGye2X .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-rWlOrGye2X .iconBackground {
    left: 0 !important;
  }
  .cid-rWlOrGye2X .separline:before {
    left: 0!important;
  }
  .cid-rWlOrGye2X .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-rWlOrGye2X .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-rWlOrGye2X .time-line-date-content p {
    float: left !important;
  }
  .cid-rWlOrGye2X .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-rWlOrGye2X .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-rWlOrGye2X .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-rWlQ7rd8U5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rWlQ7rd8U5 H1 {
  color: #232323;
}
.cid-rWlQ7rd8U5 .mbr-text,
.cid-rWlQ7rd8U5 .mbr-section-btn {
  color: #232323;
}
.cid-rWlQ7rd8U5 .img-box {
  position: relative;
}
.cid-rWlQ7rd8U5 .card-ico span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-rWlQ7rd8U5 .card-ico .ico1 {
  background-color: #4249cc;
}
.cid-rWlQ7rd8U5 .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-rWlQ7rd8U5 .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-rWlQ7rd8U5 .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-rWlQ7rd8U5 .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-rWlQ7rd8U5 img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
}
@media (max-width: 992px) {
  .cid-rWlQ7rd8U5 .img-box {
    height: 500px;
  }
  .cid-rWlQ7rd8U5 .img1 {
    left: 1rem;
  }
  .cid-rWlQ7rd8U5 .img2 {
    right: 1rem;
  }
  .cid-rWlQ7rd8U5 img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-rWlQ7rd8U5 img {
    width: 60%;
  }
  .cid-rWlQ7rd8U5 .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-rWlQ7rd8U5 .author-box {
    justify-content: center;
  }
  .cid-rWlQ7rd8U5 .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-rWlQ7rd8U5 .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-rWlQ7rd8U5 .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-rWlQ7rd8U5 .card-ico span {
    margin-right: 0rem;
  }
}
.cid-rWlQ7rd8U5 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rWlQ7rd8U5 .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-rWlQ7rd8U5 .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-rWlQ7rd8U5 h3,
.cid-rWlQ7rd8U5 h4 {
  margin: 0;
  padding: 0;
}
.cid-rWlQ7rd8U5 .card-title,
.cid-rWlQ7rd8U5 .mbr-section-subtitle {
  color: #232323;
}
.cid-rUyZbv8Bi0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUyZbv8Bi0 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rUyZbv8Bi0 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rUyZbv8Bi0 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rUyZbv8Bi0 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rUyZbv8Bi0 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rUyZbv8Bi0 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rUyZbv8Bi0 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rUyZbv8Bi0 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-rUyZbv8Bi0 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-rUyZbv8Bi0 .btn-social + .btn {
  margin-left: .1rem;
}
.cid-rUyZbv8Bi0 [class^="socicon-"]:before,
.cid-rUyZbv8Bi0 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rUyZbv8Bi0 .btn {
    font-size: 20px !important;
  }
}
.cid-rUyUq7P63D {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUyUq7P63D .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rUyUq7P63D .content {
    text-align: center;
  }
  .cid-rUyUq7P63D .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rUyUq7P63D .img-logo img {
  height: 6rem;
}
.cid-rUyUq7P63D .form-group,
.cid-rUyUq7P63D .input-group-btn {
  padding: 0;
}
.cid-rUyUq7P63D .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rUyUq7P63D .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rUyUq7P63D .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rUyUq7P63D .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rUyUq7P63D .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rUyUq7P63D .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rUyUq7P63D .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rUyUq7P63D .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rUyUq7P63D .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rUyUq7P63D .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rUyUq7P63D .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rUyUq7P63D .foot-logo {
    text-align: center !important;
  }
  .cid-rUyUq7P63D .foot-title {
    text-align: center !important;
  }
  .cid-rUyUq7P63D .mbr-text {
    text-align: center !important;
  }
  .cid-rUyUq7P63D .form-group {
    margin: 0;
  }
}
.cid-rUyUq7P63D .foot-logo {
  text-align: left;
  color: #0f7699;
}
.cid-rUz0mdB1K7 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ff3366;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUz0mdB1K7 .nav-item,
.cid-rUz0mdB1K7 .nav-link,
.cid-rUz0mdB1K7 .navbar-caption {
  font-weight: normal;
}
.cid-rUz0mdB1K7 .nav-item:focus,
.cid-rUz0mdB1K7 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUz0mdB1K7 .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-rUz0mdB1K7 .nav-item .nav-link {
    position: relative;
  }
  .cid-rUz0mdB1K7 .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ff3366;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rUz0mdB1K7 .nav-item:hover .nav-link:before,
  .cid-rUz0mdB1K7 .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-rUz0mdB1K7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rUz0mdB1K7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUz0mdB1K7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-rUz0mdB1K7 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUz0mdB1K7 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUz0mdB1K7 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUz0mdB1K7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rUz0mdB1K7 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rUz0mdB1K7 .navbar .dropdown-item {
  padding: .235rem 2rem;
}
.cid-rUz0mdB1K7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rUz0mdB1K7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUz0mdB1K7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUz0mdB1K7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUz0mdB1K7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUz0mdB1K7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUz0mdB1K7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rUz0mdB1K7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUz0mdB1K7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUz0mdB1K7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUz0mdB1K7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUz0mdB1K7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUz0mdB1K7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUz0mdB1K7 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rUz0mdB1K7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUz0mdB1K7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUz0mdB1K7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rUz0mdB1K7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUz0mdB1K7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUz0mdB1K7 .dropdown-item.active,
.cid-rUz0mdB1K7 .dropdown-item:active {
  background-color: transparent;
}
.cid-rUz0mdB1K7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUz0mdB1K7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUz0mdB1K7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUz0mdB1K7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  z-index: 2;
}
.cid-rUz0mdB1K7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUz0mdB1K7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUz0mdB1K7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUz0mdB1K7 .navbar-buttons {
  text-align: center;
}
.cid-rUz0mdB1K7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUz0mdB1K7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rUz0mdB1K7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUz0mdB1K7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUz0mdB1K7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUz0mdB1K7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUz0mdB1K7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUz0mdB1K7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUz0mdB1K7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUz0mdB1K7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUz0mdB1K7 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUz0mdB1K7 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUz0mdB1K7 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ff3366;
  display: inline-flex;
}
.cid-rUz0mdB1K7 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rUz0mdB1K7 .soc-item {
  margin: .5rem .3rem;
}
.cid-rUz0mdB1K7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUz0mdB1K7 a.nav-link .mbr-iconfont-btn,
.cid-rUz0mdB1K7 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rUz0mdB1K7 a.nav-link:hover .mbr-iconfont-btn,
.cid-rUz0mdB1K7 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rUz0mdB1K7 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUz0mdB1K7 .navbar {
    height: 77px;
  }
  .cid-rUz0mdB1K7 .navbar.opened {
    height: auto;
  }
  .cid-rUz0mdB1K7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUz0Rap2t7 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #0f7699;
}
.cid-rUz0Rap2t7 H1 {
  color: #ffffff;
  text-align: center;
}
.cid-rUz0Ffse0e {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rUz0Ffse0e .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rUz0Ffse0e .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #8ec0d1;
  border: 1px solid #232323;
  color: #ffffff;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rUz0Ffse0e .form-control:focus,
.cid-rUz0Ffse0e .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #55b4d4;
}
.cid-rUz0Ffse0e .form-group {
  margin-bottom: 1rem;
}
.cid-rUz0Ffse0e input::-webkit-input-placeholder,
.cid-rUz0Ffse0e textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-rUz0Ffse0e input:-moz-placeholder,
.cid-rUz0Ffse0e textarea:-moz-placeholder {
  color: #656565;
}
.cid-rUz0Ffse0e .jq-selectbox li,
.cid-rUz0Ffse0e .jq-selectbox li {
  background-color: #8ec0d1;
  color: #000000;
}
.cid-rUz0Ffse0e .jq-selectbox li:hover,
.cid-rUz0Ffse0e .jq-selectbox li.selected {
  background-color: #55b4d4;
  color: #000000;
}
.cid-rUz0Ffse0e .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #8ec0d1;
}
.cid-rUz0Ffse0e .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #55b4d4;
}
.cid-rUz0Ffse0e .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-rUz0Ffse0e .text-block {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUz0Ffse0e a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rUz0Ffse0e .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rUz0Ffse0e .input-group-btn {
  display: block;
}
.cid-rUz0Ffse0e textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-rUz0Ffse0e .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rUz0Ffse0e .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rUz0Ffse0e .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rUz0Ffse0e h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-rUz0Ffse0e .block-content {
    padding: 0;
  }
  .cid-rUz0Ffse0e .form-block {
    padding: 1rem;
  }
}
.cid-rWlDErHgbq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rWlDErHgbq .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDErHgbq .content {
    text-align: center;
  }
  .cid-rWlDErHgbq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWlDErHgbq .img-logo img {
  height: 6rem;
}
.cid-rWlDErHgbq .form-group,
.cid-rWlDErHgbq .input-group-btn {
  padding: 0;
}
.cid-rWlDErHgbq .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rWlDErHgbq .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rWlDErHgbq .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDErHgbq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWlDErHgbq .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rWlDErHgbq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWlDErHgbq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWlDErHgbq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWlDErHgbq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWlDErHgbq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWlDErHgbq .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rWlDErHgbq .foot-logo {
    text-align: center !important;
  }
  .cid-rWlDErHgbq .foot-title {
    text-align: center !important;
  }
  .cid-rWlDErHgbq .mbr-text {
    text-align: center !important;
  }
  .cid-rWlDErHgbq .form-group {
    margin: 0;
  }
}
.cid-rWlDErHgbq .foot-logo {
  text-align: left;
  color: #0f7699;
}
.cid-rUz2UfBmKx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ff3366;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUz2UfBmKx .nav-item,
.cid-rUz2UfBmKx .nav-link,
.cid-rUz2UfBmKx .navbar-caption {
  font-weight: normal;
}
.cid-rUz2UfBmKx .nav-item:focus,
.cid-rUz2UfBmKx .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUz2UfBmKx .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-rUz2UfBmKx .nav-item .nav-link {
    position: relative;
  }
  .cid-rUz2UfBmKx .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ff3366;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rUz2UfBmKx .nav-item:hover .nav-link:before,
  .cid-rUz2UfBmKx .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-rUz2UfBmKx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rUz2UfBmKx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUz2UfBmKx .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-rUz2UfBmKx .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUz2UfBmKx .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUz2UfBmKx .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUz2UfBmKx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rUz2UfBmKx .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rUz2UfBmKx .navbar .dropdown-item {
  padding: .235rem 2rem;
}
.cid-rUz2UfBmKx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rUz2UfBmKx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUz2UfBmKx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUz2UfBmKx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUz2UfBmKx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUz2UfBmKx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUz2UfBmKx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rUz2UfBmKx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUz2UfBmKx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUz2UfBmKx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUz2UfBmKx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUz2UfBmKx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUz2UfBmKx .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUz2UfBmKx .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rUz2UfBmKx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUz2UfBmKx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUz2UfBmKx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rUz2UfBmKx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUz2UfBmKx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUz2UfBmKx .dropdown-item.active,
.cid-rUz2UfBmKx .dropdown-item:active {
  background-color: transparent;
}
.cid-rUz2UfBmKx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUz2UfBmKx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUz2UfBmKx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUz2UfBmKx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  z-index: 2;
}
.cid-rUz2UfBmKx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUz2UfBmKx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUz2UfBmKx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUz2UfBmKx .navbar-buttons {
  text-align: center;
}
.cid-rUz2UfBmKx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUz2UfBmKx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rUz2UfBmKx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUz2UfBmKx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUz2UfBmKx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUz2UfBmKx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUz2UfBmKx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUz2UfBmKx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUz2UfBmKx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUz2UfBmKx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUz2UfBmKx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUz2UfBmKx a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUz2UfBmKx .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ff3366;
  display: inline-flex;
}
.cid-rUz2UfBmKx .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rUz2UfBmKx .soc-item {
  margin: .5rem .3rem;
}
.cid-rUz2UfBmKx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUz2UfBmKx a.nav-link .mbr-iconfont-btn,
.cid-rUz2UfBmKx a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rUz2UfBmKx a.nav-link:hover .mbr-iconfont-btn,
.cid-rUz2UfBmKx a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rUz2UfBmKx a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUz2UfBmKx .navbar {
    height: 77px;
  }
  .cid-rUz2UfBmKx .navbar.opened {
    height: auto;
  }
  .cid-rUz2UfBmKx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUzcYyP9h9 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #0f7699;
}
.cid-rUzcYyP9h9 H1 {
  text-align: center;
  color: #ffffff;
}
.cid-rUzdgMxiUN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-rUzdgMxiUN img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rUzdgMxiUN img:hover {
  transform: scale(1.1);
}
.cid-rUzdgMxiUN .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rUzdgMxiUN h2 {
  padding: 0;
  margin: 0;
}
.cid-rUzdgMxiUN .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rUzdgMxiUN .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rUzdgMxiUN .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rUzdgMxiUN .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-rUzdgMxiUN .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-rUzdgMxiUN .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rUzdgMxiUN .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rUzdgMxiUN .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rUzdgMxiUN .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rUzdgMxiUN H2 {
  color: #333333;
}
.cid-rUzdgMxiUN .mbr-text {
  color: #000000;
}
.cid-rVvPhzcOoN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVvPhzcOoN .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-rVvPhzcOoN .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-rVvPhzcOoN .btn {
  margin: 0px !important;
}
.cid-rVvPhzcOoN .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVvPhzcOoN .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rVvPhzcOoN .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rVvPhzcOoN .carousel-item .wrap-img {
  text-align: center;
}
.cid-rVvPhzcOoN .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-rVvPhzcOoN .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-rVvPhzcOoN .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-rVvPhzcOoN .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-rVvPhzcOoN .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-rVvPhzcOoN .second-col {
    padding-top: 2rem;
  }
}
.cid-rVvOhWauNm {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rVvOhWauNm .mbr-text,
.cid-rVvOhWauNm blockquote {
  color: #767676;
}
.cid-rVvOhWauNm DIV {
  color: #232323;
}
.cid-rUz2UiAAC3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUz2UiAAC3 .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rUz2UiAAC3 .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rUz2UiAAC3 .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rUz2UiAAC3 .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rUz2UiAAC3 .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rUz2UiAAC3 .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rUz2UiAAC3 .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rUz2UiAAC3 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-rUz2UiAAC3 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-rUz2UiAAC3 .btn-social + .btn {
  margin-left: .1rem;
}
.cid-rUz2UiAAC3 [class^="socicon-"]:before,
.cid-rUz2UiAAC3 [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rUz2UiAAC3 .btn {
    font-size: 20px !important;
  }
}
.cid-rWlDqaKFbe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rWlDqaKFbe .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDqaKFbe .content {
    text-align: center;
  }
  .cid-rWlDqaKFbe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWlDqaKFbe .img-logo img {
  height: 6rem;
}
.cid-rWlDqaKFbe .form-group,
.cid-rWlDqaKFbe .input-group-btn {
  padding: 0;
}
.cid-rWlDqaKFbe .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rWlDqaKFbe .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rWlDqaKFbe .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDqaKFbe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWlDqaKFbe .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rWlDqaKFbe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWlDqaKFbe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWlDqaKFbe .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWlDqaKFbe .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWlDqaKFbe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWlDqaKFbe .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rWlDqaKFbe .foot-logo {
    text-align: center !important;
  }
  .cid-rWlDqaKFbe .foot-title {
    text-align: center !important;
  }
  .cid-rWlDqaKFbe .mbr-text {
    text-align: center !important;
  }
  .cid-rWlDqaKFbe .form-group {
    margin: 0;
  }
}
.cid-rWlDqaKFbe .foot-logo {
  text-align: left;
  color: #0f7699;
}
.cid-rUzdOiivSj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ff3366;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUzdOiivSj .nav-item,
.cid-rUzdOiivSj .nav-link,
.cid-rUzdOiivSj .navbar-caption {
  font-weight: normal;
}
.cid-rUzdOiivSj .nav-item:focus,
.cid-rUzdOiivSj .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUzdOiivSj .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-rUzdOiivSj .nav-item .nav-link {
    position: relative;
  }
  .cid-rUzdOiivSj .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ff3366;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rUzdOiivSj .nav-item:hover .nav-link:before,
  .cid-rUzdOiivSj .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-rUzdOiivSj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rUzdOiivSj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUzdOiivSj .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-rUzdOiivSj .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUzdOiivSj .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUzdOiivSj .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUzdOiivSj .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rUzdOiivSj .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rUzdOiivSj .navbar .dropdown-item {
  padding: .235rem 2rem;
}
.cid-rUzdOiivSj .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rUzdOiivSj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUzdOiivSj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUzdOiivSj .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUzdOiivSj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUzdOiivSj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUzdOiivSj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rUzdOiivSj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUzdOiivSj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUzdOiivSj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUzdOiivSj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUzdOiivSj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUzdOiivSj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUzdOiivSj .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rUzdOiivSj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUzdOiivSj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUzdOiivSj .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rUzdOiivSj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUzdOiivSj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUzdOiivSj .dropdown-item.active,
.cid-rUzdOiivSj .dropdown-item:active {
  background-color: transparent;
}
.cid-rUzdOiivSj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUzdOiivSj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUzdOiivSj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUzdOiivSj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  z-index: 2;
}
.cid-rUzdOiivSj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUzdOiivSj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUzdOiivSj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUzdOiivSj .navbar-buttons {
  text-align: center;
}
.cid-rUzdOiivSj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUzdOiivSj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rUzdOiivSj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUzdOiivSj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUzdOiivSj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUzdOiivSj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUzdOiivSj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUzdOiivSj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUzdOiivSj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUzdOiivSj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUzdOiivSj .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUzdOiivSj a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUzdOiivSj .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ff3366;
  display: inline-flex;
}
.cid-rUzdOiivSj .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rUzdOiivSj .soc-item {
  margin: .5rem .3rem;
}
.cid-rUzdOiivSj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUzdOiivSj a.nav-link .mbr-iconfont-btn,
.cid-rUzdOiivSj a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rUzdOiivSj a.nav-link:hover .mbr-iconfont-btn,
.cid-rUzdOiivSj a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rUzdOiivSj a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUzdOiivSj .navbar {
    height: 77px;
  }
  .cid-rUzdOiivSj .navbar.opened {
    height: auto;
  }
  .cid-rUzdOiivSj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUzdOjWQHu {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #0f7699;
}
.cid-rUzdOjWQHu H1 {
  color: #ffffff;
  text-align: center;
}
.cid-rUzdOl4Ssq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-rUzdOl4Ssq img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rUzdOl4Ssq img:hover {
  transform: scale(1.1);
}
.cid-rUzdOl4Ssq .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rUzdOl4Ssq h2 {
  padding: 0;
  margin: 0;
}
.cid-rUzdOl4Ssq .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rUzdOl4Ssq .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rUzdOl4Ssq .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rUzdOl4Ssq .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-rUzdOl4Ssq .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-rUzdOl4Ssq .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rUzdOl4Ssq .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rUzdOl4Ssq .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rUzdOl4Ssq .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rUzdOl4Ssq H2 {
  color: #333333;
}
.cid-rUzdOl4Ssq .mbr-text {
  color: #000000;
}
.cid-rWm2hkczBn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rWm2hkczBn .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-rWm2hkczBn .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rWm2hkczBn .ico-line {
  display: -webkit-flex;
}
.cid-rWm2hkczBn .col-md-4 {
  padding: 0;
}
.cid-rWm2hkczBn p {
  line-height: 1.6;
}
.cid-rWm2hkczBn .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rWm2hkczBn .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rWm2hkczBn .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rWm2hkczBn .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-rWm2hkczBn img {
  transition: all 0.3s;
}
.cid-rWm2hkczBn h5 {
  margin: 0;
}
.cid-rWm2hkczBn .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-rWm2hkczBn .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-rWm2hkczBn .card-box > p,
.cid-rWm2hkczBn .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-rWm2hkczBn .price {
  color: #ffffff;
  text-align: left;
}
.cid-rWm2hkczBn .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-rWm2hkczBn .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-rWm2hkczBn .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-rWm2hkczBn .col-md-4 {
    padding: 0 15px;
  }
  .cid-rWm2hkczBn .col-md-8 {
    margin: 0 15px;
  }
  .cid-rWm2hkczBn .price-box {
    left: 15px;
  }
  .cid-rWm2hkczBn .card-box {
    padding: 1rem;
  }
}
.cid-rWm3iTafws {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rWm3iTafws .mbr-section-subtitle {
  color: #767676;
}
.cid-rWm3iTafws .btn {
  margin: 0 0 .5rem 0;
}
.cid-rWm0FCZy7n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rWm0FCZy7n .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-rWm0FCZy7n h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rWm0FCZy7n p {
  color: #767676;
  text-align: left;
}
.cid-rWm0FCZy7n .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rWm0FCZy7n .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rWm0FCZy7n .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rWm0FCZy7n P {
  color: #000000;
}
.cid-rWm0CLSbwW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rWm0CLSbwW .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-rWm0CLSbwW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rWm0CLSbwW p {
  color: #767676;
  text-align: left;
}
.cid-rWm0CLSbwW .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rWm0CLSbwW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rWm0CLSbwW .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rWm0CLSbwW P {
  color: #000000;
}
.cid-rUzdOmclqK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUzdOmclqK .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rUzdOmclqK .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rUzdOmclqK .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rUzdOmclqK .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rUzdOmclqK .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rUzdOmclqK .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rUzdOmclqK .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rUzdOmclqK .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-rUzdOmclqK .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-rUzdOmclqK .btn-social + .btn {
  margin-left: .1rem;
}
.cid-rUzdOmclqK [class^="socicon-"]:before,
.cid-rUzdOmclqK [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rUzdOmclqK .btn {
    font-size: 20px !important;
  }
}
.cid-rWlDuXRPGJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rWlDuXRPGJ .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDuXRPGJ .content {
    text-align: center;
  }
  .cid-rWlDuXRPGJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWlDuXRPGJ .img-logo img {
  height: 6rem;
}
.cid-rWlDuXRPGJ .form-group,
.cid-rWlDuXRPGJ .input-group-btn {
  padding: 0;
}
.cid-rWlDuXRPGJ .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rWlDuXRPGJ .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rWlDuXRPGJ .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDuXRPGJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWlDuXRPGJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rWlDuXRPGJ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWlDuXRPGJ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWlDuXRPGJ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWlDuXRPGJ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWlDuXRPGJ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWlDuXRPGJ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rWlDuXRPGJ .foot-logo {
    text-align: center !important;
  }
  .cid-rWlDuXRPGJ .foot-title {
    text-align: center !important;
  }
  .cid-rWlDuXRPGJ .mbr-text {
    text-align: center !important;
  }
  .cid-rWlDuXRPGJ .form-group {
    margin: 0;
  }
}
.cid-rWlDuXRPGJ .foot-logo {
  text-align: left;
  color: #0f7699;
}
.cid-rUzhgcOT6D .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #ff3366;
  top: 50%;
  font-size: 1rem;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: translateY(-50%) scale(0, 1);
  transform: translateY(-50%) scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUzhgcOT6D .nav-item,
.cid-rUzhgcOT6D .nav-link,
.cid-rUzhgcOT6D .navbar-caption {
  font-weight: normal;
}
.cid-rUzhgcOT6D .nav-item:focus,
.cid-rUzhgcOT6D .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rUzhgcOT6D .dropdown-item:hover:before {
    -webkit-transform: translateY(-50%) scale(1, 1);
    transform: translateY(-50%) scale(1, 1);
    width: 1rem;
  }
  .cid-rUzhgcOT6D .nav-item .nav-link {
    position: relative;
  }
  .cid-rUzhgcOT6D .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #ff3366;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rUzhgcOT6D .nav-item:hover .nav-link:before,
  .cid-rUzhgcOT6D .nav-item.open .nav-link:before {
    right: 0;
  }
}
.cid-rUzhgcOT6D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rUzhgcOT6D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUzhgcOT6D .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 1rem;
  padding-left: 3rem;
}
.cid-rUzhgcOT6D .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rUzhgcOT6D .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rUzhgcOT6D .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rUzhgcOT6D .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rUzhgcOT6D .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rUzhgcOT6D .navbar .dropdown-item {
  padding: .235rem 2rem;
}
.cid-rUzhgcOT6D .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rUzhgcOT6D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rUzhgcOT6D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rUzhgcOT6D .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rUzhgcOT6D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rUzhgcOT6D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rUzhgcOT6D .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rUzhgcOT6D .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rUzhgcOT6D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rUzhgcOT6D .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rUzhgcOT6D .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rUzhgcOT6D .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rUzhgcOT6D .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rUzhgcOT6D .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rUzhgcOT6D .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rUzhgcOT6D .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rUzhgcOT6D .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rUzhgcOT6D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rUzhgcOT6D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rUzhgcOT6D .dropdown-item.active,
.cid-rUzhgcOT6D .dropdown-item:active {
  background-color: transparent;
}
.cid-rUzhgcOT6D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rUzhgcOT6D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rUzhgcOT6D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rUzhgcOT6D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
  z-index: 2;
}
.cid-rUzhgcOT6D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rUzhgcOT6D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUzhgcOT6D ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUzhgcOT6D .navbar-buttons {
  text-align: center;
}
.cid-rUzhgcOT6D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUzhgcOT6D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rUzhgcOT6D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUzhgcOT6D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUzhgcOT6D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUzhgcOT6D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUzhgcOT6D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUzhgcOT6D nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUzhgcOT6D nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUzhgcOT6D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUzhgcOT6D .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rUzhgcOT6D a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUzhgcOT6D .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ff3366;
  display: inline-flex;
}
.cid-rUzhgcOT6D .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rUzhgcOT6D .soc-item {
  margin: .5rem .3rem;
}
.cid-rUzhgcOT6D .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUzhgcOT6D a.nav-link .mbr-iconfont-btn,
.cid-rUzhgcOT6D a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rUzhgcOT6D a.nav-link:hover .mbr-iconfont-btn,
.cid-rUzhgcOT6D a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rUzhgcOT6D a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rUzhgcOT6D .navbar {
    height: 77px;
  }
  .cid-rUzhgcOT6D .navbar.opened {
    height: auto;
  }
  .cid-rUzhgcOT6D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rUzhgeD0YL {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #0f7699;
}
.cid-rUzhgeD0YL H1 {
  color: #ffffff;
  text-align: center;
}
.cid-rUzkbCLkGR {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/hindu-3732713-1923-1920x1368.jpeg");
}
.cid-rUzkbCLkGR .container {
  max-width: 1500px;
}
.cid-rUzkbCLkGR .row {
  background: #333333;
}
.cid-rUzkbCLkGR .img-col {
  padding: 0;
}
.cid-rUzkbCLkGR .title-col {
  padding: 4rem 8rem;
}
.cid-rUzkbCLkGR img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-rUzkbCLkGR h2 {
  padding: 0;
  margin: 0;
}
.cid-rUzkbCLkGR .text-wrap {
  margin: auto;
}
.cid-rUzkbCLkGR .mbr-text {
  color: #cccccc;
}
@media (max-width: 1200px) {
  .cid-rUzkbCLkGR .row {
    margin: 2rem;
  }
  .cid-rUzkbCLkGR .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rUzkbCLkGR .row {
    margin: 0rem;
  }
  .cid-rUzkbCLkGR .title-col {
    padding: 2rem 1rem;
  }
}
.cid-rWm5OD7rxR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rWm5OD7rxR .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-rWm5OD7rxR .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rWm5OD7rxR .ico-line {
  display: -webkit-flex;
}
.cid-rWm5OD7rxR .col-md-4 {
  padding: 0;
}
.cid-rWm5OD7rxR p {
  line-height: 1.6;
}
.cid-rWm5OD7rxR .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rWm5OD7rxR .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rWm5OD7rxR .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rWm5OD7rxR .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-rWm5OD7rxR img {
  transition: all 0.3s;
}
.cid-rWm5OD7rxR h5 {
  margin: 0;
}
.cid-rWm5OD7rxR .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-rWm5OD7rxR .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-rWm5OD7rxR .card-box > p,
.cid-rWm5OD7rxR .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-rWm5OD7rxR .price {
  color: #ffffff;
  text-align: left;
}
.cid-rWm5OD7rxR .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-rWm5OD7rxR .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-rWm5OD7rxR .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-rWm5OD7rxR .col-md-4 {
    padding: 0 15px;
  }
  .cid-rWm5OD7rxR .col-md-8 {
    margin: 0 15px;
  }
  .cid-rWm5OD7rxR .price-box {
    left: 15px;
  }
  .cid-rWm5OD7rxR .card-box {
    padding: 1rem;
  }
}
.cid-rWm5PD18Sl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rWm5PD18Sl .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-rWm5PD18Sl .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rWm5PD18Sl .ico-line {
  display: -webkit-flex;
}
.cid-rWm5PD18Sl .col-md-4 {
  padding: 0;
}
.cid-rWm5PD18Sl p {
  line-height: 1.6;
}
.cid-rWm5PD18Sl .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rWm5PD18Sl .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rWm5PD18Sl .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rWm5PD18Sl .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-rWm5PD18Sl img {
  transition: all 0.3s;
}
.cid-rWm5PD18Sl h5 {
  margin: 0;
}
.cid-rWm5PD18Sl .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-rWm5PD18Sl .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-rWm5PD18Sl .card-box > p,
.cid-rWm5PD18Sl .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-rWm5PD18Sl .price {
  color: #ffffff;
  text-align: left;
}
.cid-rWm5PD18Sl .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-rWm5PD18Sl .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-rWm5PD18Sl .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-rWm5PD18Sl .col-md-4 {
    padding: 0 15px;
  }
  .cid-rWm5PD18Sl .col-md-8 {
    margin: 0 15px;
  }
  .cid-rWm5PD18Sl .price-box {
    left: 15px;
  }
  .cid-rWm5PD18Sl .card-box {
    padding: 1rem;
  }
}
.cid-rWm5QqHo6a {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rWm5QqHo6a .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-rWm5QqHo6a .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rWm5QqHo6a .ico-line {
  display: -webkit-flex;
}
.cid-rWm5QqHo6a .col-md-4 {
  padding: 0;
}
.cid-rWm5QqHo6a p {
  line-height: 1.6;
}
.cid-rWm5QqHo6a .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rWm5QqHo6a .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rWm5QqHo6a .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rWm5QqHo6a .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-rWm5QqHo6a img {
  transition: all 0.3s;
}
.cid-rWm5QqHo6a h5 {
  margin: 0;
}
.cid-rWm5QqHo6a .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-rWm5QqHo6a .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-rWm5QqHo6a .card-box > p,
.cid-rWm5QqHo6a .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-rWm5QqHo6a .price {
  color: #ffffff;
  text-align: left;
}
.cid-rWm5QqHo6a .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-rWm5QqHo6a .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-rWm5QqHo6a .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-rWm5QqHo6a .col-md-4 {
    padding: 0 15px;
  }
  .cid-rWm5QqHo6a .col-md-8 {
    margin: 0 15px;
  }
  .cid-rWm5QqHo6a .price-box {
    left: 15px;
  }
  .cid-rWm5QqHo6a .card-box {
    padding: 1rem;
  }
}
.cid-rWm5R6b1nC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rWm5R6b1nC .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-rWm5R6b1nC .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-rWm5R6b1nC .ico-line {
  display: -webkit-flex;
}
.cid-rWm5R6b1nC .col-md-4 {
  padding: 0;
}
.cid-rWm5R6b1nC p {
  line-height: 1.6;
}
.cid-rWm5R6b1nC .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-rWm5R6b1nC .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-rWm5R6b1nC .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-rWm5R6b1nC .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-rWm5R6b1nC img {
  transition: all 0.3s;
}
.cid-rWm5R6b1nC h5 {
  margin: 0;
}
.cid-rWm5R6b1nC .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-rWm5R6b1nC .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-rWm5R6b1nC .card-box > p,
.cid-rWm5R6b1nC .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-rWm5R6b1nC .price {
  color: #ffffff;
  text-align: left;
}
.cid-rWm5R6b1nC .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-rWm5R6b1nC .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-rWm5R6b1nC .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-rWm5R6b1nC .col-md-4 {
    padding: 0 15px;
  }
  .cid-rWm5R6b1nC .col-md-8 {
    margin: 0 15px;
  }
  .cid-rWm5R6b1nC .price-box {
    left: 15px;
  }
  .cid-rWm5R6b1nC .card-box {
    padding: 1rem;
  }
}
.cid-rUzhgh48vy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUzhgh48vy .socicon-bg-facebook {
  background: #3e5b98;
  color: #ffffff;
}
.cid-rUzhgh48vy .socicon-bg-twitter {
  background: #4da7de;
  color: #ffffff;
}
.cid-rUzhgh48vy .socicon-bg-googleplus {
  background: #dd4b39;
  color: #ffffff;
}
.cid-rUzhgh48vy .socicon-bg-vkontakte {
  background: #5a7fa6;
  color: #ffffff;
}
.cid-rUzhgh48vy .socicon-bg-odnoklassniki {
  background: #f48420;
  color: #ffffff;
}
.cid-rUzhgh48vy .socicon-bg-pinterest {
  background: #c92619;
  color: #ffffff;
}
.cid-rUzhgh48vy .socicon-bg-mail {
  background: #134785;
  color: #ffffff;
}
.cid-rUzhgh48vy .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border: none !important;
}
.cid-rUzhgh48vy .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-rUzhgh48vy .btn-social + .btn {
  margin-left: .1rem;
}
.cid-rUzhgh48vy [class^="socicon-"]:before,
.cid-rUzhgh48vy [class*=" socicon-"]:before {
  line-height: 44px;
}
@media (max-width: 767px) {
  .cid-rUzhgh48vy .btn {
    font-size: 20px !important;
  }
}
.cid-rWlDzHB5vl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rWlDzHB5vl .form-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDzHB5vl .content {
    text-align: center;
  }
  .cid-rWlDzHB5vl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWlDzHB5vl .img-logo img {
  height: 6rem;
}
.cid-rWlDzHB5vl .form-group,
.cid-rWlDzHB5vl .input-group-btn {
  padding: 0;
}
.cid-rWlDzHB5vl .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rWlDzHB5vl .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rWlDzHB5vl .copyright .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rWlDzHB5vl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWlDzHB5vl .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-rWlDzHB5vl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rWlDzHB5vl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rWlDzHB5vl .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWlDzHB5vl .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWlDzHB5vl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWlDzHB5vl .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rWlDzHB5vl .foot-logo {
    text-align: center !important;
  }
  .cid-rWlDzHB5vl .foot-title {
    text-align: center !important;
  }
  .cid-rWlDzHB5vl .mbr-text {
    text-align: center !important;
  }
  .cid-rWlDzHB5vl .form-group {
    margin: 0;
  }
}
.cid-rWlDzHB5vl .foot-logo {
  text-align: left;
  color: #0f7699;
}
