body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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: #0ef458 !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: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !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: #0ef458 !important;
  border-color: #0ef458 !important;
  color: #000301 !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: #07a43a !important;
  border-color: #07a43a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000301 !important;
  background-color: #07a43a !important;
  border-color: #07a43a !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: transparent;
  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: transparent!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: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #0ef458;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #07a43a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000301 !important;
  background-color: #0ef458 !important;
  border-color: #0ef458 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #ff6666 !important;
}
.text-success {
  color: #0ef458 !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: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #079535 !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: #d1fddf;
}
.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: #000000 !important;
  background: #ff6666 !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-spfHGsyrfu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/conference28-1920.jpg");
}
.cid-spfHGsyrfu .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-spfHGsyrfu .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-spfHGsyrfu .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-spfHGsyrfu .wrap-img {
  padding-bottom: 1rem;
}
.cid-spfHGsyrfu .wrap-img img {
  max-width: 100%;
}
.cid-spfHGsyrfu .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-spfskBm4Ae {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/instafluencia-1.png");
}
.cid-spfskBm4Ae .mbr-section-title,
.cid-spfskBm4Ae .mbr-text,
.cid-spfskBm4Ae .mbr-section-btn {
  text-align: center;
}
.cid-spfskBm4Ae .video-wrapper {
  margin: auto;
}
.cid-spfskBm4Ae .video-wrapper iframe {
  width: 100%;
}
.cid-spfskBm4Ae .mbr-section-title {
  color: #fafafa;
}
.cid-spfskBm4Ae .mbr-text,
.cid-spfskBm4Ae .mbr-section-btn {
  color: #fafafa;
}
.cid-sFu57kGUL7 {
  overflow-x: hidden !important;
}
.cid-sFu57kGUL7,
.cid-sFu57kGUL7 .scroll-wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-sFu57kGUL7 .mbr-section-title {
  color: #ffffff;
}
.cid-sFu57kGUL7 .mbr-section-title span {
  color: #6592e6;
}
.cid-sFu57kGUL7 .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-sFu57kGUL7 .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  -webkit-animation-duration: 30s !important;
  animation-duration: 30s;
  background-image: url("../../../assets/images/background10.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-sFu57kGUL7 .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-sFu57kGUL7 .mbr-overlay {
  z-index: 1;
}
.cid-sFu57kGUL7 .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-sFu3JSLNqk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sFu3JSLNqk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sFu3JSLNqk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFu3JSLNqk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sFu5RjHFW9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bg1.jpg");
}
.cid-sFu5RjHFW9 .mbr-section-title {
  margin-bottom: 25px;
}
.cid-sFu5RjHFW9 .mbr-section-btn {
  margin-top: 60px;
}
.cid-sFu5RjHFW9 .mbr-section-btn .btn {
  height: 60px;
  padding: 0 40px;
  font-weight: 700;
}
.cid-sFu5RjHFW9 .mbr-section-subtitle {
  opacity: .7;
  margin-bottom: 0;
  color: #919dab;
}
@media (min-width: 768px) {
  .cid-sFu5RjHFW9 .bottom__block {
    margin-top: 80px;
  }
}
.cid-sFu5RjHFW9 .bottom__card {
  margin-top: 30px;
  height: 100%;
  align-items: center;
}
.cid-sFu5RjHFW9 .bottom__card:first-child .separate {
  border-left: none;
}
.cid-sFu5RjHFW9 .bottom__card:last-child .separate2 {
  border-left: none;
}
.cid-sFu5RjHFW9 .bottom__card:nth-child(3) .separate2 {
  border-left: none;
}
.cid-sFu5RjHFW9 .bottom__card:nth-child(4) .separate {
  border-left: none;
}
.cid-sFu5RjHFW9 .mbr-text {
  text-align: center;
  font-weight: 500;
  margin-top: 25px;
  color: #000000;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .cid-sFu5RjHFW9 .mbr-text {
    margin: 25px 65px 0 !important;
  }
}
.cid-sFu5RjHFW9 .image {
  display: flex;
  justify-content: center;
}
.cid-sFu5RjHFW9 .image img {
  border-radius: 10px;
  object-fit: cover;
  width: 170px;
  height: 110px;
}
.cid-sFu5RjHFW9 .separate,
.cid-sFu5RjHFW9 .separate2 {
  border-left: 1px solid #e8eaed;
  height: 150px;
  position: absolute;
}
.cid-sFu5RjHFW9 .separate {
  left: 0;
}
.cid-sFu5RjHFW9 .separate2 {
  right: 0;
}
@media (max-width: 767px) {
  .cid-sFu5RjHFW9 .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-sFu5RjHFW9 .mbr-section-btn {
    margin-top: 30px;
  }
  .cid-sFu5RjHFW9 .separate,
  .cid-sFu5RjHFW9 .separate2 {
    border-left: none;
  }
}
.cid-sFu5RjHFW9 .mbr-section-subtitle,
.cid-sFu5RjHFW9 .mbr-section-btn {
  color: #000000;
}
.cid-sFuiOLwQUa {
  padding-top: 120px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sFuiOLwQUa .container {
  margin-bottom: 15%;
}
.cid-sFuiOLwQUa .content-container .btn-bgr {
  z-index: 0;
}
.cid-sFuiOLwQUa .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #9a0ca5;
}
.cid-sFuiOLwQUa .box-item {
  width: calc(33.3% - 5rem);
  padding: 2.5rem;
}
.cid-sFuiOLwQUa .box-item:first-child {
  background-color: #4284df;
  margin-top: -200px;
}
.cid-sFuiOLwQUa .box-item:nth-child(2) {
  background-color: #04367c;
}
.cid-sFuiOLwQUa .box-item:last-child {
  background-color: #0c57bf;
}
.cid-sFuiOLwQUa .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sFuiOLwQUa .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sFuiOLwQUa .box-list li:last-child {
  border-bottom: none;
}
.cid-sFuiOLwQUa .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sFuiOLwQUa .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sFuiOLwQUa .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sFuiOLwQUa .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-sFuiOLwQUa .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sFuiOLwQUa .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-sFuiOLwQUa .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sFuiOLwQUa H1 {
  text-align: center;
}
.cid-sFuiOLwQUa .mbr-text,
.cid-sFuiOLwQUa .mbr-section-btn {
  text-align: center;
}
.cid-sFud3eqgQ1 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sFud3eqgQ1 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-sFud3eqgQ1 .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #9a0ca5 75%);
}
.cid-sFu9h992wl {
  background-color: #000000;
}
.cid-sFu9h992wl .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFu9h992wl .carousel-item > div {
  width: 100%;
}
.cid-sFu9h992wl h4 {
  margin-top: 1.2rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-sFu9h992wl .mbr-iconfont {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: 0.7s;
}
.cid-sFu9h992wl .carousel-item.active,
.cid-sFu9h992wl .carousel-item-next,
.cid-sFu9h992wl .carousel-item-prev {
  display: flex;
}
.cid-sFu9h992wl .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-sFu9h992wl .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-sFu9h992wl .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-sFu9h992wl .carousel-controls a {
    width: 5%;
  }
}
.cid-sFu9h992wl .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-sFu9h992wl .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-sFu9h992wl .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-sFu9h992wl img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  opacity: 0.5;
}
.cid-sFu9h992wl li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-sFu9h992wl li.active {
  background-color: #e9204f;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-sFu9h992wl .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-sFu9h992wl ol {
  margin-bottom: 0;
}
.cid-sFu9h992wl .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-sFu9h992wl .carousel {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-sFu9h992wl {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 767px) {
  .cid-sFu9h992wl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cid-sFu9h992wl a {
  color: #fff;
  line-height: 1.5;
}
.cid-sFu9h992wl .wrapper-img {
  position: relative;
  width: 100%;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
.cid-sFu9h992wl .title-block {
  position: absolute;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sFu9h992wl .desk {
  color: #fff;
}
.cid-sFu9h992wl .signature {
  color: #fff;
}
.cid-sFu9h992wl .img-block:hover .title-block {
  transform: translateY(-40px);
}
.cid-sFu9h992wl .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.3;
  transform: scale(1.1);
}
.cid-sFu9h992wl .img-block:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sFu9h992wl .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-sFu9h992wl .img-card {
    margin-top: 2rem;
  }
}
.cid-sFugB30Nld {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sFugB30Nld .video-wrapper iframe {
  width: 100%;
}
.cid-sFugB30Nld .mbr-section-title,
.cid-sFugB30Nld .mbr-section-subtitle,
.cid-sFugB30Nld .mbr-text {
  text-align: center;
}
.cid-sFugB30Nld .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-sFugB30Nld .mbr-text {
  padding-top: 16px;
}
.cid-sFugZvCXSL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/conference28-1920.jpg");
}
.cid-sFugZvCXSL .title__block {
  margin-bottom: 40px;
}
.cid-sFugZvCXSL .mbr-text {
  margin-bottom: 0;
}
.cid-sFugZvCXSL .carousel-item {
  justify-content: center;
}
.cid-sFugZvCXSL .carousel-control-prev {
  left: -8%;
  justify-content: flex-start !important;
  width: 10%;
}
.cid-sFugZvCXSL .carousel-control-next {
  justify-content: flex-end !important;
  right: -8%;
  width: 10%;
}
.cid-sFugZvCXSL .carousel-controls a span {
  width: 56px;
  height: 56px;
  line-height: 36px;
  font-size: 18px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(25, 31, 35, 0.3);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-sFugZvCXSL .carousel-controls a:hover span {
  background: rgba(25, 31, 35, 0.6);
}
.cid-sFugZvCXSL .user_image {
  display: flex;
  width: 100%;
  height: 540px;
  margin: auto;
  perspective: 900px;
}
.cid-sFugZvCXSL .user_image img {
  transition: transform 0.5s;
  width: 100%;
  height: 95%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-sFugZvCXSL .user_image img:hover {
  transform: rotateX(-3deg);
}
@media (max-width: 1350px) {
  .cid-sFugZvCXSL .user {
    max-width: 87%;
  }
  .cid-sFugZvCXSL .carousel-control-prev {
    justify-content: center !important;
    left: -3%;
  }
  .cid-sFugZvCXSL .carousel-control-next {
    justify-content: center !important;
    right: -3%;
  }
}
@media (max-width: 991px) {
  .cid-sFugZvCXSL .user {
    max-width: 100%;
  }
  .cid-sFugZvCXSL .carousel-control-prev {
    left: -5%;
  }
  .cid-sFugZvCXSL .carousel-control-next {
    right: -5%;
  }
  .cid-sFugZvCXSL .user_image {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sFugZvCXSL .title__block {
    margin-bottom: 20px;
  }
  .cid-sFugZvCXSL .carousel-controls {
    display: none;
  }
}
.cid-spgcD7yl71 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-spgcD7yl71 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-spgcD7yl71 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-spgcD7yl71 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-spgcD7yl71 .panel-body,
.cid-spgcD7yl71 .card-header {
  padding: 1rem 0;
}
.cid-spgcD7yl71 .panel-title-edit {
  color: #000000;
}
.cid-spgdLXvq2A {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-spgdLXvq2A .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-spgdLXvq2A .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-spgdLXvq2A .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-spgdLXvq2A .panel-body,
.cid-spgdLXvq2A .card-header {
  padding: 1rem 0;
}
.cid-spgdLXvq2A .panel-title-edit {
  color: #000000;
}
.cid-spggbwO1cV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-spggbwO1cV .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-spggbwO1cV .mbr-section-subtitle {
  color: #232323;
  letter-spacing: 0.03em;
}
.cid-spggbwO1cV .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-spggbwO1cV .wrap-img {
  padding-bottom: 1rem;
}
.cid-spggbwO1cV .wrap-img img {
  max-width: 100%;
}
.cid-spggbwO1cV .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-spggbwO1cV .card-box > p {
  text-align: center;
}
.cid-spggbwO1cV .client-name,
.cid-spggbwO1cV .wrap-img {
  color: #000000;
}
.cid-spggheHTeM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-rymy5qoXtE .navbar {
  background: #000000;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rymy5qoXtE .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rymy5qoXtE a {
  font-style: normal;
}
.cid-rymy5qoXtE .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rymy5qoXtE .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-rymy5qoXtE .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rymy5qoXtE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rymy5qoXtE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rymy5qoXtE .nav-item:focus,
.cid-rymy5qoXtE .nav-link:focus {
  outline: none;
}
.cid-rymy5qoXtE .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rymy5qoXtE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rymy5qoXtE .menu-logo {
  margin-right: auto;
}
.cid-rymy5qoXtE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rymy5qoXtE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rymy5qoXtE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rymy5qoXtE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rymy5qoXtE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rymy5qoXtE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rymy5qoXtE .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rymy5qoXtE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rymy5qoXtE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rymy5qoXtE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rymy5qoXtE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rymy5qoXtE .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rymy5qoXtE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rymy5qoXtE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rymy5qoXtE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rymy5qoXtE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rymy5qoXtE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rymy5qoXtE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rymy5qoXtE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rymy5qoXtE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rymy5qoXtE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rymy5qoXtE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rymy5qoXtE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rymy5qoXtE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rymy5qoXtE button.navbar-toggler:focus {
  outline: none;
}
.cid-rymy5qoXtE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rymy5qoXtE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rymy5qoXtE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rymy5qoXtE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rymy5qoXtE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rymy5qoXtE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rymy5qoXtE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rymy5qoXtE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rymy5qoXtE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rymy5qoXtE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rymy5qoXtE .collapsed .btn {
  display: -webkit-flex;
}
.cid-rymy5qoXtE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rymy5qoXtE .collapsed .navbar-collapse.collapsing,
.cid-rymy5qoXtE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rymy5qoXtE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rymy5qoXtE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rymy5qoXtE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rymy5qoXtE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rymy5qoXtE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rymy5qoXtE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rymy5qoXtE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rymy5qoXtE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rymy5qoXtE .collapsed button.navbar-toggler {
  display: block;
}
.cid-rymy5qoXtE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rymy5qoXtE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rymy5qoXtE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rymy5qoXtE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rymy5qoXtE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rymy5qoXtE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rymy5qoXtE.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rymy5qoXtE img {
    height: 3.8rem !important;
  }
  .cid-rymy5qoXtE .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rymy5qoXtE .menu-wrap {
    flex-direction: column;
  }
  .cid-rymy5qoXtE .btn {
    display: -webkit-flex;
  }
  .cid-rymy5qoXtE button.navbar-toggler {
    display: block;
  }
  .cid-rymy5qoXtE .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rymy5qoXtE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rymy5qoXtE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rymy5qoXtE .navbar-collapse.collapsing,
  .cid-rymy5qoXtE .navbar-collapse.show {
    display: block !important;
  }
  .cid-rymy5qoXtE .navbar-collapse.collapsing .navbar-nav,
  .cid-rymy5qoXtE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rymy5qoXtE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rymy5qoXtE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rymy5qoXtE .navbar-collapse.collapsing .navbar-buttons,
  .cid-rymy5qoXtE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rymy5qoXtE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rymy5qoXtE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rymy5qoXtE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rymy5qoXtE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rymy5qoXtE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rymy5qoXtE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rymy5qoXtE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rymy5qoXtE .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rymy5qoXtE .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rymy5qoXtE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rymy5qoXtE .nav-link:hover,
.cid-rymy5qoXtE .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-rymy5HkPUS {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/mbr-1.jpg");
}
.cid-rymy5HkPUS .link {
  position: relative;
  letter-spacing: 2px;
}
.cid-rymy5HkPUS .link:after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-rymy5HkPUS .card {
  position: relative;
}
.cid-rymy5HkPUS .card:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.7;
  transition: all 0.6s;
}
.cid-rymy5HkPUS .card:hover:before {
  opacity: 0.9;
}
.cid-rymy5HkPUS .card-box {
  padding: 4rem 1rem;
  z-index: 2;
}
.cid-rymy5HkPUS .mbr-text {
  color: #000000;
}
.cid-rymy5RfJDx {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-rymy5RfJDx .mbr-text {
  color: #767676;
}
.cid-rymy5RfJDx .mbr-iconfont {
  color: #000000 !important;
  font-size: 3.5rem!important;
}
.cid-rymy5RfJDx .link {
  margin: 0;
}
.cid-rymy5RfJDx .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-rymy5RfJDx .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
@media (min-width: 767px) {
  .cid-rymy5RfJDx .card {
    display: flex;
    flex-direction: row;
  }
  .cid-rymy5RfJDx .mbr-iconfont {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rymy5RfJDx .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-rymy5RfJDx .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-rymy5RfJDx .card {
    margin-bottom: 2rem;
  }
}
.cid-rymy60wJRL {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rymy60wJRL h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-rymy60wJRL h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymy60wJRL h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymy60wJRL .mbr-text,
.cid-rymy60wJRL .mbr-section-btn {
  color: #767676;
}
.cid-sFunRJIzDE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sFunRJIzDE .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-sFunRJIzDE .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sFunRJIzDE .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #186dca;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sFunRJIzDE .logo > * {
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
}
.cid-sFunRJIzDE .logo img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sFunRJIzDE .col-md-3 {
    margin-bottom: 2rem;
  }
}
.cid-sFunRJIzDE .number {
  color: #186dca;
  position: relative;
  display: flex;
  text-align: center;
  border: 2px solid #e9e9e9;
  margin: auto;
  border-radius: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  line-height: 1.3;
}
.cid-sFunRJIzDE .period {
  display: block;
  padding-top: 2px;
  font-weight: 700;
}
.cid-sFunRJIzDE .dot {
  display: none;
}
.cid-sFunRJIzDE .countdown-cont {
  max-width: 900px;
  margin: 0 auto;
}
.cid-sFunRJIzDE .countdown-cont .countdown {
  color: #000000;
}
@media (max-width: 550px) {
  .cid-sFunRJIzDE .number-wrap {
    min-width: auto;
  }
  .cid-sFunRJIzDE .number {
    width: auto;
    height: auto;
    border: none;
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .cid-sFunRJIzDE .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-sFunRJIzDE .period {
    font-size: 1rem;
  }
}
@media (max-width: 300px) {
  .cid-sFunRJIzDE .number {
    font-size: 25px;
  }
  .cid-sFunRJIzDE .period {
    font-size: 0.8rem;
  }
}
.cid-sFunRJIzDE .mbr-section-title,
.cid-sFunRJIzDE .line-wrap {
  text-align: center;
}
.cid-rymy6kh4LK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rymy6kh4LK .card-box {
  padding: 0 1.6rem;
}
@media (min-width: 767px) {
  .cid-rymy6kh4LK .container {
    padding: 0 1.6rem;
  }
}
@media (max-width: 767px) {
  .cid-rymy6kh4LK .container {
    padding: 0 1.3rem;
  }
  .cid-rymy6kh4LK .mbr-section-btn {
    opacity: 1;
  }
  .cid-rymy6kh4LK .card-wrapper {
    padding: 4rem 0rem 4rem 0rem;
  }
  .cid-rymy6kh4LK .card {
    padding: 0rem!important;
    padding-bottom: 1rem!important;
  }
}
@media (min-width: 992px) {
  .cid-rymy6kh4LK .card:hover .card-wrapper {
    transform: rotateY(360deg);
  }
  .cid-rymy6kh4LK .card:hover .mbr-section-btn {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .cid-rymy6kh4LK .card {
    padding-bottom: 1rem!important;
  }
  .cid-rymy6kh4LK .card .mbr-section-btn {
    opacity: 1;
  }
}
.cid-rymy6kh4LK .row {
  justify-content: center;
}
.cid-rymy6kh4LK .card {
  padding: 0.5rem!important;
}
.cid-rymy6kh4LK .mbr-section-btn {
  padding-top: 2rem;
  transition: all 1s;
  opacity: 0;
}
.cid-rymy6kh4LK .mbr-iconfont {
  color: #ffffff !important;
  font-size: 3.5rem!important;
}
.cid-rymy6kh4LK .card1 {
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-rymy6kh4LK .card2 {
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-rymy6kh4LK .card3 {
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-rymy6kh4LK .card4 {
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-rymy6kh4LK h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-rymy6kh4LK p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-rymy6kh4LK .card-wrapper {
  transition: all 1s;
  height: 100%;
  padding: 4rem 2rem 4rem 2rem;
  background-size: cover;
}
.cid-rymy6kh4LK .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
.cid-rymy6Tfy21 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rymy6Tfy21 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-rymy6Tfy21 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymy6Tfy21 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymy6Tfy21 .mbr-text,
.cid-rymy6Tfy21 .mbr-section-btn {
  color: #767676;
}
.cid-rymy71ybPF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rymy71ybPF .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rymy71ybPF .mbr-shop .row {
  margin: 0;
}
.cid-rymy71ybPF .container {
  padding: 0rem 0.5rem;
}
.cid-rymy71ybPF .col-md-12 {
  padding: 0;
}
.cid-rymy71ybPF .mbr-shop .btn-sm {
  margin: 0.2rem;
}
.cid-rymy71ybPF .oldprice {
  padding-left: .8rem!important;
  color: #767676;
  text-decoration: line-through;
}
.cid-rymy71ybPF .shopItemsModal_wraper {
  left: 0;
}
.cid-rymy71ybPF .mbr-shop .btn-secondary {
  background: transparent!important;
  color: #767676 !important;
  border: none;
  border-top: 1px solid #767676;
  border-color: #767676 !important;
  padding-top: .8rem;
  border-radius: 0;
  margin: 0rem;
  margin-top: 0.4rem;
}
.cid-rymy71ybPF .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rymy71ybPF .mbr-shop .galleryItem .sidebar_wraper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cid-rymy71ybPF .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rymy71ybPF .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rymy71ybPF .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rymy71ybPF .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rymy71ybPF .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rymy71ybPF .mbr-shop .hide-modal {
  display: none;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rymy71ybPF .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rymy71ybPF .mbr-shop .filter-by-pu,
.cid-rymy71ybPF .mbr-shop .filter-by-pd,
.cid-rymy71ybPF .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rymy71ybPF .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rymy71ybPF .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rymy71ybPF .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-rymy71ybPF .mbr-shop .galleryItem h4,
.cid-rymy71ybPF .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rymy71ybPF .mbr-shop .galleryItem h5,
.cid-rymy71ybPF .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-rymy71ybPF .mbr-shop .galleryItem p,
.cid-rymy71ybPF .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-rymy71ybPF .mbr-shop .item-button {
  text-align: center;
}
.cid-rymy71ybPF .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rymy71ybPF .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rymy71ybPF .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rymy71ybPF .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rymy71ybPF .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-rymy71ybPF .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rymy71ybPF .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rymy71ybPF .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rymy71ybPF .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #29a7c6;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-item__hided h4,
.cid-rymy71ybPF .mbr-shop .mbr-gallery-item__hided h5,
.cid-rymy71ybPF .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rymy71ybPF .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rymy71ybPF .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-rymy71ybPF .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rymy71ybPF .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rymy71ybPF .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rymy71ybPF .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rymy71ybPF .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-rymy71ybPF .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rymy71ybPF .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rymy71ybPF .mbr-shop .range-controls {
  position: relative;
}
.cid-rymy71ybPF .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rymy71ybPF .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rymy71ybPF .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rymy71ybPF .mbr-shop .toggle:hover,
.cid-rymy71ybPF .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rymy71ybPF .mbr-shop .min-toggle {
  left: 0;
}
.cid-rymy71ybPF .mbr-shop .max-toggle {
  right: 0;
}
.cid-rymy71ybPF .mbr-shop .hided-by-price {
  display: none;
}
.cid-rymy71ybPF .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rymy71ybPF .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rymy71ybPF .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rymy71ybPF .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rymy71ybPF .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rymy71ybPF .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rymy71ybPF .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rymy71ybPF .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rymy71ybPF .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rymy71ybPF .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rymy71ybPF .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rymy71ybPF .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rymy71ybPF .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rymy71ybPF .mbr-shop .shop-items .onsale,
.cid-rymy71ybPF .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rymy71ybPF .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rymy71ybPF .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rymy71ybPF .mbr-shop .price-range {
  display: inline-block;
}
.cid-rymy71ybPF .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rymy71ybPF .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rymy71ybPF .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rymy71ybPF .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rymy71ybPF .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rymy71ybPF .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rymy71ybPF .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rymy71ybPF .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rymy71ybPF .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rymy71ybPF .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rymy71ybPF .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rymy71ybPF .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rymy71ybPF .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rymy71ybPF .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rymy71ybPF .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rymy71ybPF .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-rymy71ybPF .wrapper-shop-items {
    order: 1;
  }
  .cid-rymy71ybPF .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-rymy71ybPF .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rymy71ybPF .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rymy71ybPF .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rymy71ybPF .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rymy71ybPF .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rymy71ybPF .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rymy71ybPF .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rymy71ybPF .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rymy71ybPF .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rymy71ybPF .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rymy71ybPF .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-rymy71ybPF .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-rymy71ybPF .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-rymy71ybPF .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
.cid-rymy71ybPF .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rymy71ybPF .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
@media (min-width: 1200px) {
  .cid-rymy71ybPF .mbr-gallery-item {
    width: 33.3%!important;
  }
}
.cid-rymy7yLcr2 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rymy7yLcr2 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-rymy7yLcr2 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-rymy7yLcr2 .image-block:hover:before {
  opacity: 0.4;
}
.cid-rymy7yLcr2 .image-block:hover .wrap {
  opacity: 1;
}
.cid-rymy7yLcr2 .image-block:hover img {
  transform: scale(1.05);
}
.cid-rymy7yLcr2 h4 {
  letter-spacing: 2px;
}
.cid-rymy7yLcr2 figcaption {
  position: relative;
}
.cid-rymy7yLcr2 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-rymy7yLcr2 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-rymy7yLcr2 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-rymy7yLcr2 .image-block {
    height: 400px;
  }
}
.cid-rymy7KcyeA {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rymy7KcyeA h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-rymy7KcyeA h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymy7KcyeA h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymy7KcyeA .mbr-text,
.cid-rymy7KcyeA .mbr-section-btn {
  color: #767676;
}
.cid-rymy80P2mt {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rymy80P2mt .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rymy80P2mt .mbr-author-desc {
  display: block;
}
.cid-rymy80P2mt .testimonial-photo {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-rymy80P2mt .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rymy80P2mt .card-footer {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.cid-rymy80P2mt .panel-item {
  z-index: 3;
  position: relative;
}
.cid-rymy80P2mt .name {
  padding-left: 1rem;
  margin: auto 0;
}
.cid-rymy80P2mt .mbr-testimonial {
  background-image: url("../../../assets/images/background2.jpg");
  background-size: cover;
  padding: 8rem;
}
.cid-rymy80P2mt .mbr-testimonial:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: white;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}
.cid-rymy80P2mt .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-rymy80P2mt .mbr-testimonial .card-footer {
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 767px) {
  .cid-rymy80P2mt .mbr-testimonial {
    padding: 2rem;
  }
  .cid-rymy80P2mt .card-footer {
    flex-direction: column;
  }
  .cid-rymy80P2mt .name {
    padding-left: 0rem;
  }
  .cid-rymy80P2mt .testimonial-photo {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-rymy8etHBG {
  padding-top: 210px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/mbr13.jpg");
}
@media (max-width: 992px) {
  .cid-rymy8etHBG {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media (max-width: 576px) {
  .cid-rymy8etHBG {
    padding-top: 98px;
    padding-bottom: 98px;
  }
}
.cid-rymy8etHBG .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-rymy8etHBG .icon-wrap:hover {
  transform: scale(1.04);
}
.cid-rymy8etHBG .icon-wrap span {
  padding-left: 8px;
}
.cid-rymy8etHBG .mbr-media span {
  font-size: 36px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-rymy8etHBG .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rymy8etHBG .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rymy8etHBG .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rymy8etHBG .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rymy8etHBG a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rymy8etHBG a.close:hover {
  color: #ffffff;
}
.cid-rymy8uJF0T {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rymy8uJF0T .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rymy8uJF0T .btn-black {
  background: black!important;
  border-radius: 6px;
}
.cid-rymy8uJF0T .btn-black:hover {
  background: gray!important;
  border-color: gray!important;
}
.cid-rymy8uJF0T .media-content {
  padding-left: 2rem;
}
.cid-rymy8uJF0T textarea {
  min-height: 150px;
}
.cid-rymy8uJF0T .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #767676;
  top: 1rem;
  font-size: 1.2rem;
}
.cid-rymy8uJF0T .form-control,
.cid-rymy8uJF0T .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-rymy8uJF0T .form-control input::-webkit-input-placeholder,
.cid-rymy8uJF0T .field-input input::-webkit-input-placeholder,
.cid-rymy8uJF0T .form-control textarea::-webkit-input-placeholder,
.cid-rymy8uJF0T .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-rymy8uJF0T .form-control input:-moz-placeholder,
.cid-rymy8uJF0T .field-input input:-moz-placeholder,
.cid-rymy8uJF0T .form-control textarea:-moz-placeholder,
.cid-rymy8uJF0T .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-rymy8uJF0T .form-control:hover,
.cid-rymy8uJF0T .field-input:hover,
.cid-rymy8uJF0T .form-control:focus,
.cid-rymy8uJF0T .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rymy8uJF0T .form-control:hover input::-webkit-input-placeholder,
.cid-rymy8uJF0T .field-input:hover input::-webkit-input-placeholder,
.cid-rymy8uJF0T .form-control:focus input::-webkit-input-placeholder,
.cid-rymy8uJF0T .field-input:focus input::-webkit-input-placeholder,
.cid-rymy8uJF0T .form-control:hover textarea::-webkit-input-placeholder,
.cid-rymy8uJF0T .field-input:hover textarea::-webkit-input-placeholder,
.cid-rymy8uJF0T .form-control:focus textarea::-webkit-input-placeholder,
.cid-rymy8uJF0T .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rymy8uJF0T .form-control:hover input:-moz-placeholder,
.cid-rymy8uJF0T .field-input:hover input:-moz-placeholder,
.cid-rymy8uJF0T .form-control:focus input:-moz-placeholder,
.cid-rymy8uJF0T .field-input:focus input:-moz-placeholder,
.cid-rymy8uJF0T .form-control:hover textarea:-moz-placeholder,
.cid-rymy8uJF0T .field-input:hover textarea:-moz-placeholder,
.cid-rymy8uJF0T .form-control:focus textarea:-moz-placeholder,
.cid-rymy8uJF0T .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-rymy8uJF0T .jq-number__spin:hover,
.cid-rymy8uJF0T .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rymy8uJF0T .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rymy8uJF0T .jq-selectbox li,
.cid-rymy8uJF0T .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rymy8uJF0T .jq-selectbox li:hover,
.cid-rymy8uJF0T .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-rymy8uJF0T .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rymy8uJF0T .jq-number__spin.minus:hover:after,
.cid-rymy8uJF0T .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rymy8uJF0T .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rymy8uJF0T .jq-number__spin.minus:after,
.cid-rymy8uJF0T .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rymy8uJF0T input::-webkit-clear-button {
  display: none;
}
.cid-rymy8uJF0T input::-webkit-inner-spin-button {
  display: none;
}
.cid-rymy8uJF0T input::-webkit-outer-spin-button {
  display: none;
}
.cid-rymy8uJF0T input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rymy8uJF0T .mbr-text,
.cid-rymy8uJF0T .mbr-section-btn {
  color: #767676;
}
.cid-rymy8uJF0T .text2,
.cid-rymy8uJF0T .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-rymy8uJF0T .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
}
.cid-rymy8FsiaH .google-map {
  height: 30rem;
  position: relative;
  filter: grayscale(1);
}
.cid-rymy8FsiaH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rymy8FsiaH .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rymy8FsiaH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rymy8FsiaH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rymy9c2h93 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #767676;
}
.cid-rymy9c2h93 img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.cid-rymy9c2h93 .img-wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-rymy9c2h93 .img-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-rymy9c2h93 .img-wrap:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: black;
  opacity: 0;
}
.cid-rymy9c2h93 .img-wrap:hover:before {
  opacity: 0.2;
}
.cid-rymy9c2h93 .img-wrap:hover span {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-rymy9c2h93 .col-lg-x {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-rymy9c2h93 .item {
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .cid-rymy9c2h93 .item {
    padding: 0.5rem;
  }
  .cid-rymy9c2h93 .row {
    padding: 0 0.5rem;
  }
}
.cid-rymy9c2h93 .btn {
  border-radius: 0;
}
.cid-rymy9c2h93 .mbr-iconfont {
  font-size: 1rem!important;
}
.cid-rymy9wusLz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
