body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.75rem;
  line-height: 1.25;
  letter-spacing: -0.07em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-4 {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.09375rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
.display-5 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.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: 3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.625rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #ffa41d !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffa41d !important;
  border-color: #ffa41d !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: #c57600 !important;
  border-color: #c57600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c57600 !important;
  border-color: #c57600 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff4712 !important;
  border-color: #ff4712 !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: #ba2a00 !important;
  border-color: #ba2a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ba2a00 !important;
  border-color: #ba2a00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa41d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c57600 !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: #ffa41d !important;
  border-color: #ffa41d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4712;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ba2a00 !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: #ff4712 !important;
  border-color: #ff4712 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffa41d !important;
}
.text-secondary {
  color: #ff4712 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b66d00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ab2600 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffa41d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffa41d;
  border-color: #ffa41d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffa41d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff6e9;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.09375rem;
}
.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: #ffa41d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.09375rem;
}
blockquote {
  border-color: #ffa41d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffa41d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffa41d;
}
.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: #ffa41d;
  border-bottom-color: #ffa41d;
}
.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: #000000 !important;
  background-color: #ffa41d !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: #ff4712 !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='%23ffa41d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t3PcmZ0dgn {
  background-image: url("../../../assets/images/mbr-1920x1079.jpg");
}
.cid-t3PcmZ0dgn img {
  max-height: 300px;
  object-fit: cover;
}
.cid-t3PcmZ0dgn .images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-t3PcmZ0dgn .images {
    display: none;
  }
}
.cid-t3PcmZ0dgn .image-wrapper-1,
.cid-t3PcmZ0dgn .image-wrapper-2 {
  position: relative;
  height: 60px;
}
.cid-t3PcmZ0dgn .image-wrapper-1 {
  margin-top: 80px;
}
.cid-t3PcmZ0dgn .image-wrapper-1 img {
  position: absolute;
  top: 0;
  right: -4rem;
}
.cid-t3PcmZ0dgn .image-wrapper-1 .image-absolute-1 {
  position: absolute;
  width: 80px;
  height: 80px;
  top: -3rem;
  right: -10.5rem;
}
@media (max-width: 1100px) {
  .cid-t3PcmZ0dgn .image-wrapper-1 .image-absolute-1 {
    display: none;
  }
}
.cid-t3PcmZ0dgn .image-wrapper-2 {
  margin-top: 85px;
}
.cid-t3PcmZ0dgn .image-wrapper-2 img {
  width: 90%;
}
.cid-t3PcmZ0dgn .image-wrapper-2 .image-absolute-2 {
  position: absolute;
  width: 119px;
  height: 221px;
  left: -12rem;
  top: -2rem;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .cid-t3PcmZ0dgn .image-wrapper-2 .image-absolute-2 {
    left: -10rem;
    top: 0rem;
  }
}
@media (max-width: 1100px) {
  .cid-t3PcmZ0dgn .image-wrapper-2 .image-absolute-2 {
    display: none;
  }
}
.cid-t3PcmZ0dgn .text-wrapper {
  width: 100%;
}
.cid-t3PcmZ0dgn .mbr-text {
  margin: 0 0 36px 0;
  letter-spacing: .13em;
  color: #f9f9fc;
  text-align: center;
}
.cid-t3PcmZ0dgn .mbr-section-title {
  margin: 0 0 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-t3PcmZ0dgn .mbr-section-btn {
  margin: 0 25%;
}
@media (max-width: 992px) {
  .cid-t3PcmZ0dgn .mbr-section-btn {
    margin: 0;
  }
}
.cid-t3PcmZ0dgn .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  background: transparent !important;
  color: #ffffff !important;
}
.cid-t3PcmZ0dgn .btn:hover {
  box-shadow: none;
  color: #000000 !important;
  background: #ffffff !important;
}
.cid-t3PcmZ0dgn .text {
  display: flex;
  align-items: center;
}
.cid-tKQYjiNCii {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-tKQYjiNCii .row {
  justify-content: center;
}
.cid-tKQYjiNCii .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-tKQYjiNCii .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-tKQYjiNCii .card {
  padding: 0 15px;
}
.cid-tKQYjiNCii .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-tKQYjiNCii .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-tKQYjiNCii .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-tKQYjiNCii .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-tKQYjiNCii .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-tKR2ZGaOx0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-tKR2ZGaOx0 .row {
  justify-content: center;
}
.cid-tKR2ZGaOx0 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-tKR2ZGaOx0 .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-tKR2ZGaOx0 .content-card {
  margin-top: 40px;
}
.cid-tKR2ZGaOx0 .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-tKR2ZGaOx0 .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-tKR2ZGaOx0 .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-tKR2ZGaOx0 .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-tKR2ZGaOx0 .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-tKR2ZGaOx0 .mbr-card-text {
  color: #65676c;
  text-align: center;
}
.cid-tKR46pXWSy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #171a21;
}
.cid-tKR46pXWSy .mbr-section-subtitle {
  margin-bottom: 23px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-tKR46pXWSy .mbr-section-subtitle {
    margin-bottom: 15px;
  }
}
.cid-tKR46pXWSy .mbr-section-title {
  margin-bottom: 0;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .cid-tKR46pXWSy .mbr-section-title {
    margin-bottom: 17px;
  }
}
.cid-tKR46pXWSy .mbr-text {
  margin-bottom: 0;
  color: #adaeb1;
}
.cid-tKR46pXWSy .cards {
  margin: 112px 0 0 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tKR46pXWSy .cards {
    margin: 70px 0 0 0;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tKR46pXWSy .cards .image-card {
  width: 423px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tKR46pXWSy .cards .image-card {
    margin: 0 0 30px 0;
  }
}
.cid-tKR46pXWSy .cards .image-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
.cid-tKR46pXWSy .cards .image-card .image-card-text {
  width: 58%;
}
.cid-tKR46pXWSy .cards .image-card .image-card-text .mbr-image-text {
  margin: 46px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tKR46pXWSy .cards .image-card .image-card-text .mbr-image-text {
    margin: 23px 0 0 0;
  }
}
.cid-tKR46pXWSy .cards .image-card:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-tKR46pXWSy .cards .image-card:not(:first-child) {
    margin-left: 0;
  }
}
.cid-tKR46pXWSy .mbr-image-text {
  color: #ffffff;
  text-align: center;
}
.cid-t3Pd6l5PtY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3Pd6l5PtY .container-fluid {
  padding: 0;
}
.cid-t3Pd6l5PtY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Pd6l5PtY .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3Pd6l5PtY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3Pd6l5PtY .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3Pd6l5PtY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Pd6l5PtY .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3Pd6l5PtY .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3Pd6l5PtY .copyright {
  margin: 0 60px;
  padding: 26px 0;
}
.cid-t3Pd6l5PtY .copyright .mbr-text {
  margin: 0;
}
.cid-t3Pd6l5PtY .mbr-section-title,
.cid-t3Pd6l5PtY .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3Pd6l5PtY .mbr-text {
  color: #84858a;
  text-align: center;
}
.cid-tIgNDDcg07 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIgNDDcg07 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgNDDcg07 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgNDDcg07 .mbr-section-title {
  text-align: left;
}
.cid-tIgNDDcg07 .mbr-section-subtitle {
  text-align: left;
}
.cid-tIgNDDcg07 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-t3Pd6l5PtY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3Pd6l5PtY .container-fluid {
  padding: 0;
}
.cid-t3Pd6l5PtY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Pd6l5PtY .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3Pd6l5PtY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3Pd6l5PtY .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3Pd6l5PtY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Pd6l5PtY .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3Pd6l5PtY .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3Pd6l5PtY .copyright {
  margin: 0 60px;
  padding: 26px 0;
}
.cid-t3Pd6l5PtY .copyright .mbr-text {
  margin: 0;
}
.cid-t3Pd6l5PtY .mbr-section-title,
.cid-t3Pd6l5PtY .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3Pd6l5PtY .mbr-text {
  color: #84858a;
  text-align: center;
}
.cid-tIgMzj5Ebw {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIgMzj5Ebw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgMzj5Ebw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgMzj5Ebw ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tIgMzj5Ebw li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tIgMzj5Ebw ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffa41d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tIgMBZIfk6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIgMBZIfk6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgMBZIfk6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgMBZIfk6 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tIgMBZIfk6 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tIgMBZIfk6 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffa41d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tIgMCEZTcW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIgMCEZTcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgMCEZTcW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgMCEZTcW ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tIgMCEZTcW li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tIgMCEZTcW ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffa41d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t3Pd6l5PtY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3Pd6l5PtY .container-fluid {
  padding: 0;
}
.cid-t3Pd6l5PtY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Pd6l5PtY .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3Pd6l5PtY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3Pd6l5PtY .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3Pd6l5PtY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Pd6l5PtY .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3Pd6l5PtY .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3Pd6l5PtY .copyright {
  margin: 0 60px;
  padding: 26px 0;
}
.cid-t3Pd6l5PtY .copyright .mbr-text {
  margin: 0;
}
.cid-t3Pd6l5PtY .mbr-section-title,
.cid-t3Pd6l5PtY .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3Pd6l5PtY .mbr-text {
  color: #84858a;
  text-align: center;
}
.cid-tIgOwpCfb3 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tIgOwpCfb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgOwpCfb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgOwpCfb3 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tIgOwpCfb3 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tIgOwpCfb3 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffa41d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t3Pd6l5PtY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3Pd6l5PtY .container-fluid {
  padding: 0;
}
.cid-t3Pd6l5PtY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Pd6l5PtY .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3Pd6l5PtY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3Pd6l5PtY .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3Pd6l5PtY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Pd6l5PtY .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3Pd6l5PtY .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3Pd6l5PtY .copyright {
  margin: 0 60px;
  padding: 26px 0;
}
.cid-t3Pd6l5PtY .copyright .mbr-text {
  margin: 0;
}
.cid-t3Pd6l5PtY .mbr-section-title,
.cid-t3Pd6l5PtY .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3Pd6l5PtY .mbr-text {
  color: #84858a;
  text-align: center;
}
.cid-tIogbUXbDv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f9f9fc;
}
.cid-tIogbUXbDv .text-content {
  padding-right: 10%;
}
@media (max-width: 992px) {
  .cid-tIogbUXbDv .text-content {
    padding: 0 12px;
  }
}
.cid-tIogbUXbDv .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-tIogbUXbDv .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
.cid-tIogbUXbDv .mbr-text {
  margin: 13.5px 0 0 0;
  color: #84858a;
}
.cid-tIogbUXbDv .address-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-tIogbUXbDv .address-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-tIogbUXbDv .address-wrapper .mbr-address {
  margin: 0;
}
.cid-tIogbUXbDv .address-wrapper .mbr-address span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-tIogbUXbDv .address-wrapper .mbr-address span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-tIogbUXbDv .address-wrapper .mbr-address span {
    margin-bottom: 0;
  }
}
.cid-tIogbUXbDv .address-wrapper .mbr-text {
  margin: 14px 0 0 72px;
}
@media (max-width: 992px) {
  .cid-tIogbUXbDv .address-wrapper .mbr-text {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-tIogbUXbDv .address-wrapper .mbr-text {
    margin: 6px 0 0 72px;
  }
}
.cid-tIogbUXbDv .address-wrapper:hover span {
  color: #ffa41d;
}
.cid-tIogbUXbDv .contact-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-tIogbUXbDv .contact-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-tIogbUXbDv .contact-wrapper .mbr-contact {
  margin: 0;
}
.cid-tIogbUXbDv .contact-wrapper .mbr-contact span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-tIogbUXbDv .contact-wrapper .mbr-contact span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-tIogbUXbDv .contact-wrapper .mbr-contact span {
    margin-bottom: 0;
  }
}
.cid-tIogbUXbDv .contact-wrapper .item-link {
  margin-top: 14px;
  margin-left: 72px;
  display: block;
}
@media (max-width: 992px) {
  .cid-tIogbUXbDv .contact-wrapper .item-link {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-tIogbUXbDv .contact-wrapper .item-link {
    margin: 6px 0 0 72px;
  }
}
.cid-tIogbUXbDv .contact-wrapper .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-tIogbUXbDv .contact-wrapper .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: #6a6a6a;
  transition: all .4s ease;
}
.cid-tIogbUXbDv .contact-wrapper .mbr-phone {
  margin: 22px 0 0 72px;
}
@media (max-width: 992px) {
  .cid-tIogbUXbDv .contact-wrapper .mbr-phone {
    margin: 22px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-tIogbUXbDv .contact-wrapper .mbr-phone {
    margin: 6px 0 0 72px;
  }
}
.cid-tIogbUXbDv .contact-wrapper:hover span {
  color: #ffa41d;
}
.cid-tIogbUXbDv .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-tIogbUXbDv .mbr-address,
.cid-tIogbUXbDv .mbr-iconfont,
.cid-tIogbUXbDv .mbr-contact {
  color: #20232a;
}
.cid-tIogbUXbDv .mbr-link {
  color: #84858a;
}
.cid-tIogbUXbDv .mbr-phone {
  color: #20232a;
}
.cid-t3Pd6l5PtY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3Pd6l5PtY .container-fluid {
  padding: 0;
}
.cid-t3Pd6l5PtY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Pd6l5PtY .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3Pd6l5PtY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3Pd6l5PtY .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3Pd6l5PtY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Pd6l5PtY .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3Pd6l5PtY .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3Pd6l5PtY .copyright {
  margin: 0 60px;
  padding: 26px 0;
}
.cid-t3Pd6l5PtY .copyright .mbr-text {
  margin: 0;
}
.cid-t3Pd6l5PtY .mbr-section-title,
.cid-t3Pd6l5PtY .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3Pd6l5PtY .mbr-text {
  color: #84858a;
  text-align: center;
}
.cid-tJdsviS6Ny {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #150c0a;
}
.cid-tJdsviS6Ny .mbr-section-subtitle {
  margin-bottom: 23px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-tJdsviS6Ny .mbr-section-subtitle {
    margin-bottom: 15px;
  }
}
.cid-tJdsviS6Ny .mbr-section-title {
  margin-bottom: 0;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .cid-tJdsviS6Ny .mbr-section-title {
    margin-bottom: 17px;
  }
}
.cid-tJdsviS6Ny .mbr-text {
  margin-bottom: 0;
  color: #adaeb1;
}
.cid-tJdsviS6Ny .cards {
  margin: 112px 0 0 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tJdsviS6Ny .cards {
    margin: 70px 0 0 0;
    flex-direction: column;
    align-items: center;
  }
}
.cid-tJdsviS6Ny .cards .image-card {
  width: 423px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tJdsviS6Ny .cards .image-card {
    margin: 0 0 30px 0;
  }
}
.cid-tJdsviS6Ny .cards .image-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
.cid-tJdsviS6Ny .cards .image-card .image-card-text {
  width: 58%;
}
.cid-tJdsviS6Ny .cards .image-card .image-card-text .mbr-image-text {
  margin: 46px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tJdsviS6Ny .cards .image-card .image-card-text .mbr-image-text {
    margin: 23px 0 0 0;
  }
}
.cid-tJdsviS6Ny .cards .image-card:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-tJdsviS6Ny .cards .image-card:not(:first-child) {
    margin-left: 0;
  }
}
.cid-tJdsviS6Ny .mbr-image-text {
  color: #ffffff;
  text-align: center;
}
.cid-tJdErPaLeO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-tJdErPaLeO .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 768px) {
  .cid-tJdErPaLeO .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-tJdErPaLeO .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-tJdErPaLeO .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tJdErPaLeO .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #84858a;
}
@media (max-width: 768px) {
  .cid-tJdErPaLeO .mbr-text {
    padding: 0;
  }
}
.cid-tJdEONEfv8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-tJdEONEfv8 .content {
  display: flex;
  align-items: center;
}
.cid-tJdEONEfv8 .content-main {
  margin-left: 84px;
}
@media (max-width: 992px) {
  .cid-tJdEONEfv8 .content-main {
    margin-left: 0;
  }
}
.cid-tJdEONEfv8 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-tJdEONEfv8 .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-tJdEONEfv8 .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tJdEONEfv8 .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
@media (max-width: 992px) {
  .cid-tJdEONEfv8 .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-tJdEONEfv8 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tJdEONEfv8 .btn:hover {
  box-shadow: none;
}
.cid-tJdEONEfv8 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tJdEONEfv8 .image-wrapper {
    margin-bottom: 61px;
  }
}
.cid-tJdEONEfv8 .image-wrapper .image-tablet {
  width: 490px;
  height: 370px;
  padding: 1rem;
  border: 6px solid #1f242e;
  border-radius: 5%;
  background: #ffffff;
  margin-left: 30px;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1200px) {
  .cid-tJdEONEfv8 .image-wrapper .image-tablet {
    margin-left: 0;
  }
}
.cid-tJdEONEfv8 .image-wrapper .image-tablet img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tJdEONEfv8 .image-wrapper .image-phone {
  position: absolute;
  bottom: -6%;
  right: 4%;
  width: 170px;
  height: 343px;
  padding: 1rem;
  border: 4px solid #1f242e;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 20px -5px #65676c;
}
@media (max-width: 1400px) {
  .cid-tJdEONEfv8 .image-wrapper .image-phone {
    right: -12%;
  }
}
@media (max-width: 1200px) {
  .cid-tJdEONEfv8 .image-wrapper .image-phone {
    right: -18%;
  }
}
@media (max-width: 992px) {
  .cid-tJdEONEfv8 .image-wrapper .image-phone {
    right: 6rem;
  }
}
.cid-tJdEONEfv8 .image-wrapper .image-phone img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-tJeHjxqEGJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-tJeHjxqEGJ .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 768px) {
  .cid-tJeHjxqEGJ .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-tJeHjxqEGJ .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-tJeHjxqEGJ .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tJeHjxqEGJ .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #84858a;
}
@media (max-width: 768px) {
  .cid-tJeHjxqEGJ .mbr-text {
    padding: 0;
  }
}
.cid-t3Pd6l5PtY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #171a21;
}
.cid-t3Pd6l5PtY .container-fluid {
  padding: 0;
}
.cid-t3Pd6l5PtY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Pd6l5PtY .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-t3Pd6l5PtY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-t3Pd6l5PtY .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-t3Pd6l5PtY .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-t3Pd6l5PtY .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #65676c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-t3Pd6l5PtY .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-t3Pd6l5PtY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Pd6l5PtY .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-t3Pd6l5PtY .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-t3Pd6l5PtY .copyright {
  margin: 0 60px;
  padding: 26px 0;
}
.cid-t3Pd6l5PtY .copyright .mbr-text {
  margin: 0;
}
.cid-t3Pd6l5PtY .mbr-section-title,
.cid-t3Pd6l5PtY .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-t3Pd6l5PtY .mbr-text {
  color: #84858a;
  text-align: center;
}
