body {
  font-family: Urbanist;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.5rem;
  line-height: 1.24;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.63;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  line-height: 1.28;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((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: #212121 !important;
}
.bg-success {
  background-color: #fe5d49 !important;
}
.bg-info {
  background-color: #b4b8ff !important;
}
.bg-warning {
  background-color: #ffdd0f !important;
}
.bg-danger {
  background-color: #a28b00 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #212121 !important;
  border-color: #212121 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffaa05 !important;
  border-color: #ffaa05 !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: #ad7200 !important;
  border-color: #ad7200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ad7200 !important;
  border-color: #ad7200 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b4b8ff !important;
  border-color: #b4b8ff !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: #5d66ff !important;
  border-color: #5d66ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5d66ff !important;
  border-color: #5d66ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #fe5d49 !important;
  border-color: #fe5d49 !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: #ef1c01 !important;
  border-color: #ef1c01 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ef1c01 !important;
  border-color: #ef1c01 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffdd0f !important;
  border-color: #ffdd0f !important;
  color: #0f0d00 !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: #ffffff !important;
  background-color: #b79d00 !important;
  border-color: #b79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #0f0d00 !important;
  background-color: #b79d00 !important;
  border-color: #b79d00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a28b00 !important;
  border-color: #a28b00 !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: #4b4100 !important;
  border-color: #4b4100 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #4b4100 !important;
  border-color: #4b4100 !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: #111111 !important;
  border-color: #111111 !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: #212121;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #212121 !important;
  border-color: #212121 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffaa05;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ad7200 !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: #ffaa05 !important;
  border-color: #ffaa05 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b4b8ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5d66ff !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: #b4b8ff !important;
  border-color: #b4b8ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fe5d49;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ef1c01 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fe5d49 !important;
  border-color: #fe5d49 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdd0f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b79d00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #0f0d00 !important;
  background-color: #ffdd0f !important;
  border-color: #ffdd0f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a28b00;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #4b4100 !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: #a28b00 !important;
  border-color: #a28b00 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #111111;
}
.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: #111111 !important;
  border-color: #111111 !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: #212121 !important;
}
.text-secondary {
  color: #ffaa05 !important;
}
.text-success {
  color: #fe5d49 !important;
}
.text-info {
  color: #b4b8ff !important;
}
.text-warning {
  color: #ffdd0f !important;
}
.text-danger {
  color: #a28b00 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #111111 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9e6800 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #e01a01 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4e57ff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a89000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3c3300 !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: #212121;
}
.nav-tabs .nav-link:not(.active) {
  color: #111111;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b4b8ff;
}
.alert-warning {
  background-color: #ffdd0f;
}
.alert-danger {
  background-color: #a28b00;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #212121;
  border-color: #212121;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #212121;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d3d3d3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffadb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffe022;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.63;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #212121 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  line-height: 1.63;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #212121;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #212121;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #212121;
}
.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: #212121;
  border-bottom-color: #212121;
}
.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: #212121 !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: #ffaa05 !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='%23212121' %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;
}
.container {
  max-width: 1200px;
}
.btn {
  box-shadow: none;
  padding: 14px 28px;
  line-height: 1;
}
.label-text {
  letter-spacing: 2px;
}
.cid-sVqovYLC6a {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sVqovYLC6a .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-sVqovYLC6a .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sVqovYLC6a .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sVqovYLC6a .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sVqovYLC6a .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sVqovYLC6a .container {
    padding: 0 1rem;
  }
}
.cid-sVqovYLC6a .menu-tite {
  background: #212121;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #ffffff;
}
.cid-sVqovYLC6a .nav-link {
  position: relative;
}
.cid-sVqovYLC6a .nav-link:hover {
  color: #b4b8ff !important;
}
.cid-sVqovYLC6a nav.navbar {
  position: fixed;
}
.cid-sVqovYLC6a .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f8f9fc;
}
.cid-sVqovYLC6a .navbar.opened {
  transition: all 0.3s;
}
.cid-sVqovYLC6a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sVqovYLC6a .navbar .navbar-logo img {
  width: auto;
}
.cid-sVqovYLC6a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVqovYLC6a .navbar.collapsed {
  justify-content: center;
}
.cid-sVqovYLC6a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVqovYLC6a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVqovYLC6a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sVqovYLC6a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVqovYLC6a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVqovYLC6a .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-sVqovYLC6a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVqovYLC6a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sVqovYLC6a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sVqovYLC6a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVqovYLC6a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVqovYLC6a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVqovYLC6a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVqovYLC6a .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-sVqovYLC6a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sVqovYLC6a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVqovYLC6a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVqovYLC6a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sVqovYLC6a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sVqovYLC6a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sVqovYLC6a .navbar.navbar-short {
  min-height: 60px;
}
.cid-sVqovYLC6a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sVqovYLC6a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sVqovYLC6a .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-sVqovYLC6a .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sVqovYLC6a .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sVqovYLC6a .dropdown-item:hover,
.cid-sVqovYLC6a .dropdown-item:focus {
  background: #212121 !important;
  color: white !important;
}
.cid-sVqovYLC6a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sVqovYLC6a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sVqovYLC6a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sVqovYLC6a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sVqovYLC6a .dropdown-menu,
.cid-sVqovYLC6a .navbar.opened {
  background: #f8f9fc !important;
}
.cid-sVqovYLC6a .nav-item:focus,
.cid-sVqovYLC6a .nav-link:focus {
  outline: none;
}
.cid-sVqovYLC6a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sVqovYLC6a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVqovYLC6a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sVqovYLC6a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sVqovYLC6a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVqovYLC6a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVqovYLC6a .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sVqovYLC6a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVqovYLC6a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVqovYLC6a .dropdown-item.active,
.cid-sVqovYLC6a .dropdown-item:active {
  background-color: transparent;
}
.cid-sVqovYLC6a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVqovYLC6a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVqovYLC6a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVqovYLC6a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f8f9fc;
}
.cid-sVqovYLC6a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVqovYLC6a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVqovYLC6a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sVqovYLC6a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sVqovYLC6a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sVqovYLC6a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fe5d49;
}
.cid-sVqovYLC6a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sVqovYLC6a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVqovYLC6a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sVqovYLC6a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sVqovYLC6a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVqovYLC6a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sVqovYLC6a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sVqovYLC6a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sVqovYLC6a .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sVqovYLC6a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sVqovYLC6a .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-sVqovYLC6a .navbar {
    height: 70px;
  }
  .cid-sVqovYLC6a .navbar.opened {
    height: auto;
  }
  .cid-sVqovYLC6a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVqoGOHt9R {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background1-1920x1080.png");
}
.cid-sVqoGOHt9R .row {
  align-items: center;
}
.cid-sVqoGOHt9R .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sVqoGOHt9R .image-wrapper {
    padding: 0px 1rem 1rem 1rem;
  }
}
.cid-sVqoGOHt9R .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sVqoGOHt9R .header-text {
  padding-right: 50px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-sVqoGOHt9R .header-text {
    padding-right: 0;
  }
}
.cid-sVqoGOHt9R .label-text {
  width: 100%;
  color: #111111;
}
.cid-sVqoGOHt9R .mbr-section-title {
  width: 100%;
  margin-bottom: 8px;
  color: #fe5d49;
}
.cid-sVqoGOHt9R .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-sVqoGOHt9R .contacts-text {
  color: #111111;
  letter-spacing: inherit;
  margin-bottom: 20px;
  width: 100%;
}
.cid-sVqoGOHt9R .icons-menu {
  margin-left: -8px;
  width: 100%;
}
.cid-sVqoGOHt9R .iconfont-wrapper {
  color: #111111 !important;
}
.cid-sVqoGOHt9R .iconfont-wrapper:hover {
  color: #212121 !important;
}
.cid-sVqoGOHt9R .mbr-iconfont {
  padding: 5px 8px;
  font-size: 15px;
}
.cid-sVqoGOHt9R .mbr-text,
.cid-sVqoGOHt9R .mbr-section-btn {
  color: #373737;
}
.cid-sVqGwCF8K0 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #555555;
}
.cid-sVqGwCF8K0 H3 {
  color: #ffffff;
}
.cid-sVqGwCF8K0 H4 {
  color: #d58f76;
}
.cid-sVqGwCF8K0 img {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-sVqIanKscf {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sVqIanKscf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sVqIanKscf .image-wrapper {
   /* display: none;*/
  }
}
.cid-sVqIanKscf .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sVqIanKscf .label-text {
  width: 100%;
  padding: 9px 0;
  margin-bottom: 12px;
}
.cid-sVqIanKscf .label {
  padding: 9px 18px;
  background: #ffdd0f;
  border-radius: 20px;
}
.cid-sVqIanKscf .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sVqIanKscf .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 22px;
}
.cid-sVqIanKscf .link-wrap {
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sVqIanKscf .link-wrap {
    display: flex;
    justify-content: center;
  }
}
.cid-sVqIanKscf .link-wrap a {
  position: relative;
  padding: 0 !important;
}
.cid-sVqIanKscf .link-wrap a:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sVqIanKscf .link-wrap a:before {
  content: '';
  position: absolute;
  color: currentColor;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sVqIanKscf .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sVqIanKscf .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sVqIanKscf .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sVqIanKscf .mbr-text,
.cid-sVqIanKscf .mbr-section-btn {
  color: #1a1a1a;
}
.cid-sVqJcaPbJM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f9fc;
}
.cid-sVqJcaPbJM .row {
  flex-direction: row-reverse;
}
.cid-sVqJcaPbJM .row {
  align-items: center;
}
.cid-sVqJcaPbJM .img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  /*background-image: url("../../../assets/images/features19.png");*/
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJM .img-item {
    padding: 0;
  }
}
.cid-sVqJcaPbJM .img-item img {
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJM .text-col {
    margin-top: 45px;
    order: 5;
  }
}
@media (min-width: 992px) {
  .cid-sVqJcaPbJM .text-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sVqJcaPbJM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sVqJcaPbJM .text-wrapper {
    padding: 0 100px 0 75px;
    padding: 0 75px 0 100px;
  }
}
.cid-sVqJcaPbJM .icon-wrap {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJM .icon-wrap {
    justify-content: center;
  }
}
.cid-sVqJcaPbJM .icon-box {
  background: #ffdd0f;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 17px;
  border-radius: 50%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVqJcaPbJM .icon-box .mbr-iconfont {
  font-size: 16px;
  color: #0f0d00;
}
.cid-sVqJcaPbJM .mbr-section-title {
  margin-bottom: 36px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sVqJcaPbJM .mbr-text {
  color: #555555;
  letter-spacing: inherit;
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJM .mbr-text {
    text-align: center !important;
  }
}
.cid-sVqJcaPbJM .btn-container {
  width: 100%;
}
.cid-sVqJcaPbJM .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sVqJcaPbJM .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sVqJcaPbJM .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sVqJcaPbJM .name-text {
  color: #212121;
  text-align: left;
}
.cid-sVqOP9fjbS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sVqOP9fjbS .mbr-media {
  position: relative;
  width: 100%;
  display: flex;
}
.cid-sVqOP9fjbS .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sVqOP9fjbS .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-sVqOP9fjbS .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  min-width: 65px;
  min-height: 65px;
  border-radius: 50%;
  align-items: center;
}
.cid-sVqOP9fjbS .icon-wrap a:hover {
  background-image: none !important;
}
.cid-sVqOP9fjbS .icon-wrap span {
  margin-left: 5px;
}
.cid-sVqOP9fjbS .box {
  height: 500px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sVqOP9fjbS .box {
    height: 300px;
  }
}
.cid-sVqOP9fjbS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sVqOP9fjbS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sVqOP9fjbS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sVqOP9fjbS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  border: 2px solid #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sVqOP9fjbS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sVqOP9fjbS .mbr-section-subtitle {
  color: #555555;
}
.cid-sVqK4F1E86 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f9fc;
}
.cid-sVqK4F1E86 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sVqK4F1E86 .image-wrapper {
    /*display: none;*/
  }
}
.cid-sVqK4F1E86 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sVqK4F1E86 .label-text {
  width: 100%;
  padding: 9px 0;
  margin-bottom: 12px;
}
.cid-sVqK4F1E86 .label {
  padding: 9px 18px;
  background: #ffdd0f;
  border-radius: 20px;
}
.cid-sVqK4F1E86 .mbr-section-title {
  margin-bottom: 12px;
  color: #373737;
}
.cid-sVqK4F1E86 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 22px;
}
.cid-sVqK4F1E86 .link-wrap {
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sVqK4F1E86 .link-wrap {
    display: flex;
    justify-content: center;
  }
}
.cid-sVqK4F1E86 .link-wrap a {
  position: relative;
  padding: 0 !important;
}
.cid-sVqK4F1E86 .link-wrap a:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sVqK4F1E86 .link-wrap a:before {
  content: '';
  position: absolute;
  color: currentColor;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sVqK4F1E86 .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sVqK4F1E86 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sVqK4F1E86 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sVqK4F1E86 .mbr-text,
.cid-sVqK4F1E86 .mbr-section-btn {
  color: #212121;
  text-align: left;
}
.cid-sVqMcRwBjq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f9fc;
}
.cid-sVqMcRwBjq .row {
  align-items: center;
}
.cid-sVqMcRwBjq .img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  /* background-image: url("../../../assets/images/features21.png"); */
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .cid-sVqMcRwBjq .img-item {
    padding: 0;
  }
}
.cid-sVqMcRwBjq .img-item img {
 /*  height: auto; */
 display: block !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sVqMcRwBjq .text-col {
    margin-top: 45px;
    order: 5;
  }
}
@media (min-width: 992px) {
  .cid-sVqMcRwBjq .text-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sVqMcRwBjq .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sVqMcRwBjq .text-wrapper {
    padding: 0 75px 0 100px;
  }
}
.cid-sVqMcRwBjq .icon-wrap {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sVqMcRwBjq .icon-wrap {
    justify-content: center;
  }
}
.cid-sVqMcRwBjq .icon-box {
  background: #ff1f25;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 17px;
  border-radius: 50%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVqMcRwBjq .icon-box .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-sVqMcRwBjq .mbr-section-title {
  margin-bottom: 36px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sVqMcRwBjq .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sVqMcRwBjq .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-sVqMcRwBjq .mbr-text {
    text-align: center !important;
  }
}
.cid-sVqMcRwBjq .item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  width: 100%;
}
.cid-sVqMcRwBjq .item-icon-box {
  margin-right: 16px;
}
.cid-sVqMcRwBjq .item-icon-box .mbr-iconfont {
  font-size: 18px;
  color: #fe5d49;
}
.cid-sVqMcRwBjq .text-box {
  flex-grow: 1;
}
.cid-sVqMcRwBjq .btn-container {
  width: 100%;
}
.cid-sVqMcRwBjq .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sVqMcRwBjq .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sVqMcRwBjq .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sVqMcRwBjq .mbr-section-title,
.cid-sVqMcRwBjq .mbr-section-btn {
  color: #373737;
}
.cid-sVqMcRwBjq .name-text {
  color: #212121;
  text-align: right;
}
.cid-sVqUAyORuL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f8f9fc;
}
.cid-sVqUAyORuL .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sVqUAyORuL .item:focus,
.cid-sVqUAyORuL span:focus {
  outline: none;
}
.cid-sVqUAyORuL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sVqUAyORuL .item {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 30px;
  }
}
.cid-sVqUAyORuL .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .cid-sVqUAyORuL .item-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
}
.cid-sVqUAyORuL .item-content {
  padding: 0 1rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-sVqUAyORuL .mbr-section-btn {
  margin-top: auto !important;
  width: 100%;
}
.cid-sVqUAyORuL .mbr-section-title,
.cid-sVqUAyORuL .mbr-section-subtitle {
  color: #111111;
}
.cid-sVqUAyORuL .mbr-text {
  color: #212121;
  font-style: italic;
}
.cid-sVqUAyORuL .item-subtitle {
  text-align: center;
}
.cid-sVqUAyORuL .item-img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  display: flex;
  margin-bottom: 24px;
}
.cid-sVqUAyORuL .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.cid-sVqUAyORuL .mbr-section-head {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .cid-sVqUAyORuL .mbr-section-head {
    margin-bottom: 90px;
  }
}
.cid-sVqN9DqjAE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sVqN9DqjAE .row {
  flex-direction: row-reverse;
}
.cid-sVqN9DqjAE .mbr-media {
  position: relative;
  width: 100%;
  display: flex;
}
.cid-sVqN9DqjAE .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.cid-sVqN9DqjAE .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-sVqN9DqjAE .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  min-width: 65px;
  min-height: 65px;
  border-radius: 50%;
  align-items: center;
}
.cid-sVqN9DqjAE .icon-wrap a:hover {
  background-image: none !important;
}
.cid-sVqN9DqjAE .icon-wrap span {
  margin-left: 5px;
}
.cid-sVqN9DqjAE .box {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sVqN9DqjAE .box {
    height: 200px;
  }
}
.cid-sVqN9DqjAE .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sVqN9DqjAE .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sVqN9DqjAE .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sVqN9DqjAE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  border: 2px solid #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sVqN9DqjAE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sVqN9DqjAE .col-text {
  display: flex;
  align-items: center;
  padding: 0 90px;
}
@media (max-width: 991px) {
  .cid-sVqN9DqjAE .col-text {
    padding: 50px 0.75rem 0;
  }
}
.cid-sVqN9DqjAE .mbr-section-subtitle {
  color: #555555;
  padding-top: 12px;
}
.cid-sVqN9DqjAE .item-container {
  width: 100%;
}
.cid-sVqN9DqjAE .item {
  display: flex;
  margin-top: 32px;
  text-align: left;
}
.cid-sVqN9DqjAE .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-sVqN9DqjAE .item {
    flex-direction: column;
    text-align: center;
  }
}
.cid-sVqN9DqjAE .icon-box {
  background: #0057fc;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sVqN9DqjAE .icon-box {
    margin: 0 auto 24px;
  }
}
.cid-sVqN9DqjAE .text-box {
  flex-grow: 1;
}
.cid-sVqN9DqjAE .number-text {
  color: #ffffff;
}
.cid-sVqN9DqjAE .icon-text {
  color: #212121;
  text-align: left;
}
.cid-sVqN9DqjAE .mbr-section-title {
  color: #373737;
}
.cid-sVqOE28gq8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sVqOE28gq8 img,
.cid-sVqOE28gq8 .item-img {
  width: 100%;
}
.cid-sVqOE28gq8 .item:focus,
.cid-sVqOE28gq8 span:focus {
  outline: none;
}
.cid-sVqOE28gq8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sVqOE28gq8 .item-wrapper {
  position: relative;
  background: #649afc;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sVqOE28gq8 .item-content {
  padding: 25px 1rem 0;
}
.cid-sVqOE28gq8 .item-content a:not(.btn):hover {
  color: #212121 !important;
  background-image: none !important;
}
.cid-sVqOE28gq8 .item-wrapper {
  background: transparent;
}
.cid-sVqOE28gq8 .item-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-sVqOE28gq8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sVqOE28gq8 .mbr-section-title,
.cid-sVqOE28gq8 .mbr-section-subtitle {
  color: #111111;
}
.cid-sVqOE28gq8 .mbr-text,
.cid-sVqOE28gq8 .mbr-section-btn {
  text-align: left;
  color: #373737;
}
.cid-sVqOE28gq8 .item-title {
  text-align: left;
}
.cid-sVqOE28gq8 .item-subtitle {
  text-align: center;
}
.cid-sVqOE28gq8 .item-img {
  overflow: hidden;
}
.cid-sVqOE28gq8 .item-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
  transition: 1s;
}
.cid-sVqOE28gq8 .item-img:hover img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.cid-sVqOE28gq8 .mbr-section-head {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-sVqOE28gq8 .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-sVqSNwYKIn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f9fc;
}
.cid-sVqSNwYKIn .col-title {
  margin-bottom: 30px !important;
}
@media (min-width: 768px) {
  .cid-sVqSNwYKIn .col-title {
    margin-bottom: 0 !important;
  }
}
.cid-sVqSNwYKIn .mbr-section-title {
  margin-bottom: 12px;
  color: #373737;
}
@media (min-width: 768px) {
  .cid-sVqSNwYKIn .mbr-section-title {
    margin-right: 50px;
  }
}
@media (min-width: 768px) {
  .cid-sVqSNwYKIn .mbr-section-subtitle {
    margin-right: 50px;
  }
}
.cid-sVqSNwYKIn .mbr-text {
  color: #555555;
}
.cid-sVqSN2vYof {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f9fc;
}

