.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fb0000 !important;
  border-color: #fb0000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a40000 !important;
  border-color: #a40000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a40000 !important;
  border-color: #a40000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #fb0000;
  color: #fb0000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a40000 !important;
  background-color: transparent!important;
  border-color: #a40000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fb0000 !important;
  border-color: #fb0000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #fb0000 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #950000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #fb0000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J18yfb5A {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pnomatik-sistem-ariza-bakim-servisi-ilg-hidrolik-2-1920x1080.jpg");
}
.cid-u3J18yfb5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J18yfb5A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J18yfb5A .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J18yfb5A .container {
    padding: 0 16px;
  }
}
.cid-u3J18yfb5A .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J18yfb5A .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J18yfb5A .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J18yfb5A .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J18yfb5A .mbr-section-title {
  color: #000000;
}
.cid-u3J18yfb5A .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J18yfb5A .mbr-section-title,
.cid-u3J18yfb5A .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3GZv6qiuH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fafafa;
}
.cid-u3GZv6qiuH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3GZv6qiuH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3GZv6qiuH .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u3GZv6qiuH .container-fluid {
    padding: 0 16px;
  }
}
.cid-u3GZv6qiuH .container {
  margin-right: 0;
}
@media (max-width: 992px) {
  .cid-u3GZv6qiuH .container {
    padding: 0 16px;
  }
}
.cid-u3GZv6qiuH .slider-wrap {
  padding-right: 0;
}
@media (max-width: 992px) {
  .cid-u3GZv6qiuH .slider-wrap {
    padding-right: 12px;
  }
}
.cid-u3GZv6qiuH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 440px;
  max-width: 440px;
}
@media (max-width: 768px) {
  .cid-u3GZv6qiuH .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u3GZv6qiuH .embla__slide .card-wrap {
  width: 100%;
}
.cid-u3GZv6qiuH .embla__slide .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 30px;
}
.cid-u3GZv6qiuH .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-u3GZv6qiuH .embla__slide .card-wrap .content-wrap .desc-wrap {
  margin-bottom: 20px;
}
.cid-u3GZv6qiuH .embla__slide .card-wrap .content-wrap .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #000000;
  border-radius: 40px;
  margin-bottom: 0;
}
.cid-u3GZv6qiuH .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 14px;
}
.cid-u3GZv6qiuH .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 0;
}
.cid-u3GZv6qiuH .embla__button--next,
.cid-u3GZv6qiuH .embla__button--prev {
  display: flex;
}
.cid-u3GZv6qiuH .embla__button {
  bottom: -4.5rem;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #47b5ed;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u3GZv6qiuH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3GZv6qiuH .embla__button:hover {
  background: transparent;
  color: #fb0000;
}
.cid-u3GZv6qiuH .embla__button.embla__button--prev {
  left: 0;
}
.cid-u3GZv6qiuH .embla__button.embla__button--next {
  right: auto;
  left: 20%;
}
@media (max-width: 767px) {
  .cid-u3GZv6qiuH .embla__button {
    bottom: -4.5rem;
  }
}
.cid-u3GZv6qiuH .embla {
  position: relative;
  width: 100%;
}
.cid-u3GZv6qiuH .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u3GZv6qiuH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3GZv6qiuH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3GZv6qiuH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3GZv6qiuH .mbr-desc {
  color: #ffffff;
}
.cid-u3GZv6qiuH .card-title {
  color: #fb0000;
}
.cid-u3GZv6qiuH .card-text {
  color: #353535;
}
.cid-u3GZv6qiuH .mbr-desc,
.cid-u3GZv6qiuH .desc-wrap {
  color: #000000;
}
.cid-u3GZH2G4C9 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3GZH2G4C9 .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3GZH2G4C9 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3GZH2G4C9 .container {
    padding: 0 25px;
  }
}
.cid-u3GZH2G4C9 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3GZH2G4C9 .item:focus,
.cid-u3GZH2G4C9 span:focus {
  outline: none;
}
.cid-u3GZH2G4C9 .item-wrapper {
  position: relative;
}
.cid-u3GZH2G4C9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3GZH2G4C9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3GZH2G4C9 .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3GZH2G4C9 .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3GZH2G4C9 .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3GZH2G4C9 .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3GZH2G4C9 .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3GZH2G4C9 .embla__button--next,
.cid-u3GZH2G4C9 .embla__button--prev {
  display: flex;
}
.cid-u3GZH2G4C9 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3GZH2G4C9 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3GZH2G4C9 .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3GZH2G4C9 .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3GZH2G4C9 .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3GZH2G4C9 .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3GZH2G4C9 .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3GZH2G4C9 .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3GZH2G4C9 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3GZH2G4C9 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3GZH2G4C9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3GZH2G4C9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3GZH2G4C9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3GZH2G4C9 .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3GZH2G4C9 .item-subtitle {
  color: #353535;
  text-align: center;
}
.cid-u3GZH2G4C9 .item-title {
  color: #353535;
  text-align: center;
}
.cid-u3GZH2G4C9 .item-price {
  color: #000000;
}
.cid-u3HCfj7CkL {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3HCfj7CkL .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3HCfj7CkL .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3HCfj7CkL .container {
    padding: 0 25px;
  }
}
.cid-u3HCfj7CkL .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3HCfj7CkL .item:focus,
.cid-u3HCfj7CkL span:focus {
  outline: none;
}
.cid-u3HCfj7CkL .item-wrapper {
  position: relative;
}
.cid-u3HCfj7CkL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3HCfj7CkL .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3HCfj7CkL .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3HCfj7CkL .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3HCfj7CkL .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3HCfj7CkL .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3HCfj7CkL .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3HCfj7CkL .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3HCfj7CkL .embla__button--next,
.cid-u3HCfj7CkL .embla__button--prev {
  display: flex;
}
.cid-u3HCfj7CkL .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #fafafa !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3HCfj7CkL .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3HCfj7CkL .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3HCfj7CkL .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3HCfj7CkL .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #fafafa !important;
}
.cid-u3HCfj7CkL .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3HCfj7CkL .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3HCfj7CkL .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #fafafa !important;
}
.cid-u3HCfj7CkL .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3HCfj7CkL .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3HCfj7CkL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3HCfj7CkL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3HCfj7CkL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3HCfj7CkL .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3HCfj7CkL .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3HCfj7CkL .item-title {
  color: #000000;
  text-align: center;
}
.cid-u3HCfj7CkL .item-price {
  color: #000000;
}
.cid-u3HDnT866i {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3HDnT866i .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3HDnT866i .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3HDnT866i .container {
    padding: 0 25px;
  }
}
.cid-u3HDnT866i .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3HDnT866i .item:focus,
.cid-u3HDnT866i span:focus {
  outline: none;
}
.cid-u3HDnT866i .item-wrapper {
  position: relative;
}
.cid-u3HDnT866i .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3HDnT866i .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3HDnT866i .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3HDnT866i .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3HDnT866i .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3HDnT866i .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3HDnT866i .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3HDnT866i .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3HDnT866i .embla__button--next,
.cid-u3HDnT866i .embla__button--prev {
  display: flex;
}
.cid-u3HDnT866i .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3HDnT866i .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3HDnT866i .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3HDnT866i .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3HDnT866i .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3HDnT866i .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3HDnT866i .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3HDnT866i .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3HDnT866i .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3HDnT866i .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3HDnT866i .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3HDnT866i .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3HDnT866i .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3HDnT866i .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3HDnT866i .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3HDnT866i .item-title {
  color: #000000;
  text-align: center;
}
.cid-u3HDnT866i .item-price {
  color: #000000;
}
.cid-u3GZFquQsX {
  background-color: #073b4c;
}
.cid-u3GZFquQsX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3GZFquQsX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3GZFquQsX .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3GZFquQsX .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3GZFquQsX .container {
    padding: 0 16px;
  }
}
.cid-u3GZFquQsX .row {
  padding: 60px 64px;
  background-color: #fffaf5;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-u3GZFquQsX .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .row {
    padding: 25px 9px;
  }
}
.cid-u3GZFquQsX .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u3GZFquQsX .image-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u3GZFquQsX .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .image-wrapper img {
    height: 350px;
  }
}
.cid-u3GZFquQsX .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .content-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-u3GZFquQsX .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u3GZFquQsX .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .items-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u3GZFquQsX .items-wrapper {
    display: block;
  }
}
.cid-u3GZFquQsX .items-wrapper .item {
  padding: 50px;
  background-color: #e7f2ed;
  border-radius: .5rem !important;
}
.cid-u3GZFquQsX .items-wrapper .item:nth-child(2n) {
  background-color: #ecf4f6;
}
@media (max-width: 992px) {
  .cid-u3GZFquQsX .items-wrapper .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.cid-u3GZFquQsX .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 20px;
}
.cid-u3GZFquQsX .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  color: #000000;
  display: inline-flex;
}
.cid-u3GZFquQsX .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.cid-u3GZFquQsX .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u3GZFquQsX .card {
  justify-content: center;
}
.cid-u3GZFquQsX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u3GZFquQsX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-u3GZFquQsX .card-title {
  color: #000000;
}
.cid-u3GZFquQsX .card-text {
  color: #000000;
  text-align: center;
}
.cid-u3GZFquQsX .card-title,
.cid-u3GZFquQsX .icon-wrapper {
  text-align: center;
}
.cid-sFAxp7Y5iM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFAxp7Y5iM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFAxp7Y5iM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAxp7Y5iM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3HiEygGVV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3HiEygGVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3HiEygGVV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3HiEygGVV .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3HiEygGVV .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3HiEygGVV .container {
    padding: 0 16px;
  }
}
.cid-u3HiEygGVV .row {
  justify-content: center;
}
.cid-u3HiEygGVV .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3HiEygGVV .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3HiEygGVV .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3HiEygGVV .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3HiEygGVV .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3HiEygGVV .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3HiEygGVV .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3HiEygGVV .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3HiEygGVV .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3HiEygGVV .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .lists-wrapper {
    margin: 0;
  }
}
.cid-u3HiEygGVV .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .item {
    margin-bottom: 32px;
  }
}
.cid-u3HiEygGVV .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3HiEygGVV .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3HiEygGVV .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3HiEygGVV .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3HiEygGVV .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3HiEygGVV .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3HiEygGVV .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3HiEygGVV .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3HiEygGVV .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3HiEygGVV .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3HiEygGVV .mbr-section-title {
  color: #000000;
}
.cid-u3HiEygGVV .card-title {
  color: #fb0000;
}
.cid-u3HiEygGVV .list {
  color: #000000;
}
.cid-u3HiEygGVV .mbr-soc {
  color: #000000;
}
.cid-u3HEMGAlGl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3HEMGAlGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3HEMGAlGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3HEMGAlGl .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3HEMGAlGl .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3HEMGAlGl .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3HEMGAlGl .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3HEMGAlGl .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3HEMGAlGl .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3HEMGAlGl .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3HEMGAlGl .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3HEMGAlGl .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3HEMGAlGl .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3HEMGAlGl .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3HEMGAlGl .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3HEMGAlGl .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3HEMGAlGl .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3HEMGAlGl [class^="socicon-"]:before,
.cid-u3HEMGAlGl [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3I85Veidx {
  z-index: 1000;
  width: 100%;
}
.cid-u3I85Veidx nav.navbar {
  position: fixed;
}
.cid-u3I85Veidx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I85Veidx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I85Veidx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I85Veidx .dropdown-item:hover,
.cid-u3I85Veidx .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I85Veidx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I85Veidx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I85Veidx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I85Veidx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I85Veidx .nav-link {
  position: relative;
}
.cid-u3I85Veidx .container {
  display: flex;
  margin: auto;
}
.cid-u3I85Veidx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I85Veidx .dropdown-menu,
.cid-u3I85Veidx .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I85Veidx .nav-item:focus,
.cid-u3I85Veidx .nav-link:focus {
  outline: none;
}
.cid-u3I85Veidx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I85Veidx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I85Veidx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I85Veidx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I85Veidx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I85Veidx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I85Veidx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I85Veidx .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I85Veidx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I85Veidx .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I85Veidx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I85Veidx .navbar.collapsed {
  justify-content: center;
}
.cid-u3I85Veidx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I85Veidx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I85Veidx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I85Veidx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I85Veidx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I85Veidx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I85Veidx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I85Veidx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I85Veidx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I85Veidx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I85Veidx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I85Veidx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I85Veidx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I85Veidx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I85Veidx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I85Veidx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I85Veidx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I85Veidx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I85Veidx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I85Veidx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I85Veidx .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I85Veidx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I85Veidx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I85Veidx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I85Veidx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I85Veidx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I85Veidx .dropdown-item.active,
.cid-u3I85Veidx .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I85Veidx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I85Veidx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I85Veidx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I85Veidx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I85Veidx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I85Veidx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I85Veidx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I85Veidx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I85Veidx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I85Veidx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I85Veidx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I85Veidx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I85Veidx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I85Veidx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I85Veidx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I85Veidx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I85Veidx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I85Veidx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I85Veidx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I85Veidx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I85Veidx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I85Veidx .navbar {
    height: 70px;
  }
  .cid-u3I85Veidx .navbar.opened {
    height: auto;
  }
  .cid-u3I85Veidx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4Cc3xnm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/hidrolik-sistem-ariza-bakim-servisi-ilg-hidrolik-1-1920x1080.jpg");
}
.cid-u3J4Cc3xnm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4Cc3xnm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4Cc3xnm .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4Cc3xnm .container {
    padding: 0 16px;
  }
}
.cid-u3J4Cc3xnm .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4Cc3xnm .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4Cc3xnm .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4Cc3xnm .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4Cc3xnm .mbr-section-title {
  color: #000000;
}
.cid-u3J4Cc3xnm .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4Cc3xnm .mbr-section-title,
.cid-u3J4Cc3xnm .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3I9RjzD2H {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-u3I9RjzD2H .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3I9RjzD2H H4 {
  text-align: center;
  color: #fb0000;
}
.cid-u3I861f3Pp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I861f3Pp .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I861f3Pp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I861f3Pp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I861f3Pp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I861f3Pp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I8622E9U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I8622E9U .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I8622E9U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I8622E9U .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I8622E9U .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I8622E9U .container {
    padding: 0 16px;
  }
}
.cid-u3I8622E9U .row {
  justify-content: center;
}
.cid-u3I8622E9U .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I8622E9U .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I8622E9U .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I8622E9U .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I8622E9U .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I8622E9U .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I8622E9U .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I8622E9U .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I8622E9U .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I8622E9U .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I8622E9U .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .item {
    margin-bottom: 32px;
  }
}
.cid-u3I8622E9U .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I8622E9U .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I8622E9U .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I8622E9U .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I8622E9U .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I8622E9U .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I8622E9U .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I8622E9U .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I8622E9U .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I8622E9U .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I8622E9U .mbr-section-title {
  color: #000000;
}
.cid-u3I8622E9U .card-title {
  color: #fb0000;
}
.cid-u3I8622E9U .list {
  color: #000000;
}
.cid-u3I8622E9U .mbr-soc {
  color: #000000;
}
.cid-u3I8632gJu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I8632gJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I8632gJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I8632gJu .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I8632gJu .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I8632gJu .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I8632gJu .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I8632gJu .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I8632gJu .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I8632gJu .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I8632gJu .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I8632gJu .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I8632gJu .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I8632gJu .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I8632gJu .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I8632gJu .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I8632gJu .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I8632gJu [class^="socicon-"]:before,
.cid-u3I8632gJu [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3I82VL1Ra {
  z-index: 1000;
  width: 100%;
}
.cid-u3I82VL1Ra nav.navbar {
  position: fixed;
}
.cid-u3I82VL1Ra .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I82VL1Ra .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I82VL1Ra .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I82VL1Ra .dropdown-item:hover,
.cid-u3I82VL1Ra .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I82VL1Ra .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I82VL1Ra .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I82VL1Ra .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I82VL1Ra .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I82VL1Ra .nav-link {
  position: relative;
}
.cid-u3I82VL1Ra .container {
  display: flex;
  margin: auto;
}
.cid-u3I82VL1Ra .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I82VL1Ra .dropdown-menu,
.cid-u3I82VL1Ra .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I82VL1Ra .nav-item:focus,
.cid-u3I82VL1Ra .nav-link:focus {
  outline: none;
}
.cid-u3I82VL1Ra .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I82VL1Ra .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I82VL1Ra .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I82VL1Ra .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I82VL1Ra .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I82VL1Ra .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I82VL1Ra .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I82VL1Ra .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I82VL1Ra .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I82VL1Ra .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I82VL1Ra .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I82VL1Ra .navbar.collapsed {
  justify-content: center;
}
.cid-u3I82VL1Ra .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I82VL1Ra .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I82VL1Ra .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I82VL1Ra .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I82VL1Ra .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I82VL1Ra .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I82VL1Ra .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I82VL1Ra .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I82VL1Ra .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I82VL1Ra .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I82VL1Ra .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I82VL1Ra .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I82VL1Ra .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I82VL1Ra .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I82VL1Ra .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I82VL1Ra .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I82VL1Ra .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I82VL1Ra .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I82VL1Ra .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I82VL1Ra .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I82VL1Ra .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I82VL1Ra .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I82VL1Ra .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I82VL1Ra .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I82VL1Ra .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I82VL1Ra .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I82VL1Ra .dropdown-item.active,
.cid-u3I82VL1Ra .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I82VL1Ra .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I82VL1Ra .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I82VL1Ra .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I82VL1Ra .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I82VL1Ra .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I82VL1Ra .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I82VL1Ra ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I82VL1Ra .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I82VL1Ra button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I82VL1Ra button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I82VL1Ra button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I82VL1Ra button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I82VL1Ra button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I82VL1Ra button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I82VL1Ra nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I82VL1Ra nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I82VL1Ra nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I82VL1Ra nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I82VL1Ra .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I82VL1Ra a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I82VL1Ra .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I82VL1Ra .navbar {
    height: 70px;
  }
  .cid-u3I82VL1Ra .navbar.opened {
    height: auto;
  }
  .cid-u3I82VL1Ra .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4A3TSxj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/hidrolik-sistem-ariza-bakim-servisi-ilg-hidrolik-1-1920x1080.jpg");
}
.cid-u3J4A3TSxj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4A3TSxj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4A3TSxj .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4A3TSxj .container {
    padding: 0 16px;
  }
}
.cid-u3J4A3TSxj .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4A3TSxj .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4A3TSxj .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4A3TSxj .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4A3TSxj .mbr-section-title {
  color: #000000;
}
.cid-u3J4A3TSxj .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4A3TSxj .mbr-section-title,
.cid-u3J4A3TSxj .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3I8lOcvt1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-u3I8lOcvt1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3I8lOcvt1 H4 {
  text-align: center;
  color: #fb0000;
}
.cid-u3I831aiTy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I831aiTy .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I831aiTy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I831aiTy .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I831aiTy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I831aiTy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I831OUnC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I831OUnC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I831OUnC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I831OUnC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I831OUnC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I831OUnC .container {
    padding: 0 16px;
  }
}
.cid-u3I831OUnC .row {
  justify-content: center;
}
.cid-u3I831OUnC .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I831OUnC .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I831OUnC .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I831OUnC .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I831OUnC .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I831OUnC .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I831OUnC .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I831OUnC .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I831OUnC .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I831OUnC .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I831OUnC .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .item {
    margin-bottom: 32px;
  }
}
.cid-u3I831OUnC .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I831OUnC .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I831OUnC .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I831OUnC .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I831OUnC .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I831OUnC .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I831OUnC .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I831OUnC .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I831OUnC .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I831OUnC .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I831OUnC .mbr-section-title {
  color: #000000;
}
.cid-u3I831OUnC .card-title {
  color: #fb0000;
}
.cid-u3I831OUnC .list {
  color: #000000;
}
.cid-u3I831OUnC .mbr-soc {
  color: #000000;
}
.cid-u3I7X01nKu {
  z-index: 1000;
  width: 100%;
}
.cid-u3I7X01nKu nav.navbar {
  position: fixed;
}
.cid-u3I7X01nKu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7X01nKu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I7X01nKu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I7X01nKu .dropdown-item:hover,
.cid-u3I7X01nKu .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I7X01nKu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I7X01nKu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I7X01nKu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I7X01nKu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I7X01nKu .nav-link {
  position: relative;
}
.cid-u3I7X01nKu .container {
  display: flex;
  margin: auto;
}
.cid-u3I7X01nKu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I7X01nKu .dropdown-menu,
.cid-u3I7X01nKu .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I7X01nKu .nav-item:focus,
.cid-u3I7X01nKu .nav-link:focus {
  outline: none;
}
.cid-u3I7X01nKu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I7X01nKu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I7X01nKu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I7X01nKu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7X01nKu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I7X01nKu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I7X01nKu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I7X01nKu .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I7X01nKu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I7X01nKu .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I7X01nKu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I7X01nKu .navbar.collapsed {
  justify-content: center;
}
.cid-u3I7X01nKu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I7X01nKu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I7X01nKu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I7X01nKu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I7X01nKu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I7X01nKu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I7X01nKu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I7X01nKu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I7X01nKu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I7X01nKu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I7X01nKu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I7X01nKu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I7X01nKu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I7X01nKu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I7X01nKu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I7X01nKu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I7X01nKu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I7X01nKu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I7X01nKu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I7X01nKu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I7X01nKu .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I7X01nKu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I7X01nKu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I7X01nKu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I7X01nKu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I7X01nKu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I7X01nKu .dropdown-item.active,
.cid-u3I7X01nKu .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I7X01nKu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I7X01nKu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I7X01nKu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I7X01nKu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I7X01nKu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I7X01nKu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I7X01nKu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I7X01nKu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I7X01nKu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I7X01nKu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I7X01nKu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I7X01nKu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7X01nKu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7X01nKu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I7X01nKu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7X01nKu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I7X01nKu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I7X01nKu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7X01nKu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I7X01nKu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I7X01nKu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I7X01nKu .navbar {
    height: 70px;
  }
  .cid-u3I7X01nKu .navbar.opened {
    height: auto;
  }
  .cid-u3I7X01nKu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4x8twXU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/hidrolik-sistem-ariza-bakim-servisi-ilg-hidrolik-1-1920x1080.jpg");
}
.cid-u3J4x8twXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4x8twXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4x8twXU .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4x8twXU .container {
    padding: 0 16px;
  }
}
.cid-u3J4x8twXU .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4x8twXU .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4x8twXU .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4x8twXU .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4x8twXU .mbr-section-title {
  color: #000000;
}
.cid-u3J4x8twXU .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4x8twXU .mbr-section-title,
.cid-u3J4x8twXU .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3Ibc3ptMR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-u3Ibc3ptMR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3Ibc3ptMR H4 {
  text-align: center;
  color: #fb0000;
}
.cid-u3I7X3Jztc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I7X3Jztc .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I7X3Jztc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I7X3Jztc .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I7X3Jztc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I7X3Jztc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I7X4jNQm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I7X4jNQm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7X4jNQm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7X4jNQm .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7X4jNQm .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7X4jNQm .container {
    padding: 0 16px;
  }
}
.cid-u3I7X4jNQm .row {
  justify-content: center;
}
.cid-u3I7X4jNQm .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7X4jNQm .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I7X4jNQm .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I7X4jNQm .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I7X4jNQm .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I7X4jNQm .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I7X4jNQm .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I7X4jNQm .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I7X4jNQm .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I7X4jNQm .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I7X4jNQm .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .item {
    margin-bottom: 32px;
  }
}
.cid-u3I7X4jNQm .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I7X4jNQm .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I7X4jNQm .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I7X4jNQm .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7X4jNQm .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I7X4jNQm .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I7X4jNQm .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I7X4jNQm .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I7X4jNQm .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I7X4jNQm .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I7X4jNQm .mbr-section-title {
  color: #000000;
}
.cid-u3I7X4jNQm .card-title {
  color: #fb0000;
}
.cid-u3I7X4jNQm .list {
  color: #000000;
}
.cid-u3I7X4jNQm .mbr-soc {
  color: #000000;
}
.cid-u3I7X5j8Yg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I7X5j8Yg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7X5j8Yg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7X5j8Yg .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I7X5j8Yg .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I7X5j8Yg .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I7X5j8Yg .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I7X5j8Yg .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I7X5j8Yg .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I7X5j8Yg .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I7X5j8Yg .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I7X5j8Yg .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I7X5j8Yg .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I7X5j8Yg .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I7X5j8Yg .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I7X5j8Yg .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I7X5j8Yg .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I7X5j8Yg [class^="socicon-"]:before,
.cid-u3I7X5j8Yg [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3I7Ucc99r {
  z-index: 1000;
  width: 100%;
}
.cid-u3I7Ucc99r nav.navbar {
  position: fixed;
}
.cid-u3I7Ucc99r .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7Ucc99r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I7Ucc99r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I7Ucc99r .dropdown-item:hover,
.cid-u3I7Ucc99r .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I7Ucc99r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I7Ucc99r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I7Ucc99r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I7Ucc99r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I7Ucc99r .nav-link {
  position: relative;
}
.cid-u3I7Ucc99r .container {
  display: flex;
  margin: auto;
}
.cid-u3I7Ucc99r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I7Ucc99r .dropdown-menu,
.cid-u3I7Ucc99r .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I7Ucc99r .nav-item:focus,
.cid-u3I7Ucc99r .nav-link:focus {
  outline: none;
}
.cid-u3I7Ucc99r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I7Ucc99r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I7Ucc99r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I7Ucc99r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7Ucc99r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I7Ucc99r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I7Ucc99r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I7Ucc99r .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I7Ucc99r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I7Ucc99r .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I7Ucc99r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I7Ucc99r .navbar.collapsed {
  justify-content: center;
}
.cid-u3I7Ucc99r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I7Ucc99r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I7Ucc99r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I7Ucc99r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I7Ucc99r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I7Ucc99r .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I7Ucc99r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I7Ucc99r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I7Ucc99r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I7Ucc99r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I7Ucc99r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I7Ucc99r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I7Ucc99r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I7Ucc99r .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I7Ucc99r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I7Ucc99r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I7Ucc99r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I7Ucc99r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I7Ucc99r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I7Ucc99r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I7Ucc99r .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I7Ucc99r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I7Ucc99r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I7Ucc99r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I7Ucc99r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I7Ucc99r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I7Ucc99r .dropdown-item.active,
.cid-u3I7Ucc99r .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I7Ucc99r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I7Ucc99r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I7Ucc99r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I7Ucc99r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I7Ucc99r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I7Ucc99r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I7Ucc99r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I7Ucc99r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I7Ucc99r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I7Ucc99r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I7Ucc99r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I7Ucc99r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7Ucc99r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7Ucc99r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I7Ucc99r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7Ucc99r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I7Ucc99r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I7Ucc99r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7Ucc99r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I7Ucc99r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I7Ucc99r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I7Ucc99r .navbar {
    height: 70px;
  }
  .cid-u3I7Ucc99r .navbar.opened {
    height: auto;
  }
  .cid-u3I7Ucc99r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4svwl4e {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pnomatik-urunler-ilg-hidrolik-pendik-1920x1080.jpg");
}
.cid-u3J4svwl4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4svwl4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4svwl4e .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4svwl4e .container {
    padding: 0 16px;
  }
}
.cid-u3J4svwl4e .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4svwl4e .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4svwl4e .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4svwl4e .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4svwl4e .mbr-section-title {
  color: #000000;
}
.cid-u3J4svwl4e .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4svwl4e .mbr-section-title,
.cid-u3J4svwl4e .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3NciaBiSn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u3NciaBiSn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3NciaBiSn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3NciaBiSn .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u3NciaBiSn .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u3NciaBiSn .container {
    padding: 0 24px;
  }
}
.cid-u3NciaBiSn .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-u3NciaBiSn .content-wrapper {
    padding: 0;
  }
}
.cid-u3NciaBiSn .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3NciaBiSn .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-u3NciaBiSn .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-u3NciaBiSn .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-u3NciaBiSn .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-u3NciaBiSn .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-u3NciaBiSn .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u3NciaBiSn .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-u3NciaBiSn .mbr-section-title {
  color: #141414;
}
.cid-u3NciaBiSn .mbr-desc {
  color: #141414;
}
.cid-u3NciaBiSn .mbr-text {
  color: #141414;
}
.cid-u3MXfI6YEr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3MXfI6YEr .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3MXfI6YEr .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3MXfI6YEr .container {
    padding: 0 25px;
  }
}
.cid-u3MXfI6YEr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3MXfI6YEr .item:focus,
.cid-u3MXfI6YEr span:focus {
  outline: none;
}
.cid-u3MXfI6YEr .item-wrapper {
  position: relative;
}
.cid-u3MXfI6YEr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3MXfI6YEr .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3MXfI6YEr .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3MXfI6YEr .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3MXfI6YEr .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3MXfI6YEr .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3MXfI6YEr .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3MXfI6YEr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3MXfI6YEr .embla__button--next,
.cid-u3MXfI6YEr .embla__button--prev {
  display: flex;
}
.cid-u3MXfI6YEr .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #fafafa !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3MXfI6YEr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MXfI6YEr .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXfI6YEr .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3MXfI6YEr .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #fafafa !important;
}
.cid-u3MXfI6YEr .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXfI6YEr .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3MXfI6YEr .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #fafafa !important;
}
.cid-u3MXfI6YEr .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3MXfI6YEr .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3MXfI6YEr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MXfI6YEr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MXfI6YEr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MXfI6YEr .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3MXfI6YEr .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3MXfI6YEr .item-title {
  color: #000000;
  text-align: center;
}
.cid-u3MXfI6YEr .item-price {
  color: #000000;
}
.cid-u3I7UfjCCF {
  background-color: #073b4c;
}
.cid-u3I7UfjCCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7UfjCCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7UfjCCF .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7UfjCCF .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7UfjCCF .container {
    padding: 0 16px;
  }
}
.cid-u3I7UfjCCF .row {
  padding: 60px 64px;
  background-color: #fffaf5;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-u3I7UfjCCF .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .row {
    padding: 25px 9px;
  }
}
.cid-u3I7UfjCCF .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u3I7UfjCCF .image-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u3I7UfjCCF .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .image-wrapper img {
    height: 350px;
  }
}
.cid-u3I7UfjCCF .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .content-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-u3I7UfjCCF .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u3I7UfjCCF .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .items-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u3I7UfjCCF .items-wrapper {
    display: block;
  }
}
.cid-u3I7UfjCCF .items-wrapper .item {
  padding: 50px;
  background-color: #e7f2ed;
  border-radius: .5rem !important;
}
.cid-u3I7UfjCCF .items-wrapper .item:nth-child(2n) {
  background-color: #ecf4f6;
}
@media (max-width: 992px) {
  .cid-u3I7UfjCCF .items-wrapper .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.cid-u3I7UfjCCF .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 20px;
}
.cid-u3I7UfjCCF .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  color: #000000;
  display: inline-flex;
}
.cid-u3I7UfjCCF .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.cid-u3I7UfjCCF .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u3I7UfjCCF .card {
  justify-content: center;
}
.cid-u3I7UfjCCF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u3I7UfjCCF .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-u3I7UfjCCF .card-title {
  color: #000000;
}
.cid-u3I7UfjCCF .card-text {
  color: #000000;
  text-align: center;
}
.cid-u3I7UfjCCF .card-title,
.cid-u3I7UfjCCF .icon-wrapper {
  text-align: center;
}
.cid-u3MXglKYBp {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3MXglKYBp .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3MXglKYBp .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3MXglKYBp .container {
    padding: 0 25px;
  }
}
.cid-u3MXglKYBp .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3MXglKYBp .item:focus,
.cid-u3MXglKYBp span:focus {
  outline: none;
}
.cid-u3MXglKYBp .item-wrapper {
  position: relative;
}
.cid-u3MXglKYBp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3MXglKYBp .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3MXglKYBp .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3MXglKYBp .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3MXglKYBp .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3MXglKYBp .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3MXglKYBp .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3MXglKYBp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3MXglKYBp .embla__button--next,
.cid-u3MXglKYBp .embla__button--prev {
  display: flex;
}
.cid-u3MXglKYBp .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3MXglKYBp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MXglKYBp .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXglKYBp .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3MXglKYBp .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXglKYBp .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXglKYBp .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3MXglKYBp .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXglKYBp .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3MXglKYBp .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3MXglKYBp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MXglKYBp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MXglKYBp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MXglKYBp .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3MXglKYBp .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3MXglKYBp .item-title {
  color: #000000;
  text-align: center;
}
.cid-u3MXglKYBp .item-price {
  color: #000000;
}
.cid-u3I7UfUGvr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I7UfUGvr .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I7UfUGvr .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I7UfUGvr .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I7UfUGvr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I7UfUGvr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I7UgxUZ6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I7UgxUZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7UgxUZ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7UgxUZ6 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7UgxUZ6 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7UgxUZ6 .container {
    padding: 0 16px;
  }
}
.cid-u3I7UgxUZ6 .row {
  justify-content: center;
}
.cid-u3I7UgxUZ6 .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7UgxUZ6 .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I7UgxUZ6 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I7UgxUZ6 .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I7UgxUZ6 .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I7UgxUZ6 .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I7UgxUZ6 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I7UgxUZ6 .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I7UgxUZ6 .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I7UgxUZ6 .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I7UgxUZ6 .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .item {
    margin-bottom: 32px;
  }
}
.cid-u3I7UgxUZ6 .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I7UgxUZ6 .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I7UgxUZ6 .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I7UgxUZ6 .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I7UgxUZ6 .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I7UgxUZ6 .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I7UgxUZ6 .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I7UgxUZ6 .mbr-section-title {
  color: #000000;
}
.cid-u3I7UgxUZ6 .card-title {
  color: #fb0000;
}
.cid-u3I7UgxUZ6 .list {
  color: #000000;
}
.cid-u3I7UgxUZ6 .mbr-soc {
  color: #000000;
}
.cid-u3I7UhBfIz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I7UhBfIz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7UhBfIz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7UhBfIz .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I7UhBfIz .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I7UhBfIz .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I7UhBfIz .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I7UhBfIz .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I7UhBfIz .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I7UhBfIz .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I7UhBfIz .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I7UhBfIz .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I7UhBfIz .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I7UhBfIz .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I7UhBfIz .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I7UhBfIz .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I7UhBfIz .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I7UhBfIz [class^="socicon-"]:before,
.cid-u3I7UhBfIz [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3I7QKOGpy {
  z-index: 1000;
  width: 100%;
}
.cid-u3I7QKOGpy nav.navbar {
  position: fixed;
}
.cid-u3I7QKOGpy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7QKOGpy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I7QKOGpy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I7QKOGpy .dropdown-item:hover,
.cid-u3I7QKOGpy .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I7QKOGpy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I7QKOGpy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I7QKOGpy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I7QKOGpy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I7QKOGpy .nav-link {
  position: relative;
}
.cid-u3I7QKOGpy .container {
  display: flex;
  margin: auto;
}
.cid-u3I7QKOGpy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I7QKOGpy .dropdown-menu,
.cid-u3I7QKOGpy .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I7QKOGpy .nav-item:focus,
.cid-u3I7QKOGpy .nav-link:focus {
  outline: none;
}
.cid-u3I7QKOGpy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I7QKOGpy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I7QKOGpy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I7QKOGpy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7QKOGpy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I7QKOGpy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I7QKOGpy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I7QKOGpy .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I7QKOGpy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I7QKOGpy .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I7QKOGpy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I7QKOGpy .navbar.collapsed {
  justify-content: center;
}
.cid-u3I7QKOGpy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I7QKOGpy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I7QKOGpy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I7QKOGpy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I7QKOGpy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I7QKOGpy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I7QKOGpy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I7QKOGpy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I7QKOGpy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I7QKOGpy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I7QKOGpy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I7QKOGpy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I7QKOGpy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I7QKOGpy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I7QKOGpy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I7QKOGpy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I7QKOGpy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I7QKOGpy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I7QKOGpy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I7QKOGpy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I7QKOGpy .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I7QKOGpy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I7QKOGpy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I7QKOGpy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I7QKOGpy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I7QKOGpy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I7QKOGpy .dropdown-item.active,
.cid-u3I7QKOGpy .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I7QKOGpy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I7QKOGpy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I7QKOGpy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I7QKOGpy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I7QKOGpy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I7QKOGpy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I7QKOGpy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I7QKOGpy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I7QKOGpy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I7QKOGpy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I7QKOGpy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I7QKOGpy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7QKOGpy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7QKOGpy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I7QKOGpy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7QKOGpy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I7QKOGpy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I7QKOGpy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7QKOGpy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I7QKOGpy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I7QKOGpy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I7QKOGpy .navbar {
    height: 70px;
  }
  .cid-u3I7QKOGpy .navbar.opened {
    height: auto;
  }
  .cid-u3I7QKOGpy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4qrinDl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/hidrolik-urunler-ilg-hidrolik-pendik-1920x1080.jpg");
}
.cid-u3J4qrinDl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4qrinDl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4qrinDl .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4qrinDl .container {
    padding: 0 16px;
  }
}
.cid-u3J4qrinDl .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4qrinDl .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4qrinDl .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4qrinDl .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4qrinDl .mbr-section-title {
  color: #000000;
}
.cid-u3J4qrinDl .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4qrinDl .mbr-section-title,
.cid-u3J4qrinDl .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3N6ICMVJt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u3N6ICMVJt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3N6ICMVJt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3N6ICMVJt .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u3N6ICMVJt .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u3N6ICMVJt .container {
    padding: 0 24px;
  }
}
.cid-u3N6ICMVJt .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-u3N6ICMVJt .content-wrapper {
    padding: 0;
  }
}
.cid-u3N6ICMVJt .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u3N6ICMVJt .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-u3N6ICMVJt .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-u3N6ICMVJt .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-u3N6ICMVJt .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-u3N6ICMVJt .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #141414;
  color: #fb8fc9;
  font-size: 32px;
}
.cid-u3N6ICMVJt .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u3N6ICMVJt .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-u3N6ICMVJt .mbr-section-title {
  color: #141414;
}
.cid-u3N6ICMVJt .mbr-desc {
  color: #141414;
}
.cid-u3N6ICMVJt .mbr-text {
  color: #141414;
}
.cid-u3MXcijeew {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3MXcijeew .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3MXcijeew .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3MXcijeew .container {
    padding: 0 25px;
  }
}
.cid-u3MXcijeew .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3MXcijeew .item:focus,
.cid-u3MXcijeew span:focus {
  outline: none;
}
.cid-u3MXcijeew .item-wrapper {
  position: relative;
}
.cid-u3MXcijeew .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3MXcijeew .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3MXcijeew .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3MXcijeew .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3MXcijeew .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3MXcijeew .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3MXcijeew .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3MXcijeew .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3MXcijeew .embla__button--next,
.cid-u3MXcijeew .embla__button--prev {
  display: flex;
}
.cid-u3MXcijeew .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3MXcijeew .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MXcijeew .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXcijeew .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3MXcijeew .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXcijeew .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXcijeew .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3MXcijeew .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXcijeew .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3MXcijeew .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3MXcijeew .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MXcijeew .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MXcijeew .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MXcijeew .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3MXcijeew .item-subtitle {
  color: #353535;
  text-align: center;
}
.cid-u3MXcijeew .item-title {
  color: #353535;
  text-align: center;
}
.cid-u3MXcijeew .item-price {
  color: #000000;
}
.cid-u3I7QO0I0S {
  background-color: #073b4c;
}
.cid-u3I7QO0I0S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7QO0I0S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7QO0I0S .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7QO0I0S .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7QO0I0S .container {
    padding: 0 16px;
  }
}
.cid-u3I7QO0I0S .row {
  padding: 60px 64px;
  background-color: #fffaf5;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-u3I7QO0I0S .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .row {
    padding: 25px 9px;
  }
}
.cid-u3I7QO0I0S .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u3I7QO0I0S .image-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u3I7QO0I0S .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .image-wrapper img {
    height: 350px;
  }
}
.cid-u3I7QO0I0S .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .content-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-u3I7QO0I0S .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u3I7QO0I0S .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .items-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u3I7QO0I0S .items-wrapper {
    display: block;
  }
}
.cid-u3I7QO0I0S .items-wrapper .item {
  padding: 50px;
  background-color: #e7f2ed;
  border-radius: .5rem !important;
}
.cid-u3I7QO0I0S .items-wrapper .item:nth-child(2n) {
  background-color: #ecf4f6;
}
@media (max-width: 992px) {
  .cid-u3I7QO0I0S .items-wrapper .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.cid-u3I7QO0I0S .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 20px;
}
.cid-u3I7QO0I0S .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  color: #000000;
  display: inline-flex;
}
.cid-u3I7QO0I0S .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.cid-u3I7QO0I0S .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u3I7QO0I0S .card {
  justify-content: center;
}
.cid-u3I7QO0I0S .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u3I7QO0I0S .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-u3I7QO0I0S .card-title {
  color: #000000;
}
.cid-u3I7QO0I0S .card-text {
  color: #000000;
  text-align: center;
}
.cid-u3I7QO0I0S .card-title,
.cid-u3I7QO0I0S .icon-wrapper {
  text-align: center;
}
.cid-u3MXdz6lDr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3MXdz6lDr .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3MXdz6lDr .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3MXdz6lDr .container {
    padding: 0 25px;
  }
}
.cid-u3MXdz6lDr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3MXdz6lDr .item:focus,
.cid-u3MXdz6lDr span:focus {
  outline: none;
}
.cid-u3MXdz6lDr .item-wrapper {
  position: relative;
}
.cid-u3MXdz6lDr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3MXdz6lDr .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3MXdz6lDr .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3MXdz6lDr .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3MXdz6lDr .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3MXdz6lDr .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3MXdz6lDr .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3MXdz6lDr .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3MXdz6lDr .embla__button--next,
.cid-u3MXdz6lDr .embla__button--prev {
  display: flex;
}
.cid-u3MXdz6lDr .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3MXdz6lDr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MXdz6lDr .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXdz6lDr .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3MXdz6lDr .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXdz6lDr .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXdz6lDr .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3MXdz6lDr .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXdz6lDr .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3MXdz6lDr .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3MXdz6lDr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MXdz6lDr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MXdz6lDr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MXdz6lDr .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3MXdz6lDr .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3MXdz6lDr .item-title {
  color: #000000;
  text-align: center;
}
.cid-u3MXdz6lDr .item-price {
  color: #000000;
}
.cid-u3I7QOyK8M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I7QOyK8M .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I7QOyK8M .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I7QOyK8M .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I7QOyK8M .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I7QOyK8M .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I7QP8cnu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I7QP8cnu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7QP8cnu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7QP8cnu .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7QP8cnu .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7QP8cnu .container {
    padding: 0 16px;
  }
}
.cid-u3I7QP8cnu .row {
  justify-content: center;
}
.cid-u3I7QP8cnu .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7QP8cnu .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I7QP8cnu .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I7QP8cnu .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I7QP8cnu .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I7QP8cnu .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I7QP8cnu .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I7QP8cnu .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I7QP8cnu .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I7QP8cnu .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I7QP8cnu .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .item {
    margin-bottom: 32px;
  }
}
.cid-u3I7QP8cnu .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I7QP8cnu .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I7QP8cnu .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I7QP8cnu .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7QP8cnu .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I7QP8cnu .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I7QP8cnu .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I7QP8cnu .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I7QP8cnu .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I7QP8cnu .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I7QP8cnu .mbr-section-title {
  color: #000000;
}
.cid-u3I7QP8cnu .card-title {
  color: #fb0000;
}
.cid-u3I7QP8cnu .list {
  color: #000000;
}
.cid-u3I7QP8cnu .mbr-soc {
  color: #000000;
}
.cid-u3I7QQaKEF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I7QQaKEF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7QQaKEF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7QQaKEF .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I7QQaKEF .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I7QQaKEF .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I7QQaKEF .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I7QQaKEF .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I7QQaKEF .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I7QQaKEF .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I7QQaKEF .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I7QQaKEF .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I7QQaKEF .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I7QQaKEF .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I7QQaKEF .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I7QQaKEF .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I7QQaKEF .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I7QQaKEF [class^="socicon-"]:before,
.cid-u3I7QQaKEF [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3N6rBvvGo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u3N6rBvvGo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3N6rBvvGo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3N6rBvvGo ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-u3N6rBvvGo li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-u3N6rBvvGo ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-u3I7MyVVcX {
  z-index: 1000;
  width: 100%;
}
.cid-u3I7MyVVcX nav.navbar {
  position: fixed;
}
.cid-u3I7MyVVcX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7MyVVcX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I7MyVVcX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I7MyVVcX .dropdown-item:hover,
.cid-u3I7MyVVcX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I7MyVVcX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I7MyVVcX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I7MyVVcX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I7MyVVcX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I7MyVVcX .nav-link {
  position: relative;
}
.cid-u3I7MyVVcX .container {
  display: flex;
  margin: auto;
}
.cid-u3I7MyVVcX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I7MyVVcX .dropdown-menu,
.cid-u3I7MyVVcX .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I7MyVVcX .nav-item:focus,
.cid-u3I7MyVVcX .nav-link:focus {
  outline: none;
}
.cid-u3I7MyVVcX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I7MyVVcX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I7MyVVcX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I7MyVVcX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7MyVVcX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I7MyVVcX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I7MyVVcX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I7MyVVcX .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I7MyVVcX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I7MyVVcX .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I7MyVVcX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I7MyVVcX .navbar.collapsed {
  justify-content: center;
}
.cid-u3I7MyVVcX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I7MyVVcX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I7MyVVcX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I7MyVVcX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I7MyVVcX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I7MyVVcX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I7MyVVcX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I7MyVVcX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I7MyVVcX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I7MyVVcX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I7MyVVcX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I7MyVVcX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I7MyVVcX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I7MyVVcX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I7MyVVcX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I7MyVVcX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I7MyVVcX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I7MyVVcX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I7MyVVcX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I7MyVVcX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I7MyVVcX .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I7MyVVcX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I7MyVVcX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I7MyVVcX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I7MyVVcX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I7MyVVcX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I7MyVVcX .dropdown-item.active,
.cid-u3I7MyVVcX .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I7MyVVcX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I7MyVVcX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I7MyVVcX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I7MyVVcX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I7MyVVcX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I7MyVVcX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I7MyVVcX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I7MyVVcX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I7MyVVcX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I7MyVVcX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I7MyVVcX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I7MyVVcX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7MyVVcX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7MyVVcX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I7MyVVcX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7MyVVcX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I7MyVVcX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I7MyVVcX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7MyVVcX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I7MyVVcX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I7MyVVcX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I7MyVVcX .navbar {
    height: 70px;
  }
  .cid-u3I7MyVVcX .navbar.opened {
    height: auto;
  }
  .cid-u3I7MyVVcX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4uZg3pb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pnomatik-sistem-ariza-bakim-servisi-ilg-hidrolik-4-1920x1080.jpg");
}
.cid-u3J4uZg3pb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4uZg3pb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4uZg3pb .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4uZg3pb .container {
    padding: 0 16px;
  }
}
.cid-u3J4uZg3pb .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4uZg3pb .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4uZg3pb .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4uZg3pb .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4uZg3pb .mbr-section-title {
  color: #000000;
}
.cid-u3J4uZg3pb .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4uZg3pb .mbr-section-title,
.cid-u3J4uZg3pb .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3MXiZ7cqm {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3MXiZ7cqm .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3MXiZ7cqm .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3MXiZ7cqm .container {
    padding: 0 25px;
  }
}
.cid-u3MXiZ7cqm .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3MXiZ7cqm .item:focus,
.cid-u3MXiZ7cqm span:focus {
  outline: none;
}
.cid-u3MXiZ7cqm .item-wrapper {
  position: relative;
}
.cid-u3MXiZ7cqm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3MXiZ7cqm .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3MXiZ7cqm .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3MXiZ7cqm .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3MXiZ7cqm .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3MXiZ7cqm .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3MXiZ7cqm .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3MXiZ7cqm .embla__button--next,
.cid-u3MXiZ7cqm .embla__button--prev {
  display: flex;
}
.cid-u3MXiZ7cqm .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3MXiZ7cqm .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MXiZ7cqm .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXiZ7cqm .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3MXiZ7cqm .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXiZ7cqm .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3MXiZ7cqm .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3MXiZ7cqm .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MXiZ7cqm .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3MXiZ7cqm .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3MXiZ7cqm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MXiZ7cqm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MXiZ7cqm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MXiZ7cqm .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3MXiZ7cqm .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3MXiZ7cqm .item-title {
  color: #000000;
  text-align: center;
}
.cid-u3MXiZ7cqm .item-price {
  color: #000000;
}
.cid-u3I7MDNUnn {
  background-color: #073b4c;
}
.cid-u3I7MDNUnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7MDNUnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7MDNUnn .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7MDNUnn .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7MDNUnn .container {
    padding: 0 16px;
  }
}
.cid-u3I7MDNUnn .row {
  padding: 60px 64px;
  background-color: #fffaf5;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-u3I7MDNUnn .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .row {
    padding: 25px 9px;
  }
}
.cid-u3I7MDNUnn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u3I7MDNUnn .image-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-u3I7MDNUnn .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .image-wrapper img {
    height: 350px;
  }
}
.cid-u3I7MDNUnn .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .content-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-u3I7MDNUnn .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u3I7MDNUnn .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .items-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u3I7MDNUnn .items-wrapper {
    display: block;
  }
}
.cid-u3I7MDNUnn .items-wrapper .item {
  padding: 50px;
  background-color: #e7f2ed;
  border-radius: .5rem !important;
}
.cid-u3I7MDNUnn .items-wrapper .item:nth-child(2n) {
  background-color: #ecf4f6;
}
@media (max-width: 992px) {
  .cid-u3I7MDNUnn .items-wrapper .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.cid-u3I7MDNUnn .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 20px;
}
.cid-u3I7MDNUnn .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  color: #000000;
  display: inline-flex;
}
.cid-u3I7MDNUnn .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.cid-u3I7MDNUnn .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-u3I7MDNUnn .card {
  justify-content: center;
}
.cid-u3I7MDNUnn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u3I7MDNUnn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-u3I7MDNUnn .card-title {
  color: #000000;
}
.cid-u3I7MDNUnn .card-text {
  color: #000000;
  text-align: center;
}
.cid-u3I7MDNUnn .card-title,
.cid-u3I7MDNUnn .icon-wrapper {
  text-align: center;
}
.cid-u3I7MEG7Eo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I7MEG7Eo .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I7MEG7Eo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I7MEG7Eo .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I7MEG7Eo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I7MEG7Eo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I7MFxHPd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I7MFxHPd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7MFxHPd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7MFxHPd .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7MFxHPd .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7MFxHPd .container {
    padding: 0 16px;
  }
}
.cid-u3I7MFxHPd .row {
  justify-content: center;
}
.cid-u3I7MFxHPd .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7MFxHPd .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I7MFxHPd .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I7MFxHPd .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I7MFxHPd .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I7MFxHPd .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I7MFxHPd .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I7MFxHPd .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I7MFxHPd .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I7MFxHPd .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I7MFxHPd .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .item {
    margin-bottom: 32px;
  }
}
.cid-u3I7MFxHPd .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I7MFxHPd .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I7MFxHPd .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I7MFxHPd .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7MFxHPd .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I7MFxHPd .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I7MFxHPd .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I7MFxHPd .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I7MFxHPd .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I7MFxHPd .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I7MFxHPd .mbr-section-title {
  color: #000000;
}
.cid-u3I7MFxHPd .card-title {
  color: #fb0000;
}
.cid-u3I7MFxHPd .list {
  color: #000000;
}
.cid-u3I7MFxHPd .mbr-soc {
  color: #000000;
}
.cid-u3I7MHLJAH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I7MHLJAH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7MHLJAH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7MHLJAH .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I7MHLJAH .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I7MHLJAH .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I7MHLJAH .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I7MHLJAH .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I7MHLJAH .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I7MHLJAH .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I7MHLJAH .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I7MHLJAH .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I7MHLJAH .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I7MHLJAH .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I7MHLJAH .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I7MHLJAH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I7MHLJAH .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I7MHLJAH [class^="socicon-"]:before,
.cid-u3I7MHLJAH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3I7I2YFB1 {
  z-index: 1000;
  width: 100%;
}
.cid-u3I7I2YFB1 nav.navbar {
  position: fixed;
}
.cid-u3I7I2YFB1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7I2YFB1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I7I2YFB1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I7I2YFB1 .dropdown-item:hover,
.cid-u3I7I2YFB1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I7I2YFB1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I7I2YFB1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I7I2YFB1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I7I2YFB1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I7I2YFB1 .nav-link {
  position: relative;
}
.cid-u3I7I2YFB1 .container {
  display: flex;
  margin: auto;
}
.cid-u3I7I2YFB1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I7I2YFB1 .dropdown-menu,
.cid-u3I7I2YFB1 .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I7I2YFB1 .nav-item:focus,
.cid-u3I7I2YFB1 .nav-link:focus {
  outline: none;
}
.cid-u3I7I2YFB1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I7I2YFB1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I7I2YFB1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I7I2YFB1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7I2YFB1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I7I2YFB1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I7I2YFB1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I7I2YFB1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I7I2YFB1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I7I2YFB1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I7I2YFB1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I7I2YFB1 .navbar.collapsed {
  justify-content: center;
}
.cid-u3I7I2YFB1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I7I2YFB1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I7I2YFB1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I7I2YFB1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I7I2YFB1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I7I2YFB1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I7I2YFB1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I7I2YFB1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I7I2YFB1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I7I2YFB1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I7I2YFB1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I7I2YFB1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I7I2YFB1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I7I2YFB1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I7I2YFB1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I7I2YFB1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I7I2YFB1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I7I2YFB1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I7I2YFB1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I7I2YFB1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I7I2YFB1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I7I2YFB1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I7I2YFB1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I7I2YFB1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I7I2YFB1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I7I2YFB1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I7I2YFB1 .dropdown-item.active,
.cid-u3I7I2YFB1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I7I2YFB1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I7I2YFB1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I7I2YFB1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I7I2YFB1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I7I2YFB1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I7I2YFB1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I7I2YFB1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I7I2YFB1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I7I2YFB1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I7I2YFB1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I7I2YFB1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I7I2YFB1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7I2YFB1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7I2YFB1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I7I2YFB1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7I2YFB1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I7I2YFB1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I7I2YFB1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7I2YFB1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I7I2YFB1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I7I2YFB1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I7I2YFB1 .navbar {
    height: 70px;
  }
  .cid-u3I7I2YFB1 .navbar.opened {
    height: auto;
  }
  .cid-u3I7I2YFB1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4nIo8QT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pnomatik-sistem-ariza-bakim-servisi-ilg-hidrolik-2-1920x1080.jpg");
}
.cid-u3J4nIo8QT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4nIo8QT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4nIo8QT .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4nIo8QT .container {
    padding: 0 16px;
  }
}
.cid-u3J4nIo8QT .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4nIo8QT .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4nIo8QT .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4nIo8QT .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4nIo8QT .mbr-section-title {
  color: #000000;
}
.cid-u3J4nIo8QT .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4nIo8QT .mbr-section-title,
.cid-u3J4nIo8QT .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3N5LjktPE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u3N5LjktPE .line {
  background-color: #fb0000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u3MX9HntgC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fafafa;
}
.cid-u3MX9HntgC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MX9HntgC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MX9HntgC .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u3MX9HntgC .container-fluid {
    padding: 0 16px;
  }
}
.cid-u3MX9HntgC .container {
  margin-right: 0;
}
@media (max-width: 992px) {
  .cid-u3MX9HntgC .container {
    padding: 0 16px;
  }
}
.cid-u3MX9HntgC .slider-wrap {
  padding-right: 0;
}
@media (max-width: 992px) {
  .cid-u3MX9HntgC .slider-wrap {
    padding-right: 12px;
  }
}
.cid-u3MX9HntgC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 440px;
  max-width: 440px;
}
@media (max-width: 768px) {
  .cid-u3MX9HntgC .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u3MX9HntgC .embla__slide .card-wrap {
  width: 100%;
}
.cid-u3MX9HntgC .embla__slide .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 30px;
}
.cid-u3MX9HntgC .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-u3MX9HntgC .embla__slide .card-wrap .content-wrap .desc-wrap {
  margin-bottom: 20px;
}
.cid-u3MX9HntgC .embla__slide .card-wrap .content-wrap .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #000000;
  border-radius: 40px;
  margin-bottom: 0;
}
.cid-u3MX9HntgC .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 14px;
}
.cid-u3MX9HntgC .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 0;
}
.cid-u3MX9HntgC .embla__button--next,
.cid-u3MX9HntgC .embla__button--prev {
  display: flex;
}
.cid-u3MX9HntgC .embla__button {
  bottom: -4.5rem;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #47b5ed;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u3MX9HntgC .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MX9HntgC .embla__button:hover {
  background: transparent;
  color: #fb0000;
}
.cid-u3MX9HntgC .embla__button.embla__button--prev {
  left: 0;
}
.cid-u3MX9HntgC .embla__button.embla__button--next {
  right: auto;
  left: 20%;
}
@media (max-width: 767px) {
  .cid-u3MX9HntgC .embla__button {
    bottom: -4.5rem;
  }
}
.cid-u3MX9HntgC .embla {
  position: relative;
  width: 100%;
}
.cid-u3MX9HntgC .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u3MX9HntgC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MX9HntgC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MX9HntgC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MX9HntgC .mbr-desc {
  color: #ffffff;
}
.cid-u3MX9HntgC .card-title {
  color: #fb0000;
}
.cid-u3MX9HntgC .card-text {
  color: #353535;
}
.cid-u3MX9HntgC .mbr-desc,
.cid-u3MX9HntgC .desc-wrap {
  color: #000000;
}
.cid-u3NbcfE0BT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u3NbcfE0BT blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-u3NbcfE0BT .mbr-section-title {
  text-align: center;
}
.cid-u3MYtD77Vp {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3MYtD77Vp .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3MYtD77Vp .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3MYtD77Vp .container {
    padding: 0 25px;
  }
}
.cid-u3MYtD77Vp .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3MYtD77Vp .item:focus,
.cid-u3MYtD77Vp span:focus {
  outline: none;
}
.cid-u3MYtD77Vp .item-wrapper {
  position: relative;
}
.cid-u3MYtD77Vp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3MYtD77Vp .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3MYtD77Vp .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3MYtD77Vp .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3MYtD77Vp .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3MYtD77Vp .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3MYtD77Vp .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3MYtD77Vp .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3MYtD77Vp .embla__button--next,
.cid-u3MYtD77Vp .embla__button--prev {
  display: flex;
}
.cid-u3MYtD77Vp .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #fafafa !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3MYtD77Vp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MYtD77Vp .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3MYtD77Vp .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3MYtD77Vp .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #fafafa !important;
}
.cid-u3MYtD77Vp .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3MYtD77Vp .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3MYtD77Vp .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #fafafa !important;
}
.cid-u3MYtD77Vp .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3MYtD77Vp .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3MYtD77Vp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MYtD77Vp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MYtD77Vp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MYtD77Vp .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3MYtD77Vp .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3MYtD77Vp .item-title {
  color: #000000;
  text-align: center;
}
.cid-u3MYtD77Vp .item-price {
  color: #000000;
}
.cid-u3I7I70b17 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I7I70b17 .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I7I70b17 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I7I70b17 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I7I70b17 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I7I70b17 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I7I7Em5B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I7I7Em5B .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7I7Em5B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7I7Em5B .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7I7Em5B .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7I7Em5B .container {
    padding: 0 16px;
  }
}
.cid-u3I7I7Em5B .row {
  justify-content: center;
}
.cid-u3I7I7Em5B .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7I7Em5B .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I7I7Em5B .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I7I7Em5B .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I7I7Em5B .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I7I7Em5B .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I7I7Em5B .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I7I7Em5B .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I7I7Em5B .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I7I7Em5B .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I7I7Em5B .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .item {
    margin-bottom: 32px;
  }
}
.cid-u3I7I7Em5B .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I7I7Em5B .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I7I7Em5B .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I7I7Em5B .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7I7Em5B .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I7I7Em5B .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I7I7Em5B .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I7I7Em5B .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I7I7Em5B .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I7I7Em5B .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I7I7Em5B .mbr-section-title {
  color: #000000;
}
.cid-u3I7I7Em5B .card-title {
  color: #fb0000;
}
.cid-u3I7I7Em5B .list {
  color: #000000;
}
.cid-u3I7I7Em5B .mbr-soc {
  color: #000000;
}
.cid-u3I7I8HmhR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I7I8HmhR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7I8HmhR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7I8HmhR .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I7I8HmhR .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I7I8HmhR .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I7I8HmhR .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I7I8HmhR .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I7I8HmhR .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I7I8HmhR .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I7I8HmhR .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I7I8HmhR .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I7I8HmhR .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I7I8HmhR .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I7I8HmhR .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I7I8HmhR .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I7I8HmhR .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I7I8HmhR [class^="socicon-"]:before,
.cid-u3I7I8HmhR [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3I7Gb69AO {
  z-index: 1000;
  width: 100%;
}
.cid-u3I7Gb69AO nav.navbar {
  position: fixed;
}
.cid-u3I7Gb69AO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7Gb69AO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I7Gb69AO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I7Gb69AO .dropdown-item:hover,
.cid-u3I7Gb69AO .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I7Gb69AO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I7Gb69AO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I7Gb69AO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I7Gb69AO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I7Gb69AO .nav-link {
  position: relative;
}
.cid-u3I7Gb69AO .container {
  display: flex;
  margin: auto;
}
.cid-u3I7Gb69AO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I7Gb69AO .dropdown-menu,
.cid-u3I7Gb69AO .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I7Gb69AO .nav-item:focus,
.cid-u3I7Gb69AO .nav-link:focus {
  outline: none;
}
.cid-u3I7Gb69AO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I7Gb69AO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I7Gb69AO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I7Gb69AO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7Gb69AO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I7Gb69AO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I7Gb69AO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I7Gb69AO .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I7Gb69AO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I7Gb69AO .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I7Gb69AO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I7Gb69AO .navbar.collapsed {
  justify-content: center;
}
.cid-u3I7Gb69AO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I7Gb69AO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I7Gb69AO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I7Gb69AO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I7Gb69AO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I7Gb69AO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I7Gb69AO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I7Gb69AO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I7Gb69AO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I7Gb69AO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I7Gb69AO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I7Gb69AO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I7Gb69AO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I7Gb69AO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I7Gb69AO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I7Gb69AO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I7Gb69AO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I7Gb69AO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I7Gb69AO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I7Gb69AO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I7Gb69AO .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I7Gb69AO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I7Gb69AO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I7Gb69AO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I7Gb69AO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I7Gb69AO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I7Gb69AO .dropdown-item.active,
.cid-u3I7Gb69AO .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I7Gb69AO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I7Gb69AO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I7Gb69AO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I7Gb69AO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I7Gb69AO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I7Gb69AO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I7Gb69AO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I7Gb69AO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I7Gb69AO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I7Gb69AO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I7Gb69AO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I7Gb69AO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7Gb69AO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7Gb69AO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I7Gb69AO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7Gb69AO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I7Gb69AO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I7Gb69AO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7Gb69AO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I7Gb69AO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I7Gb69AO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I7Gb69AO .navbar {
    height: 70px;
  }
  .cid-u3I7Gb69AO .navbar.opened {
    height: auto;
  }
  .cid-u3I7Gb69AO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4lueGRI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pnomatik-sistem-ariza-bakim-servisi-ilg-hidrolik-2-1920x1080.jpg");
}
.cid-u3J4lueGRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4lueGRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4lueGRI .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4lueGRI .container {
    padding: 0 16px;
  }
}
.cid-u3J4lueGRI .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4lueGRI .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4lueGRI .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4lueGRI .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4lueGRI .mbr-section-title {
  color: #000000;
}
.cid-u3J4lueGRI .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4lueGRI .mbr-section-title,
.cid-u3J4lueGRI .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3N56zqXZQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u3N56zqXZQ .line {
  background-color: #fb0000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u3MX6xmhCR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fafafa;
}
.cid-u3MX6xmhCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3MX6xmhCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3MX6xmhCR .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u3MX6xmhCR .container-fluid {
    padding: 0 16px;
  }
}
.cid-u3MX6xmhCR .container {
  margin-right: 0;
}
@media (max-width: 992px) {
  .cid-u3MX6xmhCR .container {
    padding: 0 16px;
  }
}
.cid-u3MX6xmhCR .slider-wrap {
  padding-right: 0;
}
@media (max-width: 992px) {
  .cid-u3MX6xmhCR .slider-wrap {
    padding-right: 12px;
  }
}
.cid-u3MX6xmhCR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 440px;
  max-width: 440px;
}
@media (max-width: 768px) {
  .cid-u3MX6xmhCR .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u3MX6xmhCR .embla__slide .card-wrap {
  width: 100%;
}
.cid-u3MX6xmhCR .embla__slide .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 30px;
}
.cid-u3MX6xmhCR .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-u3MX6xmhCR .embla__slide .card-wrap .content-wrap .desc-wrap {
  margin-bottom: 20px;
}
.cid-u3MX6xmhCR .embla__slide .card-wrap .content-wrap .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border: 1px solid #000000;
  border-radius: 40px;
  margin-bottom: 0;
}
.cid-u3MX6xmhCR .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 14px;
}
.cid-u3MX6xmhCR .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 0;
}
.cid-u3MX6xmhCR .embla__button--next,
.cid-u3MX6xmhCR .embla__button--prev {
  display: flex;
}
.cid-u3MX6xmhCR .embla__button {
  bottom: -4.5rem;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #47b5ed;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u3MX6xmhCR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MX6xmhCR .embla__button:hover {
  background: transparent;
  color: #fb0000;
}
.cid-u3MX6xmhCR .embla__button.embla__button--prev {
  left: 0;
}
.cid-u3MX6xmhCR .embla__button.embla__button--next {
  right: auto;
  left: 20%;
}
@media (max-width: 767px) {
  .cid-u3MX6xmhCR .embla__button {
    bottom: -4.5rem;
  }
}
.cid-u3MX6xmhCR .embla {
  position: relative;
  width: 100%;
}
.cid-u3MX6xmhCR .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u3MX6xmhCR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MX6xmhCR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MX6xmhCR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MX6xmhCR .mbr-desc {
  color: #ffffff;
}
.cid-u3MX6xmhCR .card-title {
  color: #fb0000;
}
.cid-u3MX6xmhCR .card-text {
  color: #353535;
}
.cid-u3MX6xmhCR .mbr-desc,
.cid-u3MX6xmhCR .desc-wrap {
  color: #000000;
}
.cid-u3NbQCrCeA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u3NbQCrCeA blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-u3NbQCrCeA .mbr-section-title {
  text-align: center;
}
.cid-u3MYlmWp0U {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-u3MYlmWp0U .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-u3MYlmWp0U .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-u3MYlmWp0U .container {
    padding: 0 25px;
  }
}
.cid-u3MYlmWp0U .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-u3MYlmWp0U .item:focus,
.cid-u3MYlmWp0U span:focus {
  outline: none;
}
.cid-u3MYlmWp0U .item-wrapper {
  position: relative;
}
.cid-u3MYlmWp0U .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-u3MYlmWp0U .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u3MYlmWp0U .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-u3MYlmWp0U .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-u3MYlmWp0U .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-u3MYlmWp0U .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-u3MYlmWp0U .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #bbbbbb;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-u3MYlmWp0U .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-u3MYlmWp0U .embla__button--next,
.cid-u3MYlmWp0U .embla__button--prev {
  display: flex;
}
.cid-u3MYlmWp0U .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-u3MYlmWp0U .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3MYlmWp0U .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-u3MYlmWp0U .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-u3MYlmWp0U .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MYlmWp0U .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-u3MYlmWp0U .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-u3MYlmWp0U .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-u3MYlmWp0U .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-u3MYlmWp0U .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u3MYlmWp0U .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3MYlmWp0U .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3MYlmWp0U .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u3MYlmWp0U .mbr-section-title {
  color: #fb0000;
  text-align: center;
}
.cid-u3MYlmWp0U .item-subtitle {
  color: #353535;
  text-align: center;
}
.cid-u3MYlmWp0U .item-title {
  color: #353535;
  text-align: center;
}
.cid-u3MYlmWp0U .item-price {
  color: #000000;
}
.cid-u3I7GeReSA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I7GeReSA .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I7GeReSA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I7GeReSA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I7GeReSA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I7GeReSA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I7GgmrN9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I7GgmrN9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7GgmrN9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7GgmrN9 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I7GgmrN9 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I7GgmrN9 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I7GgmrN9 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I7GgmrN9 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I7GgmrN9 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I7GgmrN9 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I7GgmrN9 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I7GgmrN9 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I7GgmrN9 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I7GgmrN9 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I7GgmrN9 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I7GgmrN9 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I7GgmrN9 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I7GgmrN9 [class^="socicon-"]:before,
.cid-u3I7GgmrN9 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u3I7GfsqlU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I7GfsqlU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7GfsqlU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7GfsqlU .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7GfsqlU .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7GfsqlU .container {
    padding: 0 16px;
  }
}
.cid-u3I7GfsqlU .row {
  justify-content: center;
}
.cid-u3I7GfsqlU .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7GfsqlU .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I7GfsqlU .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I7GfsqlU .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I7GfsqlU .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I7GfsqlU .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I7GfsqlU .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I7GfsqlU .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I7GfsqlU .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I7GfsqlU .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I7GfsqlU .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .item {
    margin-bottom: 32px;
  }
}
.cid-u3I7GfsqlU .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I7GfsqlU .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I7GfsqlU .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I7GfsqlU .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7GfsqlU .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I7GfsqlU .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I7GfsqlU .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I7GfsqlU .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I7GfsqlU .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I7GfsqlU .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I7GfsqlU .mbr-section-title {
  color: #000000;
}
.cid-u3I7GfsqlU .card-title {
  color: #fb0000;
}
.cid-u3I7GfsqlU .list {
  color: #000000;
}
.cid-u3I7GfsqlU .mbr-soc {
  color: #000000;
}
.cid-u3I7EFkFyI {
  z-index: 1000;
  width: 100%;
}
.cid-u3I7EFkFyI nav.navbar {
  position: fixed;
}
.cid-u3I7EFkFyI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7EFkFyI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3I7EFkFyI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3I7EFkFyI .dropdown-item:hover,
.cid-u3I7EFkFyI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-u3I7EFkFyI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3I7EFkFyI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3I7EFkFyI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3I7EFkFyI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3I7EFkFyI .nav-link {
  position: relative;
}
.cid-u3I7EFkFyI .container {
  display: flex;
  margin: auto;
}
.cid-u3I7EFkFyI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3I7EFkFyI .dropdown-menu,
.cid-u3I7EFkFyI .navbar.opened {
  background: #fafafa !important;
}
.cid-u3I7EFkFyI .nav-item:focus,
.cid-u3I7EFkFyI .nav-link:focus {
  outline: none;
}
.cid-u3I7EFkFyI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3I7EFkFyI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3I7EFkFyI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3I7EFkFyI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3I7EFkFyI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3I7EFkFyI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3I7EFkFyI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(250, 250, 250, 0.7);
}
.cid-u3I7EFkFyI .navbar.opened {
  transition: all 0.3s;
}
.cid-u3I7EFkFyI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3I7EFkFyI .navbar .navbar-logo img {
  width: auto;
}
.cid-u3I7EFkFyI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3I7EFkFyI .navbar.collapsed {
  justify-content: center;
}
.cid-u3I7EFkFyI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3I7EFkFyI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3I7EFkFyI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-u3I7EFkFyI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3I7EFkFyI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3I7EFkFyI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u3I7EFkFyI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3I7EFkFyI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3I7EFkFyI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3I7EFkFyI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3I7EFkFyI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3I7EFkFyI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3I7EFkFyI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3I7EFkFyI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u3I7EFkFyI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3I7EFkFyI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3I7EFkFyI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3I7EFkFyI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3I7EFkFyI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3I7EFkFyI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3I7EFkFyI .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3I7EFkFyI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3I7EFkFyI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3I7EFkFyI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3I7EFkFyI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3I7EFkFyI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3I7EFkFyI .dropdown-item.active,
.cid-u3I7EFkFyI .dropdown-item:active {
  background-color: transparent;
}
.cid-u3I7EFkFyI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3I7EFkFyI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3I7EFkFyI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3I7EFkFyI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u3I7EFkFyI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3I7EFkFyI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3I7EFkFyI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3I7EFkFyI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3I7EFkFyI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3I7EFkFyI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u3I7EFkFyI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3I7EFkFyI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7EFkFyI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3I7EFkFyI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3I7EFkFyI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7EFkFyI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3I7EFkFyI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3I7EFkFyI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3I7EFkFyI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3I7EFkFyI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3I7EFkFyI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3I7EFkFyI .navbar {
    height: 70px;
  }
  .cid-u3I7EFkFyI .navbar.opened {
    height: auto;
  }
  .cid-u3I7EFkFyI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3J4iSTMyq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pnomatik-ariza-bakim-servisi-ilg-hidrolik-3-800p-800x450.jpg");
}
.cid-u3J4iSTMyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3J4iSTMyq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u3J4iSTMyq .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3J4iSTMyq .container {
    padding: 0 16px;
  }
}
.cid-u3J4iSTMyq .content-wrapper {
  margin-bottom: 20%;
}
.cid-u3J4iSTMyq .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u3J4iSTMyq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u3J4iSTMyq .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u3J4iSTMyq .mbr-section-title {
  color: #000000;
}
.cid-u3J4iSTMyq .mbr-text {
  color: #fafafa;
  text-align: center;
}
.cid-u3J4iSTMyq .mbr-section-title,
.cid-u3J4iSTMyq .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-u3IjXOPFtV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u3IjXOPFtV .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u3IjYmDWiB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u3IjYmDWiB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3IjYmDWiB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u3IjYmDWiB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3IjYmDWiB .row {
  flex-direction: row-reverse;
}
.cid-u3IjYmDWiB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u3IjYmDWiB .text-wrapper {
    padding: 2rem;
  }
}
.cid-u3I7EK2TUZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u3I7EK2TUZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-u3I7EK2TUZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u3I7EK2TUZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u3I7EK2TUZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u3I7EK2TUZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u3I7EKJYbi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffaf5;
}
.cid-u3I7EKJYbi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7EKJYbi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7EKJYbi .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7EKJYbi .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u3I7EKJYbi .container {
    padding: 0 16px;
  }
}
.cid-u3I7EKJYbi .row {
  justify-content: center;
}
.cid-u3I7EKJYbi .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7EKJYbi .title-wrapper {
  margin-bottom: 32px;
}
.cid-u3I7EKJYbi .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .cid-u3I7EKJYbi .title-wrapper .title-wrap {
    display: inline;
  }
}
.cid-u3I7EKJYbi .title-wrapper .title-wrap img {
  height: 50px;
  width: 50px;
  border-radius: 0;
  object-fit: contain;
  margin-right: 25px;
}
@media (max-width: 1200px) {
  .cid-u3I7EKJYbi .title-wrapper .title-wrap img {
    margin: 0 0 25px 0;
  }
}
.cid-u3I7EKJYbi .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3I7EKJYbi .mbr-text {
  margin-bottom: 10px;
  color: #000000;
}
.cid-u3I7EKJYbi .mbr-section-btn .btn {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-u3I7EKJYbi .lists-wrapper {
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .lists-wrapper {
    margin: 0;
  }
}
.cid-u3I7EKJYbi .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .item {
    margin-bottom: 32px;
  }
}
.cid-u3I7EKJYbi .item .item-wrapper .card-box .card-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #979797;
  margin-bottom: 10px;
}
.cid-u3I7EKJYbi .item .item-wrapper .card-box .list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-u3I7EKJYbi .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 8px;
}
.cid-u3I7EKJYbi .social-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u3I7EKJYbi .social-wrapper .soc-item {
  margin-bottom: 16px;
}
.cid-u3I7EKJYbi .social-wrapper .soc-item a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1650px) {
  .cid-u3I7EKJYbi .social-wrapper .soc-item a {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .social-wrapper .soc-item a {
    flex-direction: row;
    align-items: inherit;
  }
}
.cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 10px;
}
@media (max-width: 1650px) {
  .cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 100%;
  background-color: #63cfbf;
  border: 1px solid #000000;
  transform: translate(-3px, -3px);
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #000000;
}
.cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  border: 1px solid #000000;
  pointer-events: none;
}
.cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap:hover .mbr-iconfont,
.cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap:focus .mbr-iconfont {
  transform: translate(0);
}
.cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap:hover::before,
.cid-u3I7EKJYbi .social-wrapper .soc-item a .icon-wrap:focus::before {
  transform: translate(0);
  border-width: 0 !important;
}
.cid-u3I7EKJYbi .social-wrapper .soc-item a .mbr-soc {
  margin-bottom: 0;
}
.cid-u3I7EKJYbi .mbr-copy {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3I7EKJYbi .mbr-section-title {
  color: #000000;
}
.cid-u3I7EKJYbi .card-title {
  color: #fb0000;
}
.cid-u3I7EKJYbi .list {
  color: #000000;
}
.cid-u3I7EKJYbi .mbr-soc {
  color: #000000;
}
.cid-u3I7ELJ2pL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3I7ELJ2pL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3I7ELJ2pL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3I7ELJ2pL .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u3I7ELJ2pL .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u3I7ELJ2pL .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u3I7ELJ2pL .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u3I7ELJ2pL .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u3I7ELJ2pL .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u3I7ELJ2pL .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u3I7ELJ2pL .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u3I7ELJ2pL .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u3I7ELJ2pL .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u3I7ELJ2pL .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u3I7ELJ2pL .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u3I7ELJ2pL .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u3I7ELJ2pL .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u3I7ELJ2pL [class^="socicon-"]:before,
.cid-u3I7ELJ2pL [class*=" socicon-"]:before {
  line-height: 55px;
}
