body {
  font-family: 'Lato', sans-serif;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.25rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.375rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.41;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.14 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.41 * (1rem + (1 - 1) * ((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: #5d61ee !important;
}
.bg-success {
  background-color: #c298d3 !important;
}
.bg-info {
  background-color: #85c0d9 !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #e6c63b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5d61ee !important;
  border-color: #5d61ee !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: #171ddd !important;
  border-color: #171ddd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #171ddd !important;
  border-color: #171ddd !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e62727 !important;
  border-color: #e62727 !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: #a31313 !important;
  border-color: #a31313 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a31313 !important;
  border-color: #a31313 !important;
}
.btn-info,
.btn-info:active {
  background-color: #85c0d9 !important;
  border-color: #85c0d9 !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: #439ec4 !important;
  border-color: #439ec4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #439ec4 !important;
  border-color: #439ec4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #c298d3 !important;
  border-color: #c298d3 !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: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #9e5bb9 !important;
  border-color: #9e5bb9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !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: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !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: #000000 !important;
  border-color: #000000 !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: #5d61ee;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #171ddd !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: #5d61ee !important;
  border-color: #5d61ee !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e62727;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a31313 !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: #e62727 !important;
  border-color: #e62727 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #85c0d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #439ec4 !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: #85c0d9 !important;
  border-color: #85c0d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c298d3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #9e5bb9 !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: #c298d3 !important;
  border-color: #c298d3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !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: #5d61ee !important;
}
.text-secondary {
  color: #e62727 !important;
}
.text-success {
  color: #c298d3 !important;
}
.text-info {
  color: #85c0d9 !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #e6c63b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #161bcf !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #961111 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9851b4 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3b96bd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a68b15 !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: #5d61ee;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #85c0d9;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #e6c63b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5d61ee;
  border-color: #5d61ee;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5d61ee;
}
.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: #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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdfbf0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #5d61ee !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #5d61ee;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5d61ee;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5d61ee;
}
.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: #5d61ee;
  border-bottom-color: #5d61ee;
}
.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: #5d61ee !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #e62727 !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='%235d61ee' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 100%;
  width: 86%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 801px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1300px;
  }
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 190px;
  border-radius: 0;
  padding: 17px 48px 15px 50px;
  line-height: 1.33;
  font-weight: 500 !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.mbr-section-btn .btn-primary {
  color: #ffffff !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary:hover {
  color: #000 !important;
  background: 0 0 !important;
}
.mbr-section-btn .btn-primary-outline {
  color: #000000 !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: 0 0;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary-outline:hover {
  color: #fff !important;
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
b {
  font-weight: 600 !important;
}
.cid-uOjsSdkXFH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f2ec;
}
.cid-uOjsSdkXFH .mbr-section-title {
  color: #f42b1a;
  margin-bottom: 0;
}
.cid-uOjsSdkXFH .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uOjsSdkXFH .mbr-section-btn {
  margin-top: 20px;
}
.cid-uOjsSdkXFH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjsSdkXFH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZQ33uKtr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f2ec;
}
.cid-uMZQ33uKtr .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uMZQ33uKtr .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uMZQ33uKtr .mbr-section-btn {
  margin-top: 30px;
}
.cid-uMZQ33uKtr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZQ33uKtr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOju2N5YQV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e62727;
}
.cid-uOju2N5YQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOju2N5YQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOju2N5YQV a {
  font-weight: bold;
}
.cid-uOju2N5YQV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOju2N5YQV .mbr-text,
.cid-uOju2N5YQV .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uOjuzEILmo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3f2ec;
}
.cid-uOjuzEILmo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjuzEILmo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjuzEILmo .card-wrapper {
  overflow: hidden;
  background: #dcdcdc;
}
.cid-uOjuzEILmo .text-wrapper {
  padding: 4rem 3rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOjuzEILmo .text-wrapper {
    padding: 2.25rem;
  }
}
@media (max-width: 767px) {
  .cid-uOjuzEILmo .text-wrapper {
    padding: 1.5rem;
  }
}
.cid-uOjuzEILmo .row {
  align-items: center;
  margin-right: -1rem;
  margin-left: -1rem;
}
.cid-uOjuzEILmo .row {
  flex-direction: row-reverse;
}
.cid-uOjuzEILmo .image-wrapper {
  padding: 0 1rem;
}
.cid-uOjuzEILmo img,
.cid-uOjuzEILmo .image-wrapper {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uOjuzEILmo img,
  .cid-uOjuzEILmo .image-wrapper {
    max-height: 350px;
  }
}
.cid-uOjuzEILmo .mbr-section-title {
  color: #000000;
}
.cid-uOjuzEILmo .mbr-text {
  color: #000000;
}
.cid-uOjuzEILmo .price {
  color: #000000;
}
.cid-uOjuzEILmo .fiyatstl {
  font-size: 26px;
  font-weight: bold;
  margin-top: 10px;
}
.cid-uOjuCbYJdv {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #dcdcdc;
}
.cid-uOjuCbYJdv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjuCbYJdv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjuCbYJdv .card-wrapper {
  overflow: hidden;
  background: #f3f2ec;
}
.cid-uOjuCbYJdv .text-wrapper {
  padding: 4rem 3rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOjuCbYJdv .text-wrapper {
    padding: 2.25rem;
  }
}
@media (max-width: 767px) {
  .cid-uOjuCbYJdv .text-wrapper {
    padding: 1.5rem;
  }
}
.cid-uOjuCbYJdv .row {
  align-items: center;
  margin-right: -1rem;
  margin-left: -1rem;
}
.cid-uOjuCbYJdv .row {
  flex-direction: row-reverse;
}
.cid-uOjuCbYJdv .image-wrapper {
  padding: 0 1rem;
}
.cid-uOjuCbYJdv img,
.cid-uOjuCbYJdv .image-wrapper {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uOjuCbYJdv img,
  .cid-uOjuCbYJdv .image-wrapper {
    max-height: 350px;
  }
}
.cid-uOjuCbYJdv .mbr-section-title {
  color: #000000;
}
.cid-uOjuCbYJdv .mbr-text {
  color: #000000;
}
.cid-uOjuCbYJdv .price {
  color: #000000;
}
.cid-uOjuCbYJdv .fiyatstl {
  font-size: 26px;
  font-weight: bold;
  margin-top: 10px;
}
.cid-uOjwgUdd59 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f3f2ec;
}
.cid-uOjwgUdd59 img,
.cid-uOjwgUdd59 .item-img {
  width: 100%;
}
.cid-uOjwgUdd59 .item:focus,
.cid-uOjwgUdd59 span:focus {
  outline: none;
}
.cid-uOjwgUdd59 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjwgUdd59 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjwgUdd59 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjwgUdd59 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjwgUdd59 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjwgUdd59 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjwgUdd59 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjwgUdd59 .mbr-section-title {
  color: #232323;
}
.cid-uOjwgUdd59 .mbr-text,
.cid-uOjwgUdd59 .mbr-section-btn {
  text-align: left;
}
.cid-uOjwgUdd59 .item-title {
  text-align: center;
}
.cid-uOjwgUdd59 .item-subtitle {
  text-align: center;
  color: #f42b1a;
}
.cid-uOjwvqFznQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #dcdcdc;
}
@media (min-width: 992px) {
  .cid-uOjwvqFznQ .col-lg-2 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-uOjwvqFznQ .social-row {
  display: flex;
  margin-bottom: 1rem;
}
.cid-uOjwvqFznQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  padding-right: 3px;
  transition: all 0.3s;
}
.cid-uOjwvqFznQ .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #1e93ab;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-uOjwvqFznQ .social-row {
    justify-content: center;
  }
}
.cid-uOjwvqFznQ img {
  transition: all 0.3s;
}
.cid-uOjwvqFznQ img:hover {
  transform: scale(1.1);
}
.cid-uOjwvqFznQ img,
.cid-uOjwvqFznQ .item-img {
  width: 100%;
  overflow: hidden;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uOjwvqFznQ .item:focus,
.cid-uOjwvqFznQ span:focus {
  outline: none;
}
.cid-uOjwvqFznQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjwvqFznQ .item-content {
  padding: 1rem;
  border: 1px solid #efefef;
}
.cid-uOjwvqFznQ .item-wrapper {
  position: relative;
  margin-right: -1px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uOjwvqFznQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjwvqFznQ .mbr-section-title {
  color: #18212d;
}
.cid-uOjwvqFznQ .item-title {
  color: #1b1b1b;
}
.cid-uOjwvqFznQ .item-subtitle {
  color: #103178;
}
.cid-uOjwzRvZIr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #85c0d9;
}
.cid-uOjwzRvZIr .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uOjwzRvZIr .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uOjwzRvZIr .mbr-section-btn {
  margin-top: 30px;
}
.cid-uOjwzRvZIr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjwzRvZIr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjwQaBc5l {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3f2ec;
}
.cid-uOjwQaBc5l .item {
  border-bottom: 1px solid #efefef;
  margin-bottom: 4rem;
}
.cid-uOjwQaBc5l img {
  width: 80%;
  height: auto;
}
@media (max-width: 992px) {
  .cid-uOjwQaBc5l img {
    width: 100%;
  }
}
.cid-uOjwHvrKur {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3f2ec;
}
.cid-uOjwHvrKur .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjwHvrKur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjwHvrKur .content-wrapper {
  background: #dcdcdc;
}
@media (max-width: 991px) {
  .cid-uOjwHvrKur .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uOjwHvrKur .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOjwHvrKur .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOjwHvrKur .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOjwHvrKur .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uOjwHvrKur .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uOjwHvrKur .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNmnPptR3i {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #85c0d9;
}
.cid-uNmnPptR3i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNmnPptR3i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ7ZBEwSCT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dcdcdc;
}
.cid-uJ7ZBEwSCT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ7ZBEwSCT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ7ZBEwSCT .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uJ7ZBEwSCT .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uJ7ZBEwSCT .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uJ7ZBEwSCT .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJ7ZBEwSCT .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJ7ZBEwSCT .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uJ7ZBEwSCT .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uJ7ZBEwSCT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uJ7ZBEwSCT .kitap-cerceve {
  display: inline-block;
  padding: 5px;
  background-color: #fff;
  border-top: 12px solid #444;
  border-right: 12px solid #444;
  border-bottom: 4px solid #bbb;
  border-left: 4px solid #bbb;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}
.cid-uJ7ZBEwSCT .kitap-cerceve img {
  display: block;
  width: 100%;
  height: auto;
}
.cid-t0rAwG3gA3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f3f2ec;
}
.cid-t0rAwG3gA3 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-t0rAwG3gA3 .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #6e6e6e;
}
.cid-t0rAwG3gA3 .mbr-section-btn {
  margin-top: 20px;
}
.cid-t0rAvAImok {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f3f2ec;
}
.cid-t0rAvAImok .row {
  width: 100%!important;
  max-width: 100%!important;
}
.cid-t0rAvAImok img,
.cid-t0rAvAImok .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t0rAvAImok .item:focus,
.cid-t0rAvAImok span:focus {
  outline: none;
}
.cid-t0rAvAImok .item {
  cursor: pointer;
  padding: 0 15px !important;
  margin-bottom: 30px !important;
}
@media (max-width: 1024px) {
  .cid-t0rAvAImok .item {
    width: 50% !important;
  }
}
@media (min-width: 1025px) {
  .cid-t0rAvAImok .item {
    width: 33.33333333% !important;
  }
}
@media (max-width: 680px) {
  .cid-t0rAvAImok .item {
    width: 100% !important;
  }
}
.cid-t0rAvAImok .item-wrapper {
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
}
.cid-t0rAvAImok .item-wrapper .img-wrap:hover .item-content {
  opacity: 1;
}
.cid-t0rAvAImok .img-wrap {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0rAvAImok .item-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-t0rAvAImok .item-img img {
  width: 100%;
}
.cid-t0rAvAImok .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f42b1a;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.cid-t0rAvAImok .item-content {
  position: absolute;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  z-index: 3;
  opacity: 0;
  padding: 10px;
  transition: opacity 0.2s ease-out;
}
.cid-t0rAvAImok .item-content .links-container {
  text-align: center;
}
.cid-t0rAvAImok .item-content .links-container a {
  margin-right: 18px;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-t0rAvAImok .item-content .links-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-t0rAvAImok .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 14px 0 32px;
}
.cid-t0rAvAImok .title-text {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
}
.cid-t0rAvAImok .mbr-text {
  color: #8A8A8A;
  margin-top: 2px;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
}
.cid-uOp7HjfXee {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #85c0d9;
}
.cid-uOp7HjfXee .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uOp7HjfXee .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
  color: #000000;
}
.cid-uOp7HjfXee .mbr-section-btn {
  margin-top: 30px;
}
.cid-uOp7HjfXee .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOp7HjfXee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjxGkLoa4 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #dcdcdc;
}
.cid-uOjxGkLoa4 img,
.cid-uOjxGkLoa4 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uOjxGkLoa4 .item:focus,
.cid-uOjxGkLoa4 span:focus {
  outline: none;
}
.cid-uOjxGkLoa4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjxGkLoa4 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOjxGkLoa4 .item {
  padding: 0;
  margin: 0;
}
.cid-uOjxGkLoa4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f3f2ec;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjxGkLoa4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjxGkLoa4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjxGkLoa4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjxGkLoa4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjxGkLoa4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjxGkLoa4 .mbr-section-title {
  color: #232323;
}
.cid-uOjxGkLoa4 .mbr-text,
.cid-uOjxGkLoa4 .mbr-section-btn {
  text-align: left;
}
.cid-uOjxGkLoa4 .item-title {
  text-align: center;
}
.cid-uOjxGkLoa4 .item-subtitle {
  text-align: center;
  color: #f42b1a;
}
.cid-uOjxAAhc8N {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #85c0d9;
}
.cid-uOjxAAhc8N .decor-wrap {
  position: absolute;
  pointer-events: none;
  right: 0;
  width: 85%;
  height: 140%;
  border-radius: 100% 0 0 100%;
  background-color: #85c0d9;
}
@media (max-width: 1500px) {
  .cid-uOjxAAhc8N .decor-wrap {
    width: 90%;
  }
}
@media (max-width: 992px) {
  .cid-uOjxAAhc8N .decor-wrap {
    width: 100%;
    border-radius: 0;
  }
}
.cid-uOjxAAhc8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjxAAhc8N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjxAAhc8N .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uOjxAAhc8N .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uOjxAAhc8N .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uOjxAAhc8N .items-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-uOjxAAhc8N .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uOjxAAhc8N .item {
    margin-bottom: 46px;
  }
}
.cid-uOjxAAhc8N .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 22px;
}
.cid-uOjxAAhc8N .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 64px;
}
.cid-uOjxAAhc8N .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uOjxAAhc8N .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uOjxAAhc8N .item .card_1 .card-box .icon-wrapper .mbr-iconfont {
  color: #dcdcdc;
}
.cid-uOjxAAhc8N .item .card_2 .card-box .icon-wrapper .mbr-iconfont {
  color: #dcdcdc;
}
.cid-uOjxAAhc8N .item .card_3 .card-box .icon-wrapper .mbr-iconfont {
  color: #dcdcdc;
}
.cid-uOjxAAhc8N .mbr-section-title {
  color: #212529;
}
.cid-uOjxAAhc8N .item-title {
  color: #212529;
}
.cid-uOjxAAhc8N .item-text {
  color: #51565c;
}
.cid-uIW7ORh8tg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f3f2ec;
}
.cid-uIW7ORh8tg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIW7ORh8tg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIW7ORh8tg .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uIW7ORh8tg .mbr-section-title {
  color: #24262b;
}
.cid-uIW7ORh8tg .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uIW7ORh8tg .cards-row {
  row-gap: 32px;
}
.cid-uIW7ORh8tg .item {
  border-radius: 0;
}
.cid-uIW7ORh8tg .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uIW7ORh8tg .item-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uIW7ORh8tg .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-uIW7ORh8tg .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uIW7ORh8tg .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #1497d0;
}
.cid-uIW7ORh8tg .card-title {
  margin-bottom: 8px;
  color: #24262b;
}
.cid-uIW7ORh8tg .card-subtitle {
  color: #24262b;
}
.cid-uIW7ORh8tg .card-bottom-wrap {
  margin-top: 24px;
}
.cid-uIW7ORh8tg .card-name {
  color: #24262b;
}
.cid-uIW7ORh8tg .card-text {
  color: #24262b;
}
.cid-uOjGIq7UMh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f3f2ec;
}
.cid-uOjGIq7UMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjGIq7UMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjGIq7UMh .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uOjGIq7UMh .mbr-section-title {
  color: #24262b;
}
.cid-uOjGIq7UMh .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uOjGIq7UMh .cards-row {
  row-gap: 32px;
}
.cid-uOjGIq7UMh .item {
  border-radius: 0;
}
.cid-uOjGIq7UMh .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOjGIq7UMh .item-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uOjGIq7UMh .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-uOjGIq7UMh .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uOjGIq7UMh .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #f42b1a;
}
.cid-uOjGIq7UMh .card-title {
  margin-bottom: 8px;
  color: #24262b;
}
.cid-uOjGIq7UMh .card-subtitle {
  color: #24262b;
}
.cid-uOjGIq7UMh .card-bottom-wrap {
  margin-top: 24px;
}
.cid-uOjGIq7UMh .card-name {
  color: #24262b;
}
.cid-uOjGIq7UMh .card-text {
  color: #24262b;
}
.cid-uOjJtlADmH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #dcdcdc;
}
.cid-uOjJtlADmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjJtlADmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOjJtlADmH .container {
    padding: 0 20px;
  }
}
.cid-uOjJtlADmH .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uOjJtlADmH .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOjJtlADmH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOjJtlADmH .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uOjJtlADmH .list {
    margin-bottom: 30px;
  }
}
.cid-uOjJtlADmH .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uOjJtlADmH .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uOjJtlADmH .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uOjJtlADmH .list .item-wrap:hover::before,
.cid-uOjJtlADmH .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uOjJtlADmH .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1e93ab;
  transition: all 0.3s ease-out;
}
.cid-uOjJtlADmH .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uOjJtlADmH .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOjJtlADmH .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uOjJtlADmH .social-wrapper .soc-item a {
  display: block;
}
.cid-uOjJtlADmH .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uOjJtlADmH .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #1e93ab;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uOjJtlADmH .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uOjJtlADmH .mbr-section-title {
  color: #1e93ab;
}
.cid-uOuLl8F0ku {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uOuLl8F0ku .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOuLl8F0ku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOuLl8F0ku .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOuLl8F0ku .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOuLl8F0ku .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uOuLl8F0ku .card-wrapper {
    padding: 4rem;
  }
}
.cid-uOuLl8F0ku .mbr-text,
.cid-uOuLl8F0ku .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uOuLl8F0ku .card-title,
.cid-uOuLl8F0ku .card-box {
  text-align: left;
  color: #000000;
}
.cid-uOuMvTHhNE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uOuMvTHhNE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOuMvTHhNE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOuMvTHhNE .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOuMvTHhNE .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOuMvTHhNE .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uOuMvTHhNE .card-wrapper {
    padding: 4rem;
  }
}
.cid-uOuMvTHhNE .mbr-text,
.cid-uOuMvTHhNE .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uOuMvTHhNE .card-title,
.cid-uOuMvTHhNE .card-box {
  text-align: left;
  color: #000000;
}
.cid-uOuOHVgHQT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uOuOHVgHQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOuOHVgHQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOuOHVgHQT .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOuOHVgHQT .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOuOHVgHQT .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uOuOHVgHQT .card-wrapper {
    padding: 4rem;
  }
}
.cid-uOuOHVgHQT .mbr-text,
.cid-uOuOHVgHQT .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uOuOHVgHQT .card-title,
.cid-uOuOHVgHQT .card-box {
  text-align: left;
  color: #000000;
}
.cid-uOjJtlADmH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #dcdcdc;
}
.cid-uOjJtlADmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjJtlADmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOjJtlADmH .container {
    padding: 0 20px;
  }
}
.cid-uOjJtlADmH .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uOjJtlADmH .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOjJtlADmH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOjJtlADmH .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uOjJtlADmH .list {
    margin-bottom: 30px;
  }
}
.cid-uOjJtlADmH .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uOjJtlADmH .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uOjJtlADmH .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uOjJtlADmH .list .item-wrap:hover::before,
.cid-uOjJtlADmH .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uOjJtlADmH .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1e93ab;
  transition: all 0.3s ease-out;
}
.cid-uOjJtlADmH .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uOjJtlADmH .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOjJtlADmH .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uOjJtlADmH .social-wrapper .soc-item a {
  display: block;
}
.cid-uOjJtlADmH .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uOjJtlADmH .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #1e93ab;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uOjJtlADmH .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uOjJtlADmH .mbr-section-title {
  color: #1e93ab;
}