@media (max-width: 768px) {
  .cid-sVqSN2vYof {
    padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f8f9fc;
  }
}


@media (min-width: 768px) {
  .cid-sVqSN2vYof {
    background-image: url("../../../assets/images/5-1080x1080.png");
    background-position: 100% center  !important;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-sVqSN2vYof .row {
  align-items: center;
}
.cid-sVqSN2vYof .image-wrapper {
  padding: 1rem;
}
.cid-sVqSN2vYof .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sVqSN2vYof .label-text {
  width: 100%;
  color: #111111;
}
.cid-sVqSN2vYof .mbr-section-title {
  margin-bottom: 12px;
  color: #fe5d49;
}
.cid-sVqSN2vYof .mbr-text {
  color: #111111;
  width: 100%;
  margin-bottom: 12px;
}
.cid-sVqSN2vYof .btn-container {
  width: 100%;
}
.cid-sVqSN2vYof .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sVqSN2vYof .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sVqSN2vYof .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sVqSN2vYof .btn-black-outline {
  border: 1px solid currentColor;
}
.cid-sVqSN2vYof .btn-black-outline:hover {
  color: #ffffff !important;
  background: #111111 !important;
}
.cid-sVqSN2vYof .elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: rotate(180deg);
  line-height: 0;
  direction: ltr;
}
.cid-sVqSN2vYof .elementor-shape svg {
  fill: #ffffff;
}
.cid-sVqU7YpyIa {
  padding-top: 45px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/working-1000x1000.jpeg");
}
.cid-sVqU7YpyIa .carousel {
  z-index: 2;
  position: relative;
}
.cid-sVqU7YpyIa .user {
  padding: 0 !important;
}
.cid-sVqU7YpyIa .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-sVqU7YpyIa .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sVqU7YpyIa .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sVqU7YpyIa .carousel-item.active,
.cid-sVqU7YpyIa .carousel-item-next,
.cid-sVqU7YpyIa .carousel-item-prev {
  display: flex;
}
.cid-sVqU7YpyIa .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-sVqU7YpyIa .carousel-controls a {
  font-size: 2rem;
}
.cid-sVqU7YpyIa .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-sVqU7YpyIa .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sVqU7YpyIa ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-sVqU7YpyIa .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #ffffff;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-sVqU7YpyIa .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sVqU7YpyIa .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-sVqU7YpyIa .user_status {
  color: #767676;
}
.cid-sVqU7YpyIa .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-sVqU7YpyIa .mbr-text {
  margin-bottom: 1.7rem;
}
.cid-sVqXos5ibR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f8f9fc;
}
.cid-sVqXos5ibR .container-fluid {
  overflow: hidden;
}
.cid-sVqXos5ibR .carousel-controls {
  display: none;
}
.cid-sVqXos5ibR .carousel-controls a {
  transition: opacity 0.5s;
}
.cid-sVqXos5ibR .carousel-controls a:hover span,
.cid-sVqXos5ibR .carousel-controls a:focus span {
  opacity: 1;
}
.cid-sVqXos5ibR .carousel-controls a:hover svg,
.cid-sVqXos5ibR .carousel-controls a:focus svg {
  transition: all 0.25s;
  stroke-width: 3;
}
.cid-sVqXos5ibR .carousel-controls a:active svg {
  transition: all 0.1s;
  stroke-width: 5;
}
.cid-sVqXos5ibR .carousel-indicators li {
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: 3px;
  background: #212121;
  border: 0;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-sVqXos5ibR .carousel-indicators {
  bottom: 0px;
}
.cid-sVqXos5ibR .carousel-indicators .active {
  border: 0px solid #1b1b1b;
  background: #fe5d49;
}
.cid-sVqXos5ibR ol {
  margin-bottom: 0rem;
}
.cid-sVqXos5ibR .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 30px;
  padding-top: 1rem;
}
.cid-sVqXos5ibR .carousel-control-prev {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sVqXos5ibR .carousel-control-next {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  opacity: 0.3;
}
.cid-sVqXos5ibR .carousel-item.active,
.cid-sVqXos5ibR .carousel-item-next,
.cid-sVqXos5ibR .carousel-item-prev {
  display: flex;
}
.cid-sVqXos5ibR .user_image {
  overflow: hidden;
  display: flex;
  padding: 1.5rem;
}
.cid-sVqXos5ibR .user_image .user_image_inner {
  max-width: 250px;
  max-height: 250px;
  border-radius: 10%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-sVqXos5ibR .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  margin: 0;
}
.cid-sVqXos5ibR .user_text {
  color: #767676;
  position: relative;
}
.cid-sVqXos5ibR .underline {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-sVqXos5ibR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #212121, #ffaa05);
  display: inline-block;
}
.cid-sVqXos5ibR .testimonials-quote svg {
  height: 50px;
  width: 50px;
  opacity: 0.2;
  margin-bottom: -50px;
  margin-left: -25px;
  fill: currentColor;
}
.cid-sVqXos5ibR .user_name {
  color: #373737;
  text-align: right;
}
.cid-sVqXos5ibR .carousel-controls svg {
  height: 60px;
}
@media (max-width: 576px) {
  .cid-sVqXos5ibR .carousel-controls {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sVqXos5ibR .testimonials-quote,
  .cid-sVqXos5ibR .user_text,
  .cid-sVqXos5ibR .user_name,
  .cid-sVqXos5ibR .user_desk {
    text-align: center !important;
  }
  .cid-sVqXos5ibR .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
  .cid-sVqXos5ibR .testimonials-quote svg {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .cid-sVqXos5ibR .mbr-section-title,
  .cid-sVqXos5ibR .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-sVqXos5ibR .carousel-control-prev span {
    right: -1rem;
  }
  .cid-sVqXos5ibR .carousel-control-next span {
    left: -1rem;
  }
  .cid-sVqXos5ibR .user-text {
    padding-right: 2rem;
  }
  .cid-sVqXos5ibR .carousel-control-prev,
  .cid-sVqXos5ibR .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-sVqXos5ibR .user_desk {
  text-align: right;
  color: #373737;
  font-style: italic;
  font-weight: 300;
}
.cid-sVqXos5ibR .user_text,
.cid-sVqXos5ibR .testimonials-quote {
  color: #ffffff;
}
.cid-sVqXos5ibR .user_text,
.cid-sVqXos5ibR .testimonials-quote {
  color: #212121;
}
.cid-sVr4ntHnFw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sVr4ntHnFw .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-sVr4ntHnFw .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #1d2c35;
  margin-left: 1rem;
}
.cid-sVr4ntHnFw .panel-group {
  border: none;
}
.cid-sVr4ntHnFw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sVr4ntHnFw .panel-body,
.cid-sVr4ntHnFw .card-header {
  padding: 1rem 0;
}
.cid-sVr4ntHnFw .panel-title-edit {
  color: #1d2c35;
}
.cid-sVr4ntHnFw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sVr4ntHnFw H3 {
  color: #373737;
}
.cid-sVr4wLsEwX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #111111;
}
.cid-sVr4wLsEwX .mbr-text,
.cid-sVr4wLsEwX .mbr-section-subtitle {
  color: #767676;
}
.cid-sVr4wLsEwX .card-title {
  color: #66458e;
}
.cid-sVr4wLsEwX .card .card-img span {
  color: #ffffff;
  font-size: 60px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sVr4wLsEwX .mbr-section-subtitle,
  .cid-sVr4wLsEwX .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sVr4wLsEwX .card .card-img span {
    background: none;
  }
}
.cid-sVr4wLsEwX .card-title,
.cid-sVr4wLsEwX .card-img {
  color: #ffffff;
}

@media (max-width: 767px) {
  .cid-sVr4wLsEwX .col-12 {
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:50% 
    
  }
}


.cid-sVr4zmv15K {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #111111;
}
.cid-sVr4zmv15K .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sVr4zmv15K .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sVr4zmv15K .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sVr4zmv15K .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sVr4zmv15K .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sVr4zmv15K .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sVr4zmv15K .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sVr4zmv15K .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sVr4zmv15K .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sVr4zmv15K .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sVr4zmv15K .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sVr4zmv15K .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sVr4zmv15K .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sVr4zmv15K .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sVr4zmv15K foot-menu-item {
  color: #67beb0;
}
.cid-sVr4zmv15K .media-container-row .mbr-text {
  text-align: center;
}








/* BOX FORM BODY */
.cid-snhz20VR9d form.mbr-form{
   /* background: #274c77; */
   background: white;
   width: 100%;
   border-bottom-left-radius: 0
   border-bottom-right-radius: 0;
   padding: 2rem 3rem;
}
/*END BOX FORM BODY */

/* INPUTS FORM-CONTROL */
.cid-snhz20VR9d .form-control{
   color: #656565;
   background-color: #f5f5f5;
   border-radius: .25rem;
   padding-left: 8px !important;
}
/* END INPUTS FORM-CONTROL */

/* LABEL FORM-CONTROL */
.cid-snhz20VR9d label{
   color: #000;
}
/* END LABEL FORM-CONTROL */

/* LABEL FORM-CONTROL */
.cid-snhz20VR9d label a:hover{
   color: #cc2952;
}
/* END LABEL FORM-CONTROL */

/* 1 TEXT OFFER*/
.cid-snhz20VR9d .text-offer-form{
   color: #cc2952;
   font-size: 3.4rem;
   font-weight: bold;
   padding-top: 15px;
   text-align: center !important;
}
/* END TEXT OFFER */

/* 2 TEXT TIME YOU RECIVE ORDER */
.cid-snhz20VR9d .text-hours-form{
   text-align: center !important;
   font-size: 1.4rem;
}
/* TEXT TIME YOU RECIVE ORDER */

/* 3 TEXT FINISH SOON */
.cid-snhz20VR9d .text-soon-form{
   text-align: center !important;
   font-weight: lighter;
   /* background: #0b7fab; */
   background: #000;
   color: white;
   padding: 4px 4px;
   border-radius: 2px;
   margin: 10px 0;
   font-size: 1.3rem;
}
/* END TEXT FINISH SOON */

/* 4 TEXT PRODUCT */
.cid-snhz20VR9d .text-product-form{
   text-align: center;
   padding: 10px 0;
   font-size: 1.3rem !important;
}
.cid-snhz20VR9d .text-product-form .form-price{
   font-weight: bolder !important;
}
/* END TEXT PRODUCT */

/* 5 TEXT ICONS FREE SHIPPING */
.cid-snhz20VR9d .box-icons{
   /* background: #0b7fab; */
   background: #000;
   color: white;
   padding: 20px;
   margin-bottom: 20px;

}
.cid-snhz20VR9d .text-icons{
   font-size: 1.1rem;
   text-align: center;
}
/* END TEXT ICONS FREE SHIPPING */  
   
/* MEDIA QUERIES */
@media screen and (max-width:768px){
   .cid-snhz20VR9d .text-offer-form{
       font-size: 2.2rem !important;
   }
   .cid-snhz20VR9d .text-hours-form{
       font-size: 0.9rem !important;
   }
   .cid-snhz20VR9d .text-soon-form{
       font-size: 1rem !important;
   }
   .cid-snhz20VR9d .text-product-form{
       font-size: 1.1rem !important;
   }
}
/* END MEDIA QUERIES */
.line {
  text-decoration: line-through;
      text-decoration-color: currentcolor;
  text-decoration-color: #d00000;
  color: #adb5bd;
  font-weight: 300;
  font-size: 35px;
}

     /*===================SECTION FORM =========================================*/
     /* SECTION HERE YOU PUT THE BACKGROUND IMAGE IF YOU WANT IT*/
    .cid-snhz20VR9d{
        background: url('../../../assets/images/lime-berries-and-leaves.jpg');
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
        position: relative;
        z-index: 1;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .cid-snhz20VR9d:after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(255 255 255);
        z-index: -1;
    }
    /* END SECTION */

    /* CONTAINER FORM: HERE YOU CAN REMOVE SHADOW FORM*/
    .cid-snhz20VR9d .div-container-form{
        -webkit-box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.75) !important;
        -moz-box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.75) !important;
        box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.75) !important;
    }
    /* END CONTAINER FORM */

    /* BOX FORM HEADER */
    .cid-snhz20VR9d .header-form,
    .body-form{
        font-family: 'Nunito', sans-serif !important;
        /* background: #f5f3f4; */
        background: rgba(255, 255, 255, 0.9);
        height: auto;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    /* END BOX FORM HEADER */

    /* BOX FORM BODY */
    .cid-snhz20VR9d form.mbr-form{
        /* background: #274c77; */
        background: rgba(124, 123, 137, 0.9);
        width: 100%;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    /*END BOX FORM BODY */

    /* INPUTS FORM-CONTROL */
    .cid-snhz20VR9d .form-control{
        color: #656565;
        background-color: #f5f5f5;
        border-radius: .25rem;
        padding-left: 8px !important;
    }
    /* END INPUTS FORM-CONTROL */

    /* LABEL FORM-CONTROL */
    .cid-snhz20VR9d label{
        color: #f5f5f5;
    }
    /* END LABEL FORM-CONTROL */

    /* LABEL FORM-CONTROL */
    .cid-snhz20VR9d label a:hover{
        color: #b9d5fd;
    }
    /* END LABEL FORM-CONTROL */
    
    /* 1 TEXT OFFER*/
    .cid-snhz20VR9d .text-offer-form{
        color: #fe5d49;
        font-size: 4rem;
        font-weight: bold;
        padding-top: 15px;
        text-align: center !important;
    }
    /* END TEXT OFFER */
    
    /* 2 TEXT TIME YOU RECIVE ORDER */
    .cid-snhz20VR9d .text-hours-form{
        text-align: center !important;
        
    }
    /* TEXT TIME YOU RECIVE ORDER */

    /* 3 TEXT FINISH SOON */
    .cid-snhz20VR9d .text-soon-form{
        text-align: center !important;
        font-weight: lighter;
        /* background: #0b7fab; */
        background: #fe5d49;
        color: white;
        padding: 7px;
        border-radius: 2px;
        margin: 10px 0;
    }
    /* END TEXT FINISH SOON */

    /* 4 TEXT PRODUCT */
    .cid-snhz20VR9d .text-product-form{
        text-align: center;
        padding: 10px 0;
        font-size: 1.3rem !important;
    }
    .cid-snhz20VR9d .text-product-form .form-price{
        font-weight: bolder !important;
    }
    /* END TEXT PRODUCT */
   
    /* 5 TEXT ICONS FREE SHIPPING */
    .cid-snhz20VR9d .box-icons{
        /* background: #0b7fab; */
        background: #fe5d49;
        color: white;
        padding: 20px;
        margin-bottom: 20px;

    }
    .cid-snhz20VR9d .text-icons{
        font-size: 1.1rem;
        text-align: center;
    }
    /* END TEXT ICONS FREE SHIPPING */  
        
    /* MEDIA QUERIES */
    @media screen and (max-width:768px){
        .cid-snhz20VR9d .text-offer-form{
            font-size: 2.8rem !important;
        }
        .cid-snhz20VR9d .text-hours-form{
            font-size: 1rem !important;
        }
        .cid-snhz20VR9d .text-soon-form{
            font-size: 1.2rem !important;
        }
        .cid-snhz20VR9d .text-product-form{
            font-size: 1.1rem !important;
        }
    }
    /* END MEDIA QUERIES */
 
    @keyframes blink {  
      0% { color: fb4c1f; }
      100% { color: black; }
    }
    @-webkit-keyframes blink {
      0% { color: fb4c1f; }
      100% { color: black; }
    }
    .blink {
      -webkit-animation: blink 1s linear infinite;
      -moz-animation: blink 1s linear infinite;
      animation: blink 1s linear infinite;
    }







.cid-sVqJcaPbJN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fff;
}
.cid-sVqJcaPbJN .row {
  flex-direction: row-reverse;
}
.cid-sVqJcaPbJN .row {
  align-items: center;
}
.cid-sVqJcaPbJN .img-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
 /*  background-image: url("../../../assets/images/features19.png"); */
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJN .img-item {
    padding: 0;
  }
}
.cid-sVqJcaPbJN .img-item img {
  /* height: auto; */
  display: block !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJN .text-col {
    margin-top: 45px;
    order: 5;
  }
}
@media (min-width: 992px) {
  .cid-sVqJcaPbJN .text-col {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sVqJcaPbJN .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sVqJcaPbJN .text-wrapper {
    padding: 0 100px 0 75px;
    padding: 0 75px 0 100px;
  }
}
.cid-sVqJcaPbJN .icon-wrap {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJN .icon-wrap {
    justify-content: center;
  }
}
.cid-sVqJcaPbJN .icon-box {
  background: #ffdd0f;
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 17px;
  border-radius: 50%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sVqJcaPbJN .icon-box .mbr-iconfont {
  font-size: 16px;
  color: #0f0d00;
}
.cid-sVqJcaPbJN .mbr-section-title {
  margin-bottom: 36px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJN .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sVqJcaPbJN .mbr-text {
  color: #555555;
  letter-spacing: inherit;
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-sVqJcaPbJN .mbr-text {
    text-align: center !important;
  }
}
.cid-sVqJcaPbJN .btn-container {
  width: 100%;
}
.cid-sVqJcaPbJN .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sVqJcaPbJN .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sVqJcaPbJN .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sVqJcaPbJN .name-text {
  color: #212121;
  text-align: left;
}





.cid-sVqK4F1E87 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fff;
}
.cid-sVqK4F1E87 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sVqK4F1E87 .image-wrapper {
    /*display: none;*/
  }
}
.cid-sVqK4F1E87 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sVqK4F1E87 .label-text {
  width: 100%;
  padding: 9px 0;
  margin-bottom: 12px;
}
.cid-sVqK4F1E87 .label {
  padding: 9px 18px;
  background: #ffdd0f;
  border-radius: 20px;
}
.cid-sVqK4F1E87 .mbr-section-title {
  margin-bottom: 12px;
  color: #373737;
}
.cid-sVqK4F1E87 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 22px;
}
.cid-sVqK4F1E87 .link-wrap {
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sVqK4F1E87 .link-wrap {
    display: flex;
    justify-content: center;
  }
}
.cid-sVqK4F1E87 .link-wrap a {
  position: relative;
  padding: 0 !important;
}
.cid-sVqK4F1E87 .link-wrap a:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sVqK4F1E87 .link-wrap a:before {
  content: '';
  position: absolute;
  color: currentColor;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sVqK4F1E87 .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sVqK4F1E87 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sVqK4F1E87 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sVqK4F1E87 .mbr-text,
.cid-sVqK4F1E87 .mbr-section-btn {
  color: #212121;
  text-align: left;
}


.slider__list {
  list-style-type: none;
  padding-left: 20px;
}

.slider__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0px
}

