body {
  font-family: 'Roboto Slab', serif;
}
.display-1 {
  font-family: 'Roboto Slab', serif;
  font-size: 5.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.71875rem;
}
.display-2 {
  font-family: 'Roboto Slab', serif;
  font-size: 3.5625rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.453125rem;
}
.display-4 {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1875rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.484375rem;
}
/* ---- 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: 4.3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.7625rem;
    font-size: calc( 2.53125rem + (5.375 - 2.53125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.53125rem + (5.375 - 2.53125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.85rem;
    font-size: calc( 1.8968749999999999rem + (3.5625 - 1.8968749999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.8968749999999999rem + (3.5625 - 1.8968749999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.95rem;
    font-size: calc( 1.065625rem + (1.1875 - 1.065625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.065625rem + (1.1875 - 1.065625) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.0625rem 3.5625rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #111213 !important;
}
.bg-success {
  background-color: #b18161 !important;
}
.bg-info {
  background-color: #52586a !important;
}
.bg-warning {
  background-color: #909190 !important;
}
.bg-danger {
  background-color: #ff4433 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #111213 !important;
  border-color: #111213 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3843c7 !important;
  border-color: #3843c7 !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: #252c83 !important;
  border-color: #252c83 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #252c83 !important;
  border-color: #252c83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #52586a !important;
  border-color: #52586a !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: #2c2f39 !important;
  border-color: #2c2f39 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2c2f39 !important;
  border-color: #2c2f39 !important;
}
.btn-success,
.btn-success:active {
  background-color: #b18161 !important;
  border-color: #b18161 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #7d573e !important;
  border-color: #7d573e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7d573e !important;
  border-color: #7d573e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #909190 !important;
  border-color: #909190 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #656665 !important;
  border-color: #656665 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #656665 !important;
  border-color: #656665 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff4433 !important;
  border-color: #ff4433 !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: #db1200 !important;
  border-color: #db1200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #db1200 !important;
  border-color: #db1200 !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: #111213;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #111213 !important;
  border-color: #111213 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3843c7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #252c83 !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: #3843c7 !important;
  border-color: #3843c7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #52586a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2c2f39 !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: #52586a !important;
  border-color: #52586a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b18161;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #7d573e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b18161 !important;
  border-color: #b18161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #909190;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #656665 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #909190 !important;
  border-color: #909190 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff4433;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #db1200 !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: #ff4433 !important;
  border-color: #ff4433 !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: #111213 !important;
}
.text-secondary {
  color: #3843c7 !important;
}
.text-success {
  color: #b18161 !important;
}
.text-info {
  color: #52586a !important;
}
.text-warning {
  color: #909190 !important;
}
.text-danger {
  color: #ff4433 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #111213 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3843c7 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #b18161 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #52586a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #909190 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff4433 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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 0.3s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #111213;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #52586a;
}
.alert-warning {
  background-color: #909190;
}
.alert-danger {
  background-color: #ff4433;
}
.mbr-gallery-filter li.active .btn {
  background-color: #111213;
  border-color: #111213;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c1c4c8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dbc5b6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9198aa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d0d0d0;
}
.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: 'Roboto Slab', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #111213 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #111213;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #111213;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #111213;
}
.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: #111213;
  border-bottom-color: #111213;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #111213 !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: #3843c7 !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='%23111213' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1356px;
}
a {
  transition: color 300ms ease !important;
}
a.btn {
  transition: color 300ms ease !important;
  box-shadow: none !important;
}
.container-fluid {
  padding-left: 70px;
  padding-right: 70px;
}
@media (max-width: 1000px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 420px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tu2UdydaFj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tu2UdydaFj .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tu2UdydaFj nav.navbar {
  position: fixed;
}
.cid-tu2UdydaFj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu2UdydaFj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu2UdydaFj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu2UdydaFj .dropdown-item:hover,
.cid-tu2UdydaFj .dropdown-item:focus {
  background: #111213 !important;
  color: white !important;
}
.cid-tu2UdydaFj .dropdown-item:hover span {
  color: white;
}
.cid-tu2UdydaFj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu2UdydaFj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu2UdydaFj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu2UdydaFj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu2UdydaFj .nav-link {
  position: relative;
}
.cid-tu2UdydaFj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu2UdydaFj .container {
    flex-wrap: nowrap;
  }
}
.cid-tu2UdydaFj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tu2UdydaFj .dropdown-menu,
.cid-tu2UdydaFj .navbar.opened {
  background: #b8b8b8 !important;
}
.cid-tu2UdydaFj .nav-item:focus,
.cid-tu2UdydaFj .nav-link:focus {
  outline: none;
}
.cid-tu2UdydaFj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu2UdydaFj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu2UdydaFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu2UdydaFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu2UdydaFj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu2UdydaFj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu2UdydaFj .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #b8b8b8;
}
.cid-tu2UdydaFj .navbar.opened {
  transition: all 0.3s;
}
.cid-tu2UdydaFj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu2UdydaFj .navbar .navbar-logo img {
  width: auto;
}
.cid-tu2UdydaFj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu2UdydaFj .navbar.collapsed {
  justify-content: center;
}
.cid-tu2UdydaFj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu2UdydaFj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu2UdydaFj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tu2UdydaFj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu2UdydaFj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu2UdydaFj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tu2UdydaFj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu2UdydaFj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu2UdydaFj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu2UdydaFj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu2UdydaFj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu2UdydaFj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu2UdydaFj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu2UdydaFj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tu2UdydaFj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu2UdydaFj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu2UdydaFj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu2UdydaFj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu2UdydaFj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu2UdydaFj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu2UdydaFj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu2UdydaFj .navbar.navbar-short {
  min-height: 80px;
}
.cid-tu2UdydaFj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu2UdydaFj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tu2UdydaFj .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu2UdydaFj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu2UdydaFj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu2UdydaFj .dropdown-item.active,
.cid-tu2UdydaFj .dropdown-item:active {
  background-color: transparent;
}
.cid-tu2UdydaFj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu2UdydaFj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu2UdydaFj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu2UdydaFj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #b8b8b8;
}
.cid-tu2UdydaFj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu2UdydaFj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu2UdydaFj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu2UdydaFj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu2UdydaFj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu2UdydaFj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3f37c9;
}
.cid-tu2UdydaFj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu2UdydaFj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu2UdydaFj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu2UdydaFj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu2UdydaFj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu2UdydaFj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu2UdydaFj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu2UdydaFj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu2UdydaFj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tu2UdydaFj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu2UdydaFj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu2UdydaFj .navbar {
    height: 70px;
  }
  .cid-tu2UdydaFj .navbar.opened {
    height: auto;
  }
  .cid-tu2UdydaFj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sPvmfNW6U4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111213;
}
.cid-sPvmfNW6U4 .carousel {
  height: 800px;
}
.cid-sPvmfNW6U4 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sPvmfNW6U4 .carousel-item,
.cid-sPvmfNW6U4 .carousel-inner {
  height: 100%;
}
.cid-sPvmfNW6U4 .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
}
.cid-sPvmfNW6U4 .carousel-caption {
  bottom: initial;
  text-align: left;
  position: absolute;
  right: initial;
  left: initial;
  padding-left: 120px;
  padding-right: 120px;
}
.cid-sPvmfNW6U4 .mbr-text {
  margin-bottom: 10px;
}
.cid-sPvmfNW6U4 .mbr-section-text {
  margin-bottom: 10px;
}
.cid-sPvmfNW6U4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sPvmfNW6U4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sPvmfNW6U4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: .8;
}
@media (max-width: 767px) {
  .cid-sPvmfNW6U4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sPvmfNW6U4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sPvmfNW6U4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sPvmfNW6U4 .carousel-control {
  top: 50%;
  width: 67px;
  height: 67px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #07091f;
  transition: all 0.3s;
  opacity: 1;
}
.cid-sPvmfNW6U4 .carousel-control.carousel-control-prev {
  left: -134px;
}
.cid-sPvmfNW6U4 .carousel-control.carousel-control-next {
  left: -67px;
}
.cid-sPvmfNW6U4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3rem !important;
  justify-content: flex-start;
  margin-left: 120px;
}
.cid-sPvmfNW6U4 .carousel-indicators li {
  margin-right: 23px;
  max-width: 10px;
  height: 10px;
  width: 10px;
  max-height: 10px;
  background-color: #040e17;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
  border: none;
}
.cid-sPvmfNW6U4 .carousel-indicators li:hover {
  background-color: #b18161;
}
.cid-sPvmfNW6U4 .carousel-indicators li.active {
  margin-right: 23px;
  max-width: 10px;
  height: 10px;
  width: 10px;
  max-height: 10px;
  background-color: #b18161;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
  border: none;
}
@media (max-width: 768px) {
  .cid-sPvmfNW6U4 .carousel-indicators {
    display: none !important;
  }
}
.cid-sPvmfNW6U4 .container {
  margin-right: 70px;
  margin-left: 70px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: initial;
  max-width: initial !important;
}
@media (max-width: 1000px) {
  .cid-sPvmfNW6U4 .container {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
  .cid-sPvmfNW6U4 .carousel-caption {
    padding-left: 30px;
    padding-right: 30px;
  }
  .cid-sPvmfNW6U4 .carousel-indicators {
    margin-left: 30px;
  }
}
.cid-sPvmfNW6U4 .controls {
  position: absolute;
  top: 50%;
  right: 0;
}
@media (max-width: 1260px) {
  .cid-sPvmfNW6U4 .controls {
    display: none;
  }
}
.cid-sPvmfNW6U4 P {
  color: #111213;
}
.cid-sPvmfNW6U4 .mbr-text,
.cid-sPvmfNW6U4 .mbr-section-btn {
  color: #f2f5fb;
}
.cid-sPvmfNW6U4 .active {
  transition: all 0.5s !important;
}
.cid-sPvmfNW6U4 .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-sPvmfNW6U4 .mbr-section-text,
.cid-sPvmfNW6U4 .mbr-section-btn {
  color: #ffffff;
}
.cid-ttW0dHsmek {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-ttW0dHsmek .row {
  justify-content: center;
}
.cid-ttW0dHsmek .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-ttW0dHsmek .mbr-section-title {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-ttW0dHsmek .content-card {
  margin-top: 40px;
}
.cid-ttW0dHsmek .content-card .content-card-icon {
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  margin: 0 auto 38px;
}
.cid-ttW0dHsmek .content-card .content-card-icon span {
  width: 42px;
  height: 42px;
  color: #ff4712;
  font-size: 42px;
}
.cid-ttW0dHsmek .content-card .content-card-text .mbr-card-title {
  margin-bottom: 15px;
}
.cid-ttW0dHsmek .content-card .content-card-text .mbr-card-text {
  margin-bottom: 0;
}
.cid-ttW0dHsmek .mbr-card-title {
  color: #080808;
  text-align: center;
}
.cid-ttW0dHsmek .mbr-card-text {
  color: #65676c;
  text-align: center;
}
.cid-tu1IsOszDE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111213;
}
.cid-tu1IsOszDE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1IsOszDE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1IsOszDE .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 0.6fr 1fr;
  grid-template-columns: 0.6fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tu1IsOszDE .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}
.cid-tu1IsOszDE .card-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cid-tu1IsOszDE .card-col {
    grid-row-start: 2;
    grid-row-end: 3;
    padding: 0;
  }
}
.cid-tu1IsOszDE .card-title {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-tu1IsOszDE .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-tu1IsOszDE .mbr-section-btn {
  margin-top: 30px;
}
.cid-tu1IsOszDE .card-wrapper-bottom {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tu1IsOszDE .img-col {
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.cid-tu1IsOszDE .image-wrapper {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-tu1IsOszDE .image-wrapper {
    margin-top: 0;
  }
}
.cid-tu1IsOszDE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tu1IsOszDE .mbr-media {
  position: static;
  width: 100%;
}
.cid-tu1IsOszDE .icon-wrap {
  display: flex;
  margin-right: auto;
}
.cid-tu1IsOszDE .icon-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 100%;
  min-height: 120px;
  padding: 10px;
  background-color: #4353ff;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s !important;
}
.cid-tu1IsOszDE .icon-wrap a:hover {
  transform: scale(1.07);
}
@media (max-width: 991px) {
  .cid-tu1IsOszDE .icon-wrap a {
    min-width: 100px;
    min-height: 100px;
  }
}
.cid-tu1IsOszDE .mbr-media span {
  font-size: 16px;
  transition: all 0.3s;
  color: #FFFFFF;
}
.cid-tu1IsOszDE .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tu1IsOszDE .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tu1IsOszDE .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tu1IsOszDE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tu1IsOszDE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tu1IsOszDE .mbr-text,
.cid-tu1IsOszDE .mbr-section-btn {
  color: #ffffff;
}
.cid-tu1KdZ4tAM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu1KdZ4tAM .card {
  background: transparent;
}
.cid-tu1KdZ4tAM .title-section {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .cid-tu1KdZ4tAM .title-section {
    margin-bottom: 3rem;
  }
}
.cid-tu1KdZ4tAM .card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tu1KdZ4tAM .card-img {
    width: 345px;
    height: 345px;
  }
}
.cid-tu1KdZ4tAM .header-container {
  padding: 10px;
}
.cid-tu1KdZ4tAM .card-body {
  padding: 10px;
}
.cid-tu1KdZ4tAM .mbr-section-title {
  text-align: center;
}
.cid-tu1KdZ4tAM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1KdZ4tAM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1KnD53CT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu1KnD53CT .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu1KnD53CT .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu1KnD53CT .mbr-text,
.cid-tu1KnD53CT .mbr-section-btn {
  text-align: center;
}
.cid-tu1KnD53CT .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu1KnD53CT .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu1KnD53CT .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu1KnD53CT .item-content {
  padding: 15px;
}
.cid-tu1KnD53CT .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu1KnD53CT .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu1KnD53CT .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu1KnD53CT img {
  height: 310px;
  object-fit: cover;
}
.cid-tu1KnD53CT .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu1KnD53CT .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu1KnD53CT .name1,
.cid-tu1KnD53CT .name2 {
  display: inline;
}
.cid-tu1KnD53CT .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu1KnD53CT .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu1KnD53CT .name1 {
  color: #333333;
}
.cid-tu1KnD53CT .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu1KnD53CT .item:nth-child(1),
.cid-tu1KnD53CT .item:nth-child(2),
.cid-tu1KnD53CT .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu1KnD53CT .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu1KnD53CT .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu1KnD53CT .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu1KnD53CT .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu1KnD53CT .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu1PI2vEDn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu1PI2vEDn .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu1PI2vEDn .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu1PI2vEDn .mbr-text,
.cid-tu1PI2vEDn .mbr-section-btn {
  text-align: center;
}
.cid-tu1PI2vEDn .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu1PI2vEDn .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu1PI2vEDn .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu1PI2vEDn .item-content {
  padding: 15px;
}
.cid-tu1PI2vEDn .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu1PI2vEDn .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu1PI2vEDn .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu1PI2vEDn img {
  height: 310px;
  object-fit: cover;
}
.cid-tu1PI2vEDn .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu1PI2vEDn .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu1PI2vEDn .name1,
.cid-tu1PI2vEDn .name2 {
  display: inline;
}
.cid-tu1PI2vEDn .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu1PI2vEDn .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu1PI2vEDn .name1 {
  color: #333333;
}
.cid-tu1PI2vEDn .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu1PI2vEDn .item:nth-child(1),
.cid-tu1PI2vEDn .item:nth-child(2),
.cid-tu1PI2vEDn .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu1PI2vEDn .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu1PI2vEDn .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu1PI2vEDn .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu1PI2vEDn .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu1PI2vEDn .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu1Rv91tKK {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design-3-1080x1080.png");
}
.cid-tu1Rv91tKK .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tu1Rv91tKK .row {
    padding: 0 0.75rem;
  }
}
.cid-tu1Rv91tKK .text-container {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tu1Rv91tKK .text-container {
    margin-bottom: 30px;
  }
}
.cid-tu1Rv91tKK .label-text {
  color: #111111;
}
.cid-tu1Rv91tKK .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.cid-tu1Rv91tKK .card:not(:first-child) {
  border-left: 1px solid #EEEEEE;
}
.cid-tu1Rv91tKK .card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0.5rem;
}
.cid-tu1Rv91tKK .card-text {
  color: #111111;
}
.cid-tu1Rv91tKK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1Rv91tKK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1UEtycRh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tu1UEtycRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1UEtycRh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1UEtycRh .main-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tu1UEtycRh .main-container {
    margin-bottom: 70px;
  }
}
.cid-tu1UEtycRh .mbr-title {
  color: #000000;
}
.cid-tu1UEtycRh .mbr-text {
  color: #000000;
  margin-top: 30px;
}
.cid-tu1UEtycRh .card-row {
  display: flex;
  align-items: stretch;
  row-gap: 20px;
}
@media (min-width: 1200px) {
  .cid-tu1UEtycRh .card-row {
    margin: 0 -20px;
    row-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tu1UEtycRh .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tu1UEtycRh .card {
  border-radius: 0;
}
.cid-tu1UEtycRh .card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 40px 37px 30px;
  background-color: #e2e2e2;
}
@media (max-width: 767px) {
  .cid-tu1UEtycRh .card-wrap {
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .cid-tu1UEtycRh .card-wrap {
    padding: 24px 18px 30px;
  }
}
.cid-tu1UEtycRh .testimonial-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-tu1UEtycRh .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu1UEtycRh .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #747474;
  margin: 0 2px;
}
.cid-tu1UEtycRh .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tu1UEtycRh .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-tu1UEtycRh .card-text {
  color: #747474;
  margin-bottom: 30px;
}
.cid-tu1UEtycRh .card-name-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
.cid-tu1UEtycRh .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 20px;
}
.cid-tu1UEtycRh .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tu1UEtycRh .card-name {
  color: #000000;
}
.cid-tu1UEtycRh .card-prof {
  color: #747474;
}
.cid-tu240pftVF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111213;
}
.cid-tu240pftVF .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-tu240pftVF .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tu240pftVF .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tu240pftVF .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tu240pftVF .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tu240pftVF .social_icons {
  text-align: center;
}
.cid-tu240pftVF .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tu240pftVF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tu240pftVF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tu240pftVF .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tu240pftVF .footer_timework {
    margin-top: 50px;
  }
  .cid-tu240pftVF .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tu240pftVF .mbr-text,
.cid-tu240pftVF .footer_logo,
.cid-tu240pftVF .social_icons {
  color: #ffffff;
}
.cid-tu7mWqZV4N {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tu7mWqZV4N .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tu7mWqZV4N nav.navbar {
  position: fixed;
}
.cid-tu7mWqZV4N .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu7mWqZV4N .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu7mWqZV4N .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu7mWqZV4N .dropdown-item:hover,
.cid-tu7mWqZV4N .dropdown-item:focus {
  background: #111213 !important;
  color: white !important;
}
.cid-tu7mWqZV4N .dropdown-item:hover span {
  color: white;
}
.cid-tu7mWqZV4N .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu7mWqZV4N .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu7mWqZV4N .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu7mWqZV4N .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu7mWqZV4N .nav-link {
  position: relative;
}
.cid-tu7mWqZV4N .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu7mWqZV4N .container {
    flex-wrap: nowrap;
  }
}
.cid-tu7mWqZV4N .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tu7mWqZV4N .dropdown-menu,
.cid-tu7mWqZV4N .navbar.opened {
  background: #b8b8b8 !important;
}
.cid-tu7mWqZV4N .nav-item:focus,
.cid-tu7mWqZV4N .nav-link:focus {
  outline: none;
}
.cid-tu7mWqZV4N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu7mWqZV4N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu7mWqZV4N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu7mWqZV4N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu7mWqZV4N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu7mWqZV4N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu7mWqZV4N .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #b8b8b8;
}
.cid-tu7mWqZV4N .navbar.opened {
  transition: all 0.3s;
}
.cid-tu7mWqZV4N .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu7mWqZV4N .navbar .navbar-logo img {
  width: auto;
}
.cid-tu7mWqZV4N .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu7mWqZV4N .navbar.collapsed {
  justify-content: center;
}
.cid-tu7mWqZV4N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu7mWqZV4N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu7mWqZV4N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tu7mWqZV4N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu7mWqZV4N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu7mWqZV4N .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tu7mWqZV4N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu7mWqZV4N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu7mWqZV4N .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu7mWqZV4N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu7mWqZV4N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu7mWqZV4N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu7mWqZV4N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu7mWqZV4N .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tu7mWqZV4N .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu7mWqZV4N .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu7mWqZV4N .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu7mWqZV4N .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu7mWqZV4N .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu7mWqZV4N .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu7mWqZV4N .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu7mWqZV4N .navbar.navbar-short {
  min-height: 80px;
}
.cid-tu7mWqZV4N .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu7mWqZV4N .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tu7mWqZV4N .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu7mWqZV4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu7mWqZV4N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu7mWqZV4N .dropdown-item.active,
.cid-tu7mWqZV4N .dropdown-item:active {
  background-color: transparent;
}
.cid-tu7mWqZV4N .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu7mWqZV4N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu7mWqZV4N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu7mWqZV4N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #b8b8b8;
}
.cid-tu7mWqZV4N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu7mWqZV4N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu7mWqZV4N ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu7mWqZV4N .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu7mWqZV4N button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu7mWqZV4N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3f37c9;
}
.cid-tu7mWqZV4N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu7mWqZV4N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu7mWqZV4N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu7mWqZV4N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu7mWqZV4N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu7mWqZV4N nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu7mWqZV4N nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu7mWqZV4N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu7mWqZV4N .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tu7mWqZV4N a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu7mWqZV4N .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu7mWqZV4N .navbar {
    height: 70px;
  }
  .cid-tu7mWqZV4N .navbar.opened {
    height: auto;
  }
  .cid-tu7mWqZV4N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu7n4v2nZk {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/computers-in-classroom-1000x656.jpg");
}
.cid-tu7n4v2nZk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu7n4v2nZk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu7n4v2nZk .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tu7tMOMTAF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111213;
}
.cid-tu7tMOMTAF .container {
  max-width: 56rem;
}
.cid-tu7tMOMTAF .main-row {
  align-items: flex-start;
  width: 100%;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .cid-tu7tMOMTAF .main-row {
    flex-wrap: wrap;
  }
}
.cid-tu7tMOMTAF .title-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 0;
  position: sticky;
  top: 0;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .cid-tu7tMOMTAF .title-container {
    padding-right: 1.5rem !important;
    margin-bottom: 0;
  }
}
.cid-tu7tMOMTAF .mbr-section-head {
  margin-bottom: 0;
  padding: 0 !important;
}
.cid-tu7tMOMTAF .mbr-section-title {
  color: #DDFF55;
  margin-bottom: 0;
}
.cid-tu7tMOMTAF .mbr-section-subtitle {
  color: #DDFF55;
}
.cid-tu7tMOMTAF .opinion-container {
  display: flex;
  max-width: 17rem;
  flex-direction: column;
  width: max-content;
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid #ddff55;
}
.cid-tu7tMOMTAF .opinion-container .iconfont-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #DDFF55;
}
@media (max-width: 767px) {
  .cid-tu7tMOMTAF .opinion-container {
    display: none;
  }
}
.cid-tu7tMOMTAF .opinion-stars {
  display: flex;
  margin-bottom: 0.5rem;
}
.cid-tu7tMOMTAF .opinion-comment {
  color: #DDFF55;
  margin-bottom: 0;
}
.cid-tu7tMOMTAF .card-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-tu7tMOMTAF .card-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 4px;
}
.cid-tu7tMOMTAF .comment-text {
  color: #f3f4ef;
  width: 100%;
  margin-top: 4px;
  opacity: 0.8;
}
.cid-tu7tMOMTAF .card-link-text {
  width: 100%;
  color: #fbfbfb;
}
.cid-tu7tMOMTAF .border-text {
  margin-top: 1.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  width: 100%;
  border-left: 1px solid #f3f4ef;
}
.cid-tu7tMOMTAF .card-border {
  padding: 2.5rem;
  border-style: solid;
  border-width: 1px;
  border-color: #f3f4ef;
}
@media (max-width: 575px) {
  .cid-tu7tMOMTAF .card-border {
    padding: 2rem;
  }
}
.cid-tu7tMOMTAF .content-container {
  flex-grow: 1;
}
.cid-tu7tMOMTAF form .dragArea.row {
  justify-content: flex-start;
  margin-top: 40px;
}
.cid-tu7tMOMTAF form .mbr-section-btn {
  margin-top: 20px;
}
.cid-tu7tMOMTAF form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}
.cid-tu7tMOMTAF form .form-group {
  margin-bottom: 20px !important;
}
.cid-tu7tMOMTAF form .form-control {
  border: none !important;
  border-bottom: 1px solid #f3f4ef !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #f3f4ef;
  font-weight: 400;
}
.cid-tu7tMOMTAF form .form-control::-webkit-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form .form-control::-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form .form-control:-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form .form-control:-ms-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form textarea {
  height: 96px;
}
.cid-tu7tMOMTAF form input,
.cid-tu7tMOMTAF form textarea {
  background-color: transparent !important;
}
.cid-tu7tMOMTAF form input:active,
.cid-tu7tMOMTAF form textarea:active,
.cid-tu7tMOMTAF form input:focus,
.cid-tu7tMOMTAF form textarea:focus,
.cid-tu7tMOMTAF form input:hover,
.cid-tu7tMOMTAF form textarea:hover {
  border-bottom-color: #111213 !important;
}
.cid-tu7tMOMTAF form input:active::-webkit-input-placeholder,
.cid-tu7tMOMTAF form textarea:active::-webkit-input-placeholder,
.cid-tu7tMOMTAF form input:focus::-webkit-input-placeholder,
.cid-tu7tMOMTAF form textarea:focus::-webkit-input-placeholder,
.cid-tu7tMOMTAF form input:hover::-webkit-input-placeholder,
.cid-tu7tMOMTAF form textarea:hover::-webkit-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form input:active::-moz-placeholder,
.cid-tu7tMOMTAF form textarea:active::-moz-placeholder,
.cid-tu7tMOMTAF form input:focus::-moz-placeholder,
.cid-tu7tMOMTAF form textarea:focus::-moz-placeholder,
.cid-tu7tMOMTAF form input:hover::-moz-placeholder,
.cid-tu7tMOMTAF form textarea:hover::-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form input:active:-moz-placeholder,
.cid-tu7tMOMTAF form textarea:active:-moz-placeholder,
.cid-tu7tMOMTAF form input:focus:-moz-placeholder,
.cid-tu7tMOMTAF form textarea:focus:-moz-placeholder,
.cid-tu7tMOMTAF form input:hover:-moz-placeholder,
.cid-tu7tMOMTAF form textarea:hover:-moz-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form input:active:-ms-input-placeholder,
.cid-tu7tMOMTAF form textarea:active:-ms-input-placeholder,
.cid-tu7tMOMTAF form input:focus:-ms-input-placeholder,
.cid-tu7tMOMTAF form textarea:focus:-ms-input-placeholder,
.cid-tu7tMOMTAF form input:hover:-ms-input-placeholder,
.cid-tu7tMOMTAF form textarea:hover:-ms-input-placeholder {
  color: rgba(243, 244, 239, 0.8);
}
.cid-tu7tMOMTAF form .row {
  margin-left: -20px !important;
  margin-right: -20px !important;
}
.cid-tu7tMOMTAF form .row [class*=col] {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-tu7tMOMTAF form label {
  color: #f3f4ef;
}
.cid-tu7tMOMTAF form .form-check-input {
  border-color: #f3f4ef;
  outline: none !important;
  box-shadow: none !important;
}
.cid-tu7tMOMTAF form .form-check-input:focus,
.cid-tu7tMOMTAF form .form-check-input:hover {
  border-color: #111213 !important;
}
.cid-tu7tMOMTAF form .form-check-input:checked {
  border-color: #111213 !important;
}
.cid-tu7tMOMTAF .phone-container,
.cid-tu7tMOMTAF .address-container {
  margin-top: 1.5rem;
}
.cid-tu7mWCdxWV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111213;
}
.cid-tu7mWCdxWV .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-tu7mWCdxWV .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tu7mWCdxWV .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tu7mWCdxWV .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tu7mWCdxWV .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tu7mWCdxWV .social_icons {
  text-align: center;
}
.cid-tu7mWCdxWV .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tu7mWCdxWV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tu7mWCdxWV .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tu7mWCdxWV .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tu7mWCdxWV .footer_timework {
    margin-top: 50px;
  }
  .cid-tu7mWCdxWV .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tu7mWCdxWV .mbr-text,
.cid-tu7mWCdxWV .footer_logo,
.cid-tu7mWCdxWV .social_icons {
  color: #ffffff;
}
.cid-tu6WsDoX4P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tu6WsDoX4P .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tu6WsDoX4P nav.navbar {
  position: fixed;
}
.cid-tu6WsDoX4P .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu6WsDoX4P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu6WsDoX4P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu6WsDoX4P .dropdown-item:hover,
.cid-tu6WsDoX4P .dropdown-item:focus {
  background: #111213 !important;
  color: white !important;
}
.cid-tu6WsDoX4P .dropdown-item:hover span {
  color: white;
}
.cid-tu6WsDoX4P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu6WsDoX4P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu6WsDoX4P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu6WsDoX4P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu6WsDoX4P .nav-link {
  position: relative;
}
.cid-tu6WsDoX4P .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu6WsDoX4P .container {
    flex-wrap: nowrap;
  }
}
.cid-tu6WsDoX4P .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tu6WsDoX4P .dropdown-menu,
.cid-tu6WsDoX4P .navbar.opened {
  background: #b8b8b8 !important;
}
.cid-tu6WsDoX4P .nav-item:focus,
.cid-tu6WsDoX4P .nav-link:focus {
  outline: none;
}
.cid-tu6WsDoX4P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu6WsDoX4P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu6WsDoX4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu6WsDoX4P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu6WsDoX4P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu6WsDoX4P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu6WsDoX4P .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #b8b8b8;
}
.cid-tu6WsDoX4P .navbar.opened {
  transition: all 0.3s;
}
.cid-tu6WsDoX4P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu6WsDoX4P .navbar .navbar-logo img {
  width: auto;
}
.cid-tu6WsDoX4P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu6WsDoX4P .navbar.collapsed {
  justify-content: center;
}
.cid-tu6WsDoX4P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu6WsDoX4P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu6WsDoX4P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tu6WsDoX4P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu6WsDoX4P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu6WsDoX4P .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tu6WsDoX4P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu6WsDoX4P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu6WsDoX4P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu6WsDoX4P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu6WsDoX4P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu6WsDoX4P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu6WsDoX4P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu6WsDoX4P .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tu6WsDoX4P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu6WsDoX4P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu6WsDoX4P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu6WsDoX4P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu6WsDoX4P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu6WsDoX4P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu6WsDoX4P .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu6WsDoX4P .navbar.navbar-short {
  min-height: 80px;
}
.cid-tu6WsDoX4P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu6WsDoX4P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tu6WsDoX4P .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu6WsDoX4P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu6WsDoX4P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu6WsDoX4P .dropdown-item.active,
.cid-tu6WsDoX4P .dropdown-item:active {
  background-color: transparent;
}
.cid-tu6WsDoX4P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu6WsDoX4P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu6WsDoX4P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu6WsDoX4P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #b8b8b8;
}
.cid-tu6WsDoX4P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu6WsDoX4P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu6WsDoX4P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu6WsDoX4P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu6WsDoX4P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu6WsDoX4P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3f37c9;
}
.cid-tu6WsDoX4P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu6WsDoX4P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu6WsDoX4P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu6WsDoX4P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu6WsDoX4P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu6WsDoX4P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu6WsDoX4P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu6WsDoX4P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu6WsDoX4P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tu6WsDoX4P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu6WsDoX4P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu6WsDoX4P .navbar {
    height: 70px;
  }
  .cid-tu6WsDoX4P .navbar.opened {
    height: auto;
  }
  .cid-tu6WsDoX4P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu7dFwaEfB {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/programmer-students-660x440.jpg");
}
.cid-tu7dFwaEfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu7dFwaEfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu7dFwaEfB .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tu6WsHT9hK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111213;
}
.cid-tu6WsHT9hK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu6WsHT9hK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6WsHT9hK .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 0.6fr 1fr;
  grid-template-columns: 0.6fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tu6WsHT9hK .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}
.cid-tu6WsHT9hK .card-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cid-tu6WsHT9hK .card-col {
    grid-row-start: 2;
    grid-row-end: 3;
    padding: 0;
  }
}
.cid-tu6WsHT9hK .card-title {
  margin-bottom: 30px;
  color: #ffffff;
}
.cid-tu6WsHT9hK .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-tu6WsHT9hK .mbr-section-btn {
  margin-top: 30px;
}
.cid-tu6WsHT9hK .card-wrapper-bottom {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tu6WsHT9hK .img-col {
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.cid-tu6WsHT9hK .image-wrapper {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-tu6WsHT9hK .image-wrapper {
    margin-top: 0;
  }
}
.cid-tu6WsHT9hK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tu6WsHT9hK .mbr-media {
  position: static;
  width: 100%;
}
.cid-tu6WsHT9hK .icon-wrap {
  display: flex;
  margin-right: auto;
}
.cid-tu6WsHT9hK .icon-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 100%;
  min-height: 120px;
  padding: 10px;
  background-color: #4353ff;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s !important;
}
.cid-tu6WsHT9hK .icon-wrap a:hover {
  transform: scale(1.07);
}
@media (max-width: 991px) {
  .cid-tu6WsHT9hK .icon-wrap a {
    min-width: 100px;
    min-height: 100px;
  }
}
.cid-tu6WsHT9hK .mbr-media span {
  font-size: 16px;
  transition: all 0.3s;
  color: #FFFFFF;
}
.cid-tu6WsHT9hK .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tu6WsHT9hK .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tu6WsHT9hK .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tu6WsHT9hK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tu6WsHT9hK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tu6WsHT9hK .mbr-text,
.cid-tu6WsHT9hK .mbr-section-btn {
  color: #ffffff;
}
.cid-tu7egsJjAx {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f5fb;
}
.cid-tu7egsJjAx .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f5fb;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tu7egsJjAx .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tu7egsJjAx .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tu7egsJjAx .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tu7egsJjAx .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tu7egsJjAx .mbr-text {
  color: #000000;
}
.cid-tu7myq523D {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f5fb;
}
.cid-tu7myq523D .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2f5fb;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tu7myq523D .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tu7myq523D .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tu7myq523D .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tu7myq523D .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tu7myq523D .mbr-text {
  color: #000000;
}
.cid-tu7l5Ye36c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tu7l5Ye36c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu7l5Ye36c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu7l5Ye36c .main-container {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tu7l5Ye36c .main-container {
    margin-bottom: 70px;
  }
}
.cid-tu7l5Ye36c .mbr-title {
  color: #000000;
}
.cid-tu7l5Ye36c .mbr-text {
  color: #000000;
  margin-top: 30px;
}
.cid-tu7l5Ye36c .card-row {
  display: flex;
  align-items: stretch;
  row-gap: 20px;
}
@media (min-width: 1200px) {
  .cid-tu7l5Ye36c .card-row {
    margin: 0 -20px;
    row-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tu7l5Ye36c .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tu7l5Ye36c .card {
  border-radius: 0;
}
.cid-tu7l5Ye36c .card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 40px 37px 30px;
  background-color: #e2e2e2;
}
@media (max-width: 767px) {
  .cid-tu7l5Ye36c .card-wrap {
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .cid-tu7l5Ye36c .card-wrap {
    padding: 24px 18px 30px;
  }
}
.cid-tu7l5Ye36c .testimonial-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cid-tu7l5Ye36c .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu7l5Ye36c .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #747474;
  margin: 0 2px;
}
.cid-tu7l5Ye36c .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tu7l5Ye36c .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-tu7l5Ye36c .card-text {
  color: #747474;
  margin-bottom: 30px;
}
.cid-tu7l5Ye36c .card-name-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
.cid-tu7l5Ye36c .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 20px;
}
.cid-tu7l5Ye36c .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tu7l5Ye36c .card-name {
  color: #000000;
}
.cid-tu7l5Ye36c .card-prof {
  color: #747474;
}
.cid-tu6WsNNAV3 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design-3-1080x1080.png");
}
.cid-tu6WsNNAV3 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tu6WsNNAV3 .row {
    padding: 0 0.75rem;
  }
}
.cid-tu6WsNNAV3 .text-container {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tu6WsNNAV3 .text-container {
    margin-bottom: 30px;
  }
}
.cid-tu6WsNNAV3 .label-text {
  color: #111111;
}
.cid-tu6WsNNAV3 .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.cid-tu6WsNNAV3 .card:not(:first-child) {
  border-left: 1px solid #EEEEEE;
}
.cid-tu6WsNNAV3 .card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0.5rem;
}
.cid-tu6WsNNAV3 .card-text {
  color: #111111;
}
.cid-tu6WsNNAV3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu6WsNNAV3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6WsQUyAb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111213;
}
.cid-tu6WsQUyAb .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-tu6WsQUyAb .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tu6WsQUyAb .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tu6WsQUyAb .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tu6WsQUyAb .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tu6WsQUyAb .social_icons {
  text-align: center;
}
.cid-tu6WsQUyAb .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tu6WsQUyAb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tu6WsQUyAb .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tu6WsQUyAb .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tu6WsQUyAb .footer_timework {
    margin-top: 50px;
  }
  .cid-tu6WsQUyAb .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tu6WsQUyAb .mbr-text,
.cid-tu6WsQUyAb .footer_logo,
.cid-tu6WsQUyAb .social_icons {
  color: #ffffff;
}
.cid-tu6QbiUfFZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tu6QbiUfFZ .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tu6QbiUfFZ nav.navbar {
  position: fixed;
}
.cid-tu6QbiUfFZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu6QbiUfFZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu6QbiUfFZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu6QbiUfFZ .dropdown-item:hover,
.cid-tu6QbiUfFZ .dropdown-item:focus {
  background: #111213 !important;
  color: white !important;
}
.cid-tu6QbiUfFZ .dropdown-item:hover span {
  color: white;
}
.cid-tu6QbiUfFZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu6QbiUfFZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu6QbiUfFZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu6QbiUfFZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu6QbiUfFZ .nav-link {
  position: relative;
}
.cid-tu6QbiUfFZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu6QbiUfFZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tu6QbiUfFZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tu6QbiUfFZ .dropdown-menu,
.cid-tu6QbiUfFZ .navbar.opened {
  background: #b8b8b8 !important;
}
.cid-tu6QbiUfFZ .nav-item:focus,
.cid-tu6QbiUfFZ .nav-link:focus {
  outline: none;
}
.cid-tu6QbiUfFZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu6QbiUfFZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu6QbiUfFZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu6QbiUfFZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu6QbiUfFZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu6QbiUfFZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu6QbiUfFZ .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #b8b8b8;
}
.cid-tu6QbiUfFZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tu6QbiUfFZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu6QbiUfFZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tu6QbiUfFZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu6QbiUfFZ .navbar.collapsed {
  justify-content: center;
}
.cid-tu6QbiUfFZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu6QbiUfFZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu6QbiUfFZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tu6QbiUfFZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu6QbiUfFZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu6QbiUfFZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tu6QbiUfFZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu6QbiUfFZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu6QbiUfFZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu6QbiUfFZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu6QbiUfFZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu6QbiUfFZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu6QbiUfFZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu6QbiUfFZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tu6QbiUfFZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu6QbiUfFZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu6QbiUfFZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu6QbiUfFZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu6QbiUfFZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu6QbiUfFZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu6QbiUfFZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu6QbiUfFZ .navbar.navbar-short {
  min-height: 80px;
}
.cid-tu6QbiUfFZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu6QbiUfFZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tu6QbiUfFZ .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu6QbiUfFZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu6QbiUfFZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu6QbiUfFZ .dropdown-item.active,
.cid-tu6QbiUfFZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tu6QbiUfFZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu6QbiUfFZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu6QbiUfFZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu6QbiUfFZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #b8b8b8;
}
.cid-tu6QbiUfFZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu6QbiUfFZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu6QbiUfFZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu6QbiUfFZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu6QbiUfFZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu6QbiUfFZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #3f37c9;
}
.cid-tu6QbiUfFZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu6QbiUfFZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu6QbiUfFZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu6QbiUfFZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu6QbiUfFZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu6QbiUfFZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu6QbiUfFZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu6QbiUfFZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu6QbiUfFZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tu6QbiUfFZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu6QbiUfFZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu6QbiUfFZ .navbar {
    height: 70px;
  }
  .cid-tu6QbiUfFZ .navbar.opened {
    height: auto;
  }
  .cid-tu6QbiUfFZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu77BAADoY {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/computers-in-classroom-1000x656.jpg");
}
.cid-tu77BAADoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu77BAADoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu77BAADoY .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tu6QbpWNah {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu6QbpWNah .card {
  background: transparent;
}
.cid-tu6QbpWNah .title-section {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .cid-tu6QbpWNah .title-section {
    margin-bottom: 3rem;
  }
}
.cid-tu6QbpWNah .card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tu6QbpWNah .card-img {
    width: 345px;
    height: 345px;
  }
}
.cid-tu6QbpWNah .header-container {
  padding: 10px;
}
.cid-tu6QbpWNah .card-body {
  padding: 10px;
}
.cid-tu6QbpWNah .mbr-section-title {
  text-align: center;
}
.cid-tu6QbpWNah .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu6QbpWNah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6Qbro6FR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu6Qbro6FR .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu6Qbro6FR .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu6Qbro6FR .mbr-text,
.cid-tu6Qbro6FR .mbr-section-btn {
  text-align: center;
}
.cid-tu6Qbro6FR .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6Qbro6FR .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu6Qbro6FR .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6Qbro6FR .item-content {
  padding: 15px;
}
.cid-tu6Qbro6FR .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu6Qbro6FR .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu6Qbro6FR .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu6Qbro6FR img {
  height: 310px;
  object-fit: cover;
}
.cid-tu6Qbro6FR .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu6Qbro6FR .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu6Qbro6FR .name1,
.cid-tu6Qbro6FR .name2 {
  display: inline;
}
.cid-tu6Qbro6FR .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu6Qbro6FR .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu6Qbro6FR .name1 {
  color: #333333;
}
.cid-tu6Qbro6FR .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu6Qbro6FR .item:nth-child(1),
.cid-tu6Qbro6FR .item:nth-child(2),
.cid-tu6Qbro6FR .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu6Qbro6FR .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu6Qbro6FR .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu6Qbro6FR .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu6Qbro6FR .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu6Qbro6FR .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu6QbszITg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu6QbszITg .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu6QbszITg .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu6QbszITg .mbr-text,
.cid-tu6QbszITg .mbr-section-btn {
  text-align: center;
}
.cid-tu6QbszITg .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QbszITg .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu6QbszITg .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QbszITg .item-content {
  padding: 15px;
}
.cid-tu6QbszITg .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu6QbszITg .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu6QbszITg .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu6QbszITg img {
  height: 310px;
  object-fit: cover;
}
.cid-tu6QbszITg .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu6QbszITg .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu6QbszITg .name1,
.cid-tu6QbszITg .name2 {
  display: inline;
}
.cid-tu6QbszITg .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu6QbszITg .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu6QbszITg .name1 {
  color: #333333;
}
.cid-tu6QbszITg .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu6QbszITg .item:nth-child(1),
.cid-tu6QbszITg .item:nth-child(2),
.cid-tu6QbszITg .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu6QbszITg .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu6QbszITg .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu6QbszITg .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu6QbszITg .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu6QbszITg .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu6QuIYPGe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu6QuIYPGe .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu6QuIYPGe .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu6QuIYPGe .mbr-text,
.cid-tu6QuIYPGe .mbr-section-btn {
  text-align: center;
}
.cid-tu6QuIYPGe .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QuIYPGe .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu6QuIYPGe .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QuIYPGe .item-content {
  padding: 15px;
}
.cid-tu6QuIYPGe .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu6QuIYPGe .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu6QuIYPGe .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu6QuIYPGe img {
  height: 310px;
  object-fit: cover;
}
.cid-tu6QuIYPGe .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu6QuIYPGe .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu6QuIYPGe .name1,
.cid-tu6QuIYPGe .name2 {
  display: inline;
}
.cid-tu6QuIYPGe .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu6QuIYPGe .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu6QuIYPGe .name1 {
  color: #333333;
}
.cid-tu6QuIYPGe .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu6QuIYPGe .item:nth-child(1),
.cid-tu6QuIYPGe .item:nth-child(2),
.cid-tu6QuIYPGe .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu6QuIYPGe .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu6QuIYPGe .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu6QuIYPGe .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu6QuIYPGe .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu6QuIYPGe .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu6Qvj9zTp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu6Qvj9zTp .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu6Qvj9zTp .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu6Qvj9zTp .mbr-text,
.cid-tu6Qvj9zTp .mbr-section-btn {
  text-align: center;
}
.cid-tu6Qvj9zTp .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6Qvj9zTp .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu6Qvj9zTp .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6Qvj9zTp .item-content {
  padding: 15px;
}
.cid-tu6Qvj9zTp .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu6Qvj9zTp .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu6Qvj9zTp .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu6Qvj9zTp img {
  height: 310px;
  object-fit: cover;
}
.cid-tu6Qvj9zTp .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu6Qvj9zTp .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu6Qvj9zTp .name1,
.cid-tu6Qvj9zTp .name2 {
  display: inline;
}
.cid-tu6Qvj9zTp .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu6Qvj9zTp .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu6Qvj9zTp .name1 {
  color: #333333;
}
.cid-tu6Qvj9zTp .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu6Qvj9zTp .item:nth-child(1),
.cid-tu6Qvj9zTp .item:nth-child(2),
.cid-tu6Qvj9zTp .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu6Qvj9zTp .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu6Qvj9zTp .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu6Qvj9zTp .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu6Qvj9zTp .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu6Qvj9zTp .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu6QvS9BQu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu6QvS9BQu .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu6QvS9BQu .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu6QvS9BQu .mbr-text,
.cid-tu6QvS9BQu .mbr-section-btn {
  text-align: center;
}
.cid-tu6QvS9BQu .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QvS9BQu .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu6QvS9BQu .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QvS9BQu .item-content {
  padding: 15px;
}
.cid-tu6QvS9BQu .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu6QvS9BQu .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu6QvS9BQu .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu6QvS9BQu img {
  height: 310px;
  object-fit: cover;
}
.cid-tu6QvS9BQu .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu6QvS9BQu .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu6QvS9BQu .name1,
.cid-tu6QvS9BQu .name2 {
  display: inline;
}
.cid-tu6QvS9BQu .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu6QvS9BQu .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu6QvS9BQu .name1 {
  color: #333333;
}
.cid-tu6QvS9BQu .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu6QvS9BQu .item:nth-child(1),
.cid-tu6QvS9BQu .item:nth-child(2),
.cid-tu6QvS9BQu .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu6QvS9BQu .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu6QvS9BQu .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu6QvS9BQu .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu6QvS9BQu .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu6QvS9BQu .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu6QwqWvKr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu6QwqWvKr .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu6QwqWvKr .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu6QwqWvKr .mbr-text,
.cid-tu6QwqWvKr .mbr-section-btn {
  text-align: center;
}
.cid-tu6QwqWvKr .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QwqWvKr .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu6QwqWvKr .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu6QwqWvKr .item-content {
  padding: 15px;
}
.cid-tu6QwqWvKr .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu6QwqWvKr .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu6QwqWvKr .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu6QwqWvKr img {
  height: 310px;
  object-fit: cover;
}
.cid-tu6QwqWvKr .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu6QwqWvKr .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu6QwqWvKr .name1,
.cid-tu6QwqWvKr .name2 {
  display: inline;
}
.cid-tu6QwqWvKr .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu6QwqWvKr .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu6QwqWvKr .name1 {
  color: #333333;
}
.cid-tu6QwqWvKr .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu6QwqWvKr .item:nth-child(1),
.cid-tu6QwqWvKr .item:nth-child(2),
.cid-tu6QwqWvKr .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu6QwqWvKr .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu6QwqWvKr .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu6QwqWvKr .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu6QwqWvKr .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu6QwqWvKr .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu78nxMr0w {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu78nxMr0w .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu78nxMr0w .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu78nxMr0w .mbr-text,
.cid-tu78nxMr0w .mbr-section-btn {
  text-align: center;
}
.cid-tu78nxMr0w .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu78nxMr0w .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu78nxMr0w .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu78nxMr0w .item-content {
  padding: 15px;
}
.cid-tu78nxMr0w .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu78nxMr0w .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu78nxMr0w .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu78nxMr0w img {
  height: 310px;
  object-fit: cover;
}
.cid-tu78nxMr0w .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu78nxMr0w .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu78nxMr0w .name1,
.cid-tu78nxMr0w .name2 {
  display: inline;
}
.cid-tu78nxMr0w .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu78nxMr0w .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu78nxMr0w .name1 {
  color: #333333;
}
.cid-tu78nxMr0w .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu78nxMr0w .item:nth-child(1),
.cid-tu78nxMr0w .item:nth-child(2),
.cid-tu78nxMr0w .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu78nxMr0w .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu78nxMr0w .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu78nxMr0w .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu78nxMr0w .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu78nxMr0w .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu79oEtIcP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tu79oEtIcP .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #000000;
  transition: all .3s;
}
.cid-tu79oEtIcP .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tu79oEtIcP .mbr-text,
.cid-tu79oEtIcP .mbr-section-btn {
  text-align: center;
}
.cid-tu79oEtIcP .item-title {
  text-align: left;
  margin: 0;
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu79oEtIcP .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tu79oEtIcP .name {
  color: #333333;
  margin-bottom: 8px;
}
.cid-tu79oEtIcP .item-content {
  padding: 15px;
}
.cid-tu79oEtIcP .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-tu79oEtIcP .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-tu79oEtIcP .name2 {
  margin-bottom: 15px;
  color: #333333;
}
.cid-tu79oEtIcP img {
  height: 310px;
  object-fit: cover;
}
.cid-tu79oEtIcP .item-wrapper:hover {
  box-shadow: 4px 4px 0 0 #000000;
  transform: translate(-3px, -3px);
}
.cid-tu79oEtIcP .line {
  height: 1px;
  width: 100%;
  background-color: #dadada;
}
.cid-tu79oEtIcP .name1,
.cid-tu79oEtIcP .name2 {
  display: inline;
}
.cid-tu79oEtIcP .bottom {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.cid-tu79oEtIcP .name3 {
  margin-bottom: 8px;
  margin-top: 15px;
}
.cid-tu79oEtIcP .name1 {
  color: #333333;
}
.cid-tu79oEtIcP .item {
  margin-top: 16px;
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tu79oEtIcP .item:nth-child(1),
.cid-tu79oEtIcP .item:nth-child(2),
.cid-tu79oEtIcP .item:nth-child(3) {
  margin-top: 0px !important;
}
@media (max-width: 992px) {
  .cid-tu79oEtIcP .features-image:nth-child(3) {
    margin-top: 16px !important;
  }
}
@media (max-width: 768px) {
  .cid-tu79oEtIcP .features-image:nth-child(2) {
    margin-top: 16px !important;
  }
}
.cid-tu79oEtIcP .container {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-tu79oEtIcP .row {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .cid-tu79oEtIcP .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cid-tu7aJHNYJ3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu7aJHNYJ3 .card {
  background: transparent;
}
.cid-tu7aJHNYJ3 .title-section {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .cid-tu7aJHNYJ3 .title-section {
    margin-bottom: 3rem;
  }
}
.cid-tu7aJHNYJ3 .card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tu7aJHNYJ3 .card-img {
    width: 345px;
    height: 345px;
  }
}
.cid-tu7aJHNYJ3 .header-container {
  padding: 10px;
}
.cid-tu7aJHNYJ3 .card-body {
  padding: 10px;
}
.cid-tu7aJHNYJ3 .mbr-section-title {
  text-align: center;
}
.cid-tu7aJHNYJ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu7aJHNYJ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6QDaZshu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-tu6QDaZshu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu6QDaZshu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6QDaZshu .title-col {
  width: 25%;
}
@media (max-width: 991px) {
  .cid-tu6QDaZshu .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tu6QDaZshu .title-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tu6QDaZshu .mbr-section-title {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tu6QDaZshu .mbr-section-title {
    width: 100%;
  }
}
.cid-tu6QDaZshu .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tu6QDaZshu .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tu6QDaZshu .lists-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 75%;
}
@media (max-width: 767px) {
  .cid-tu6QDaZshu .lists-col {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 !important;
  }
}
.cid-tu6QDaZshu .col-list {
  width: 46%;
}
@media (max-width: 767px) {
  .cid-tu6QDaZshu .col-list {
    width: 100%;
    margin: 4rem 0;
  }
}
.cid-tu6QDaZshu .list-title {
  color: #000000;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid currentColor;
}
@media (max-width: 991px) {
  .cid-tu6QDaZshu .list-title {
    padding-bottom: 20px;
  }
}
.cid-tu6QDaZshu .list {
  list-style: none;
  margin: 2rem 0 0 0;
  padding-left: 0;
}
.cid-tu6QDaZshu li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin-bottom: 0;
}
.cid-tu6QDaZshu ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #ee2524;
  font-weight: bold;
  font-size: 1.6rem;
  width: 1.6rem;
}
.cid-tu6QbukRPH {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/untitled-design-3-1080x1080.png");
}
.cid-tu6QbukRPH .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tu6QbukRPH .row {
    padding: 0 0.75rem;
  }
}
.cid-tu6QbukRPH .text-container {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tu6QbukRPH .text-container {
    margin-bottom: 30px;
  }
}
.cid-tu6QbukRPH .label-text {
  color: #111111;
}
.cid-tu6QbukRPH .cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.cid-tu6QbukRPH .card:not(:first-child) {
  border-left: 1px solid #EEEEEE;
}
.cid-tu6QbukRPH .card-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0.5rem;
}
.cid-tu6QbukRPH .card-text {
  color: #111111;
}
.cid-tu6QbukRPH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu6QbukRPH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6QbxNyTV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111213;
}
.cid-tu6QbxNyTV .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cid-tu6QbxNyTV .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tu6QbxNyTV .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tu6QbxNyTV .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tu6QbxNyTV .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tu6QbxNyTV .social_icons {
  text-align: center;
}
.cid-tu6QbxNyTV .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tu6QbxNyTV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tu6QbxNyTV .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tu6QbxNyTV .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tu6QbxNyTV .footer_timework {
    margin-top: 50px;
  }
  .cid-tu6QbxNyTV .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tu6QbxNyTV .mbr-text,
.cid-tu6QbxNyTV .footer_logo,
.cid-tu6QbxNyTV .social_icons {
  color: #ffffff;
}
