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-t3PcmFS2QD .container-fluid {
  padding: 0 1rem;
}
.cid-t3PcmFS2QD .navbar-dropdown {
  background-color: #f9f9fc !important;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t3PcmFS2QD .menu_box .navbar.opened,
  .cid-t3PcmFS2QD .menu_box .navbar-collapse {
    background-color: #f9f9fc !important;
    transition: all 0s ease 0s;
  }
}
.cid-t3PcmFS2QD .navbar-dropdown {
  position: relative !important;
}
.cid-t3PcmFS2QD nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-t3PcmFS2QD .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-t3PcmFS2QD .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-t3PcmFS2QD .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-t3PcmFS2QD .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-t3PcmFS2QD .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PcmFS2QD .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-t3PcmFS2QD .offcanvas {
    padding: 55px 35px 40px;
    width: 480px;
    background-color: #f0f0f5;
  }
  .cid-t3PcmFS2QD .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-t3PcmFS2QD .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-t3PcmFS2QD .offcanvas-header .btn-close {
    position: absolute;
    top: 44px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-t3PcmFS2QD .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .cid-t3PcmFS2QD .offcanvas-body .mbr-text,
  .cid-t3PcmFS2QD .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-t3PcmFS2QD .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-t3PcmFS2QD .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-t3PcmFS2QD .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #20232a;
  }
  .cid-t3PcmFS2QD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-t3PcmFS2QD .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-t3PcmFS2QD .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-t3PcmFS2QD .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-t3PcmFS2QD ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-t3PcmFS2QD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-t3PcmFS2QD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-t3PcmFS2QD .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-t3PcmFS2QD li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-t3PcmFS2QD li.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #20232a;
    margin-top: 3px;
    transition: all .4s ease;
  }
  .cid-t3PcmFS2QD .lg_brand {
    margin: 0 1rem;
  }
}
.cid-t3PcmFS2QD .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-t3PcmFS2QD .nav-item {
    margin: 4px 15px;
  }
}
@media (max-width: 991px) {
  .cid-t3PcmFS2QD .nav-item {
    margin: 0 !important;
  }
}
.cid-t3PcmFS2QD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-t3PcmFS2QD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: 72px !important;
    left: -40px !important;
  }
  .cid-t3PcmFS2QD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-t3PcmFS2QD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-t3PcmFS2QD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-t3PcmFS2QD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-t3PcmFS2QD .offcanvas_box {
    display: none;
  }
}
.cid-t3PcmFS2QD .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-t3PcmFS2QD .dropdown-item:hover {
  color: #ffa41d;
}
.cid-t3PcmFS2QD .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-t3PcmFS2QD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3PcmFS2QD .nav-link {
  position: relative;
  color: #20232a;
}
.cid-t3PcmFS2QD .container {
  display: flex;
  margin: auto;
}
.cid-t3PcmFS2QD .iconfont-wrapper {
  width: 42px;
  margin: 5px;
  color: #20232a;
  font-size: 21px;
  transition: all 0.2s ease-in-out;
  width: auto;
}
.cid-t3PcmFS2QD .iconfont-wrapper:hover {
  color: #ffa41d;
}
.cid-t3PcmFS2QD .navbar-caption {
  color: #20232a;
}
.cid-t3PcmFS2QD .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .cid-t3PcmFS2QD .navbar-nav {
    margin: 0 2rem;
  }
}
.cid-t3PcmFS2QD .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-t3PcmFS2QD .dropdown-menu,
.cid-t3PcmFS2QD .navbar.opened {
  background: #f9f9fc !important;
}
.cid-t3PcmFS2QD .nav-item:focus,
.cid-t3PcmFS2QD .nav-link:focus {
  outline: none;
}
.cid-t3PcmFS2QD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3PcmFS2QD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3PcmFS2QD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3PcmFS2QD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3PcmFS2QD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3PcmFS2QD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3PcmFS2QD .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
.cid-t3PcmFS2QD .navbar.opened {
  transition: all 0.3s;
}
.cid-t3PcmFS2QD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-t3PcmFS2QD .navbar .navbar-logo img {
  width: auto;
  object-fit: cover;
}
.cid-t3PcmFS2QD .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-t3PcmFS2QD .navbar.collapsed {
  justify-content: center;
}
.cid-t3PcmFS2QD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3PcmFS2QD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t3PcmFS2QD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3PcmFS2QD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3PcmFS2QD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3PcmFS2QD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-t3PcmFS2QD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t3PcmFS2QD .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-t3PcmFS2QD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-t3PcmFS2QD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3PcmFS2QD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3PcmFS2QD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-t3PcmFS2QD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3PcmFS2QD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3PcmFS2QD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3PcmFS2QD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-t3PcmFS2QD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-t3PcmFS2QD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-t3PcmFS2QD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3PcmFS2QD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3PcmFS2QD .navbar .icons-menu {
    padding: 0;
  }
}
.cid-t3PcmFS2QD .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3PcmFS2QD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3PcmFS2QD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3PcmFS2QD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t3PcmFS2QD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3PcmFS2QD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3PcmFS2QD .dropdown-item.active,
.cid-t3PcmFS2QD .dropdown-item:active {
  background-color: transparent;
}
.cid-t3PcmFS2QD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3PcmFS2QD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3PcmFS2QD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3PcmFS2QD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9fc;
}
.cid-t3PcmFS2QD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3PcmFS2QD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3PcmFS2QD ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-t3PcmFS2QD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3PcmFS2QD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f9f9fc;
  background: #f9f9fc;
}
.cid-t3PcmFS2QD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #20232a;
}
.cid-t3PcmFS2QD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3PcmFS2QD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3PcmFS2QD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3PcmFS2QD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3PcmFS2QD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3PcmFS2QD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3PcmFS2QD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3PcmFS2QD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3PcmFS2QD a.nav-link {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.cid-t3PcmFS2QD .nav-item:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t3PcmFS2QD .nav-item:hover {
    width: 0;
  }
}
.cid-t3PcmFS2QD .icons-menu {
  margin-bottom: 35px;
}
.cid-t3PcmFS2QD .icons-menu .iconfont-wrapper {
  margin-bottom: 25px;
  display: block;
}
.cid-t3PcmFS2QD .icons-menu .iconfont-wrapper span {
  margin-right: 14px;
}
.cid-t3PcmFS2QD .icons-menu .iconfont-wrapper .mbr-text {
  margin: 0;
  display: inline-block;
}
.cid-t3PcmFS2QD .icons-menu .iconfont-wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3PcmFS2QD .navbar {
    height: 70px;
  }
  .cid-t3PcmFS2QD .navbar.opened {
    height: auto;
  }
  .cid-t3PcmFS2QD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3PcmFS2QD .navbar-caption:hover {
  color: #ffa41d;
}
.cid-t3PcmFS2QD .nav-link:hover {
  color: #ffa41d;
}
.cid-t3PcmFS2QD .mbr-iconfont {
  font-size: 21px;
}
.cid-t3PcmFS2QD .mbr-section-subtitle {
  color: #20232a;
  text-align: left;
}
.cid-t3PcmFS2QD .mbr-text,
.cid-t3PcmFS2QD .iconfont-wrapper {
  color: #20232a;
  text-align: left;
}
.cid-t3PcmFS2QD .text_widget a:hover {
  color: #ffa41d;
}
.cid-t3PcmFS2QD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-t3PcmZ0dgn {
  background-image: url("../img/background4.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: #FF4712;
  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-t3PcnWcHIN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PcnWcHIN .row {
  justify-content: center;
}
.cid-t3PcnWcHIN .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3PcnWcHIN .mbr-section-title {
  margin-bottom: 54px;
  color: #080808;
}
.cid-t3PcnWcHIN .features-card {
  margin-bottom: 42px;
}
.cid-t3PcnWcHIN .features-card img {
  width: 100%;
  object-fit: cover;
  border: 7px solid #ffffff;
  height: 470px;
  transition: all .3s ease;
}
.cid-t3PcnWcHIN .features-card img:hover {
  transform: translate(0, -5px);
}
.cid-t3PcnWcHIN .features-card .mbr-text {
  margin: 40px 0 0 0;
}
.cid-t3PcnWcHIN .features-card:nth-child(2) img {
  max-height: 408px;
}
.cid-t3PcnWcHIN .features-card:nth-child(4) img {
  max-height: 272px;
}
.cid-t3PcnWcHIN .features-card:nth-child(5) {
  margin-top: -62px;
}
@media (max-width: 992px) {
  .cid-t3PcnWcHIN .features-card:nth-child(5) {
    margin-top: 0;
  }
}
.cid-t3PcnWcHIN .features-card:nth-child(5) img {
  max-height: 510px;
}
.cid-t3PcnWcHIN .features-card:nth-child(6) img {
  max-height: 272px;
}
.cid-t3PcnWcHIN .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PcnWcHIN .btn:hover {
  box-shadow: none;
}
.cid-t3PcnWcHIN .mbr-text {
  color: #1f242e;
  text-align: center;
}
.cid-t3PcnWcHIN .mbr-section-title,
.cid-t3PcnWcHIN .mbr-section-btn {
  text-align: center;
}
.cid-t3Pcstg1ll {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #150c0a;
}
.cid-t3Pcstg1ll .mbr-section-subtitle {
  margin-bottom: 23px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-t3Pcstg1ll .mbr-section-subtitle {
    margin-bottom: 15px;
  }
}
.cid-t3Pcstg1ll .mbr-section-title {
  margin-bottom: 0;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .cid-t3Pcstg1ll .mbr-section-title {
    margin-bottom: 17px;
  }
}
.cid-t3Pcstg1ll .mbr-text {
  margin-bottom: 0;
  color: #adaeb1;
}
.cid-t3Pcstg1ll .cards {
  margin: 112px 0 0 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t3Pcstg1ll .cards {
    margin: 70px 0 0 0;
    flex-direction: column;
    align-items: center;
  }
}
.cid-t3Pcstg1ll .cards .image-card {
  width: 423px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-t3Pcstg1ll .cards .image-card {
    margin: 0 0 30px 0;
  }
}
.cid-t3Pcstg1ll .cards .image-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
.cid-t3Pcstg1ll .cards .image-card .image-card-text {
  width: 58%;
}
.cid-t3Pcstg1ll .cards .image-card .image-card-text .mbr-image-text {
  margin: 46px 0 0 0;
}
@media (max-width: 992px) {
  .cid-t3Pcstg1ll .cards .image-card .image-card-text .mbr-image-text {
    margin: 23px 0 0 0;
  }
}
.cid-t3Pcstg1ll .cards .image-card:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 992px) {
  .cid-t3Pcstg1ll .cards .image-card:not(:first-child) {
    margin-left: 0;
  }
}
.cid-t3Pcstg1ll .mbr-image-text {
  color: #ffffff;
  text-align: center;
}
.cid-t3Pcp7Aqxk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3Pcp7Aqxk .row {
  justify-content: center;
}
.cid-t3Pcp7Aqxk .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3Pcp7Aqxk .mbr-section-title {
  margin-bottom: 34px;
  color: #080808;
  text-align: center;
}
.cid-t3Pcp7Aqxk .card {
  padding: 0 15px;
}
.cid-t3Pcp7Aqxk .card:nth-child(2n) .card-wrapper {
  background: #ffffff;
}
.cid-t3Pcp7Aqxk .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  background: #f0f0f5;
  padding: 24px 20px 61px 20px;
  border-radius: 0;
}
.cid-t3Pcp7Aqxk .card-wrapper img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-top: 64px;
}
.cid-t3Pcp7Aqxk .card-wrapper .mbr-card-title {
  margin: 24px 0 2px 0;
}
.cid-t3Pcp7Aqxk .card-wrapper .mbr-card-desc {
  margin: 0;
}
.cid-t3Pcz0bt5S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f0f0f5;
}
.cid-t3Pcz0bt5S .row {
  justify-content: center;
}
.cid-t3Pcz0bt5S .card {
  padding: 0 15px;
  height: 453px;
  position: relative;
  margin-bottom: 30px;
}
.cid-t3Pcz0bt5S .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0 15px;
}
.cid-t3Pcz0bt5S .item-wrapper {
  height: 100%;
}
.cid-t3Pcz0bt5S .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3Pcz0bt5S .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.3em;
  transition: all .4s ease;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-t3Pcz0bt5S .card-wrapper {
    padding: 1.8em;
  }
}
.cid-t3Pcz0bt5S .mbr-number {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  transform: translate(0, -30%);
  pointer-events: visible;
  color: #fff;
}
.cid-t3Pcz0bt5S .mbr-title {
  margin-bottom: 1rem;
  pointer-events: visible;
  color: #fff;
}
.cid-t3Pcz0bt5S .mbr-text {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: visible;
  color: #EAEAEA;
}
.cid-t3Pcz0bt5S .card-text {
  transform: translate(0, 50%);
  transition: all .4s ease;
}
.cid-t3Pcz0bt5S .card:hover .mbr-number {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-t3Pcz0bt5S .card:hover .mbr-text {
  opacity: .7;
}
.cid-t3Pcz0bt5S .card:hover .card-text {
  transform: translate(0, 0);
}
.cid-t3Pcz0bt5S .card:hover .card-wrapper {
  background: #ff4712;
}
.cid-t3Pcr4WK0r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3Pcr4WK0r .row {
  justify-content: center;
}
.cid-t3Pcr4WK0r .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3Pcr4WK0r .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-t3Pcr4WK0r .content-card {
  margin-top: 40px;
}
.cid-t3Pcr4WK0r .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-t3Pcr4WK0r .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-t3Pcr4WK0r .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-t3Pcr4WK0r .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-t3Pcr4WK0r .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-t3Pcr4WK0r .mbr-card-text {
  color: #65676c;
  text-align: center;
}
.cid-t3PcS49sU3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f5;
}
.cid-t3PcS49sU3 .content {
  display: flex;
  align-items: center;
}
.cid-t3PcS49sU3 .content-main {
  margin-left: 84px;
}
@media (max-width: 992px) {
  .cid-t3PcS49sU3 .content-main {
    margin-left: 0;
  }
}
.cid-t3PcS49sU3 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
@media (max-width: 992px) {
  .cid-t3PcS49sU3 .mbr-section-subtitle {
    margin-bottom: 24px;
  }
}
.cid-t3PcS49sU3 .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-t3PcS49sU3 .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
@media (max-width: 992px) {
  .cid-t3PcS49sU3 .mbr-text {
    margin-bottom: 25px;
  }
}
.cid-t3PcS49sU3 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PcS49sU3 .btn:hover {
  box-shadow: none;
}
.cid-t3PcS49sU3 .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PcS49sU3 .image-wrapper {
    margin-bottom: 61px;
  }
}
.cid-t3PcS49sU3 .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-t3PcS49sU3 .image-wrapper .image-tablet {
    margin-left: 0;
  }
}
.cid-t3PcS49sU3 .image-wrapper .image-tablet img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-t3PcS49sU3 .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-t3PcS49sU3 .image-wrapper .image-phone {
    right: -12%;
  }
}
@media (max-width: 1200px) {
  .cid-t3PcS49sU3 .image-wrapper .image-phone {
    right: -18%;
  }
}
@media (max-width: 992px) {
  .cid-t3PcS49sU3 .image-wrapper .image-phone {
    right: 6rem;
  }
}
.cid-t3PcS49sU3 .image-wrapper .image-phone img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.cid-t3PcEVKYvt {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #f9f9fc;
}
.cid-t3PcEVKYvt .mbr-list {
  display: inline-flex;
}
@media (max-width: 768px) {
  .cid-t3PcEVKYvt .mbr-list {
    display: block;
    width: auto;
  }
}
.cid-t3PcEVKYvt .mbr-list ul {
  margin: 0 72px 0 0;
  list-style: none;
  padding-left: 0;
  list-style-position: inside;
}
.cid-t3PcEVKYvt .mbr-list ul li {
  margin-bottom: 16px;
  display: flex;
  list-style: none;
  position: relative;
}
.cid-t3PcEVKYvt .mbr-list ul li:before {
  margin-top: -3px;
  margin-right: 12px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff4712;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "✓";
}
.cid-t3PcEVKYvt .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-t3PcEVKYvt .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-t3PcEVKYvt .mbr-text {
  margin-bottom: 32px;
  color: #65676c;
}
.cid-t3PcEVKYvt .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3PcEVKYvt .image-wrapper {
    margin-top: 23px;
  }
}
.cid-t3PcEVKYvt .image-wrapper img:first-child {
  width: 79%;
  max-width: 520px;
  object-fit: cover;
}
.cid-t3PcEVKYvt .image-wrapper .image-absolute {
  position: absolute;
  top: 48%;
  left: 0;
  max-width: 354px;
  max-height: 283px;
}
@media (max-width: 768px) {
  .cid-t3PcEVKYvt .image-wrapper .image-absolute {
    max-width: 200px;
    max-height: 250px;
  }
}
.cid-t3PcEVKYvt .image-wrapper .image-logo {
  position: absolute;
  top: 24%;
  left: 57%;
  width: 80px;
  height: 80px;
}
.cid-t3PcEVKYvt .mbr-section-title,
.cid-t3PcEVKYvt .list-wrapper {
  text-align: left;
}
.cid-t3PdExP6PL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9f9fc;
}
.cid-t3PdExP6PL .row {
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}
.cid-t3PdExP6PL .card {
  padding: 0;
  height: 422px;
  position: relative;
}
.cid-t3PdExP6PL .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-t3PdExP6PL .item-wrapper {
  height: 100%;
}
.cid-t3PdExP6PL .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3PdExP6PL .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 54px 49px;
  transition: all .4s ease;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .cid-t3PdExP6PL .card-wrapper {
    padding: 34px 31px;
  }
}
@media (max-width: 425px) {
  .cid-t3PdExP6PL .card-wrapper {
    padding: 31px;
  }
}
.cid-t3PdExP6PL .mbr-number {
  margin: 0;
  opacity: 0;
  transition: all .4s ease;
  transform: translate(0, -30%);
  pointer-events: visible;
  color: #fff;
  text-align: center;
}
.cid-t3PdExP6PL .mbr-title {
  pointer-events: visible;
}
@media (max-width: 768px) {
  .cid-t3PdExP6PL .mbr-title {
    margin-bottom: .5rem;
  }
}
.cid-t3PdExP6PL .mbr-text {
  margin: 0;
  pointer-events: visible;
  color: #EAEAEA;
  text-align: center;
}
.cid-t3PdExP6PL .card-text {
  transform: translate(0, 30%);
  transition: all .4s ease;
}
.cid-t3PdExP6PL .card-text span {
  display: block;
  font-size: 24px;
  margin: 2rem auto 0;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: visible;
}
@media (max-width: 768px) {
  .cid-t3PdExP6PL .card-text span {
    margin: 2px auto 0;
  }
}
.cid-t3PdExP6PL .card:hover .mbr-number {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-t3PdExP6PL .card:hover .mbr-text {
  opacity: .7;
}
.cid-t3PdExP6PL .card:hover span {
  opacity: 1;
}
.cid-t3PdExP6PL .card:hover .card-text {
  transform: translate(0, -10%);
}
.cid-t3PdExP6PL .card:hover .card-wrapper {
  background: #ff4712;
}
.cid-t3PdExP6PL .mbr-title,
.cid-t3PdExP6PL .mbr-iconfont {
  color: #fff;
  text-align: center;
}
.cid-t3PcVgwd8a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3PcVgwd8a .card-wrap-1 {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cid-t3PcVgwd8a .card-wrap-2 {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-t3PcVgwd8a .card-1 {
  width: 404px;
  padding: 70px 60px;
  margin: 0 0 -1rem 0;
  background: #eaeaea;
}
@media (max-width: 998px) {
  .cid-t3PcVgwd8a .card-1 {
    width: auto;
    padding: 20px;
    margin: 0 0 43px 0;
  }
}
.cid-t3PcVgwd8a .card-1 .mbr-section-title {
  margin-bottom: 13px;
}
.cid-t3PcVgwd8a .card-1 .mbr-section-text {
  margin-bottom: 16px;
}
.cid-t3PcVgwd8a .card-1 .list {
  margin: 0;
  padding-left: 18px;
  list-style-position: inside;
}
.cid-t3PcVgwd8a .card-1 .list li::marker {
  color: #ffa41d;
}
.cid-t3PcVgwd8a .image-wrapper img {
  height: 579px;
  width: 100%;
  object-fit: cover;
}
.cid-t3PcVgwd8a .card-2 {
  width: 404px;
  padding: 90px 60px;
  margin: -4rem 0 0 -6rem;
  background: #ffa41d;
}
@media (max-width: 1300px) {
  .cid-t3PcVgwd8a .card-2 {
    margin: -4rem 0 0 -9rem;
  }
}
@media (max-width: 1100px) {
  .cid-t3PcVgwd8a .card-2 {
    width: 350px;
  }
}
@media (max-width: 998px) {
  .cid-t3PcVgwd8a .card-2 {
    width: auto;
    padding: 20px;
    margin: 43px 0 0 0;
  }
}
.cid-t3PcVgwd8a .card-2 .mbr-title {
  margin-bottom: 13px;
}
.cid-t3PcVgwd8a .card-2 .mbr-text {
  margin-bottom: 18px;
  opacity: .7;
}
.cid-t3PcVgwd8a .btn {
  height: 55px;
  min-width: 170px;
  border: 2px solid #ffffff !important;
  margin-top: 10px;
  margin-bottom: 0;
  box-shadow: none;
}
.cid-t3PcVgwd8a .btn:hover {
  box-shadow: none;
  border: 2px solid #ffffff !important;
}
.cid-t3PcVgwd8a .mbr-section-title {
  color: #20232a;
}
.cid-t3PcVgwd8a .mbr-section-text {
  color: #84858a;
}
.cid-t3PcVgwd8a .list {
  color: #84858a;
}
.cid-t3PcVgwd8a .mbr-title {
  color: #FFFFFF;
}
.cid-t3PcVgwd8a .mbr-text {
  color: #FFFFFF;
}
.cid-t3Pd2vfjKS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background6.jpg");
}
.cid-t3Pd2vfjKS .mbr-section-head {
  padding: 0 1rem;
}
.cid-t3Pd2vfjKS .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-t3Pd2vfjKS .team-card:hover {
  transform: translateY(-10px);
}
.cid-t3Pd2vfjKS .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-t3Pd2vfjKS .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-t3Pd2vfjKS .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-t3Pd2vfjKS .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3Pd2vfjKS .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-t3Pd2vfjKS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 50%;
  max-width: 40%;
}
@media (max-width: 768px) {
  .cid-t3Pd2vfjKS .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}
.cid-t3Pd2vfjKS .embla__button--next,
.cid-t3Pd2vfjKS .embla__button--prev {
  display: flex;
}
.cid-t3Pd2vfjKS .embla__button {
  top: -13%;
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #ffa41d;
  border: 2px solid #ffa41d;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3Pd2vfjKS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3Pd2vfjKS .embla__button:hover {
  background: transparent;
  opacity: .7;
}
.cid-t3Pd2vfjKS .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3Pd2vfjKS .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-t3Pd2vfjKS .embla__button {
    top: -10%;
  }
}
.cid-t3Pd2vfjKS .embla {
  position: relative;
  width: 100%;
  margin-top: 52px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-t3Pd2vfjKS .embla {
    margin-top: 80px;
  }
}
.cid-t3Pd2vfjKS .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3Pd2vfjKS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3Pd2vfjKS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3Pd2vfjKS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3Pd2vfjKS .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: 0.13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3Pd2vfjKS .mbr-section-title {
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
.cid-t3Pd2vfjKS .mbr-text {
  margin: 0;
  color: #EAEAEA;
  text-align: center;
}
.cid-t3Pd2vfjKS .mbr-text ul {
  list-style-position: inside;
  display: flex;
  justify-content: center;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-t3Pd2vfjKS .mbr-text ul {
    display: block;
  }
}
.cid-t3Pd2vfjKS .mbr-text ul li {
  padding: 0 3rem;
}
@media (max-width: 992px) {
  .cid-t3Pd2vfjKS .mbr-text ul li {
    margin-top: 10px;
    margin-left: 0;
  }
}
.cid-t3Pd2vfjKS .mbr-text ul li::marker {
  color: #ffa41d;
  font-size: 18px;
}
.cid-t3Pd2vfjKS .item-wrapper {
  height: 100%;
}
.cid-t3Pd2vfjKS .item-wrapper .image-wrap {
  height: 100%;
}
.cid-t3Pd2vfjKS .item-wrapper .image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t3Pd2vfjKS .item-wrapper .image-wrap img {
    height: 320px;
  }
}
.cid-t3Pd4hE303 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f9f9fc;
}
.cid-t3Pd4hE303 .item-image {
  padding: 0;
}
@media (max-width: 768px) {
  .cid-t3Pd4hE303 .item-image {
    display: none;
  }
}
.cid-t3Pd4hE303 .item-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.cid-t3Pd4hE303 .item-form {
  padding: 40px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-t3Pd4hE303 .item-form {
    padding: 25px;
  }
}
.cid-t3Pd4hE303 .item-form .mbr-section-title {
  margin-bottom: 28px;
}
.cid-t3Pd4hE303 .item-form .form-group {
  margin-bottom: 0;
}
.cid-t3Pd4hE303 .item-form .form-control {
  padding: 10px 25px 10px 0;
  background-color: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
  border-radius: 0;
}
.cid-t3Pd4hE303 .item-form .form-control:hover {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pd4hE303 .item-form .form-control:focus {
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #20232a !important;
}
.cid-t3Pd4hE303 .item-form .form-check {
  margin: 22px 0 27px 0;
  padding-left: 27px;
}
.cid-t3Pd4hE303 .form-check-input:focus {
  box-shadow: none;
  border-color: #20232a;
}
.cid-t3Pd4hE303 .form-check-input:checked {
  background-color: #20232a;
}
.cid-t3Pd4hE303 .btn {
  width: 100%;
  height: 55px;
  min-width: 170px;
  margin-top: 0;
  flex-direction: row-reverse;
  letter-spacing: 0.8px;
  box-shadow: none;
  border: none !important;
}
.cid-t3Pd4hE303 .btn:hover {
  box-shadow: none;
}
.cid-t3Pd4hE303 .mbr-section-title {
  color: #20232a;
}
.cid-t3Pd4hE303 .form-check-label {
  color: #84858a;
}
.cid-t3Pfc2MVKn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-t3Pfc2MVKn .mbr-section-head {
  padding: 0 1rem;
}
.cid-t3Pfc2MVKn img,
.cid-t3Pfc2MVKn .item-img {
  width: 100%;
}
.cid-t3Pfc2MVKn .item:focus,
.cid-t3Pfc2MVKn span:focus {
  outline: none;
}
.cid-t3Pfc2MVKn .slide-content {
  position: relative;
  height: fit-content;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
  background: #ffffff;
  padding: 74px 40px;
}
@media (max-width: 992px) {
  .cid-t3Pfc2MVKn .slide-content {
    padding: 54px 30px;
  }
}
@media (max-width: 768px) {
  .cid-t3Pfc2MVKn .slide-content {
    padding: 34px 20px;
  }
}
.cid-t3Pfc2MVKn .slide-content .item-rating {
  display: inline-flex;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .cid-t3Pfc2MVKn .slide-content .item-rating {
    margin-bottom: 16px;
  }
}
.cid-t3Pfc2MVKn .slide-content .item-rating span {
  margin: 0;
  color: #ffa41d;
  font-size: 19px;
}
.cid-t3Pfc2MVKn .slide-content .mbr-text {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-t3Pfc2MVKn .slide-content .mbr-text {
    margin-bottom: 10px;
  }
}
.cid-t3Pfc2MVKn .slide-content .item-title {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cid-t3Pfc2MVKn .slide-content .item-title {
    margin-bottom: 3px;
  }
}
.cid-t3Pfc2MVKn .slide-content .item-subtitle {
  margin: 0;
}
.cid-t3Pfc2MVKn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 338px;
  max-width: 338px;
}
@media (max-width: 768px) {
  .cid-t3Pfc2MVKn .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t3Pfc2MVKn .embla__button--next,
.cid-t3Pfc2MVKn .embla__button--prev {
  display: flex;
}
.cid-t3Pfc2MVKn .embla__button {
  top: -5%;
  width: 38px;
  height: 38px;
  margin-top: -1.5rem;
  font-size: 14px;
  background-color: transparent;
  color: #ffa41d;
  border: 2px solid #ffa41d;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t3Pfc2MVKn .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t3Pfc2MVKn .embla__button:hover {
  background: transparent;
  opacity: .7;
}
.cid-t3Pfc2MVKn .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3Pfc2MVKn .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3Pfc2MVKn .embla__button {
    top: auto;
  }
}
.cid-t3Pfc2MVKn .embla {
  position: relative;
  width: 100%;
}
.cid-t3Pfc2MVKn .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t3Pfc2MVKn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t3Pfc2MVKn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t3Pfc2MVKn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t3Pfc2MVKn .embla__dots {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cid-t3Pfc2MVKn .embla__dots {
    margin-top: 31px;
  }
}
.cid-t3Pfc2MVKn .embla__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #adaeb1;
  margin: 0 6px;
  padding: 0;
}
.cid-t3Pfc2MVKn .embla__dot:focus {
  background: #ffa41d;
}
.cid-t3Pfc2MVKn .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-t3Pfc2MVKn .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-t3Pfc2MVKn .mbr-text {
  color: #84858a;
}
.cid-t3Pfc2MVKn .item-title {
  color: #20232a;
  text-align: left;
}
.cid-t3Pfc2MVKn .item-subtitle {
  color: #adaeb1;
  text-align: left;
}
.cid-t3Pfc2MVKn .mbr-text,
.cid-t3Pfc2MVKn .item-rating {
  text-align: left;
}
.cid-t3Pd5DEOuZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3Pd5DEOuZ .text-wrapper {
  padding: 1rem;
}
.cid-t3Pd5DEOuZ .row {
  margin: 0;
}
.cid-t3Pd5DEOuZ .mbr-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Pd5DEOuZ .icon {
  margin: -10.5rem auto 0;
  width: 102px;
  height: 102px;
  background: #fafafa;
  padding: 0;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-t3Pd5DEOuZ .icon {
    width: 70px;
    height: 70px;
    margin: -25rem auto 0;
  }
}
@media (max-width: 576px) {
  .cid-t3Pd5DEOuZ .icon {
    margin: -47.3rem auto 0;
  }
}
.cid-t3Pd5DEOuZ .icon span {
  color: #84858a;
  font-size: 25px;
}
.cid-t3Pd5DEOuZ .image {
  padding: 0;
  position: relative;
}
.cid-t3Pd5DEOuZ .image .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #20232a;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-t3Pd5DEOuZ .image:hover .image-overlay {
  opacity: .2;
}
.cid-t3Pd5DEOuZ .image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  pointer-events: visible;
}
.cid-t3Pd6l5PtY {
  padding-top: 3rem;
  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;
  border-top: 1px solid #65676c;
  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;
}