.slider__list li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: FontAwesome;
  content: "\f00c";
  color: #fe5d49;
}

#offers{
  background: #f5f5f5;
  padding-top: 40px;
}
#slider-products{
  overflow-x: hidden !important;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 0px;
}
#slider-products .card{
  position: relative;
  background: white;
  width: 500px;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#slider-products .card .content{
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#slider-products .card .content h3{
  font-family: inherit !important;
  color: #fe5d49;
  font-weight: bolder;
  font-size: 1.9rem;
  text-align: center;
}
#slider-products .card .content h4{
  text-align: center;
}
/* SAVE */
#slider-products .card .content .box-offer .save{
  font-size: 1.7rem;
  font-weight: 700;
  color: #fe5d49 !important;
  font-family: inherit !important;
  text-align: center !important;
}
/* PRICE */
#slider-products .card .content .box-offer .price{
  font-weight: bold;
  font-size: 2rem;
  text-align: center !important;
  color: black;
  font-family: inherit;
}
/* FREE SHIPPING */
#slider-products .card .content .box-offer .free{
  font-size: 1rem;
  font-weight: bold;
  text-align: center !important;
  color: black;
  font-family: inherit;
}

#slider-products .swiper-slide{
  width: 400px;
}
#slider-products .box-image-slider{
  width: 100%;
  height: 380px;
  padding: 20px;
}
#slider-products .box-image-slider img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#slider-products select{
  margin-bottom: 10px;
}
#slider-products .btn-custom{
  background-color: #fe5d49!important;
  border-color: #fe5d49!important;
  color: #fff!important;
  padding: 1rem 3rem;
  border-radius: 50px;
  margin-top: 0px;
  transition: all 0.3s ease-in-out;
}
#slider-products .btn-custom:hover{
  -webkit-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.50);
  -moz-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.50);
  box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.50);
}
.swiper-button-next,
.swiper-button-prev{
      color: #fe5d49!important;
}
@media screen and (max-width:768px){
  #slider-products .card, #slider-products .card .content, #slider-products .swiper-slide, #slider-products .box-image-slider{
      width: 350px !important;
  }
  #slider-products .card .content h3{
      font-size: 1.4rem !important;
  }
  #slider-products .card .content .box-offer .save{
      font-size: 1.2rem !important;
  }
  #slider-products .card .content .box-offer .price{
      font-size: 1.4rem !important;
  }
  #slider-products .card .content .box-offer .free{
      font-size: 0.9rem !important;
  }
  .swiper-button-prev{
      left: 169px !important;
      right: auto;
  }
  .swiper-button-next{
      right: 169px !important;
      left: auto;
  }
}