.btn {
  border-width: 1px;
}
body {
  font-family: 'Montserrat', sans-serif;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  line-height: 0.9;
}
.display-2 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  line-height: 1.1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.09375rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.75rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #da291c !important;
}
.bg-success {
  background-color: #18a431 !important;
}
.bg-info {
  background-color: #1b85dc !important;
}
.bg-warning {
  background-color: #ffa60b !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #da291c !important;
  border-color: #da291c !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: #8d1b12 !important;
  border-color: #8d1b12 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8d1b12 !important;
  border-color: #8d1b12 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #353535 !important;
  border-color: #353535 !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: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-info,
.btn-info:active {
  background-color: #1b85dc !important;
  border-color: #1b85dc !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: #12568f !important;
  border-color: #12568f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #12568f !important;
  border-color: #12568f !important;
}
.btn-success,
.btn-success:active {
  background-color: #18a431 !important;
  border-color: #18a431 !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: #0d581a !important;
  border-color: #0d581a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0d581a !important;
  border-color: #0d581a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa60b !important;
  border-color: #ffa60b !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: #b37200 !important;
  border-color: #b37200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b37200 !important;
  border-color: #b37200 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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 {
  border-color: #da291c;
  color: #da291c;
}
.btn-secondary-outline {
  border-color: #353535;
  color: #353535;
}
.btn-info-outline {
  border-color: #1b85dc;
  color: #1b85dc;
}
.btn-success-outline {
  border-color: #18a431;
  color: #18a431;
}
.btn-warning-outline {
  border-color: #ffa60b;
  color: #ffa60b;
}
.btn-danger-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-black-outline {
  border-color: #17171a;
  color: #17171a;
}
.btn-white-outline {
  border-color: #ffffff;
  color: #ffffff;
}
.text-primary {
  color: #da291c !important;
}
.text-secondary {
  color: #353535 !important;
}
.text-success {
  color: #18a431 !important;
}
.text-info {
  color: #1b85dc !important;
}
.text-warning {
  color: #ffa60b !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #17171A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #801810 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #020202 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0b4b16 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #104e81 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a46800 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #da291c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1b85dc;
}
.alert-warning {
  background-color: #ffa60b;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #da291c;
  border-color: #da291c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #da291c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8cdca;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #55e66f;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cae4f9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff0d7;
}
.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;
}
blockquote {
  border-color: #da291c;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #da291c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #da291c;
}
.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: #da291c;
  border-bottom-color: #da291c;
}
.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: #da291c !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: #353535 !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='%23da291c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-ttXk7owyLD {
  background-image: url("../../../assets/images/1212-1920x1080.jpeg");
}
.cid-ttXk7owyLD .mbr-section-title {
  color: #ffffff;
}
.cid-ttXk7owyLD .mbr-text,
.cid-ttXk7owyLD .mbr-section-btn {
  color: #fafafa;
}
.cid-tu1G5FuYO0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tu1G5FuYO0 .row {
  flex-direction: row-reverse;
}
.cid-tu1G5FuYO0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tu1G5FuYO0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-tu1G5FuYO0 .text-wrapper {
    margin-left: 0rem;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-tu1G5FuYO0 .text-wrapper {
    margin-left: 0;
    padding: 0 2rem;
  }
}
.cid-tu1G5FuYO0 blockquote {
  padding: 30px 150px 0 0;
  border: none;
  line-height: 1;
}
@media (max-width: 1199px) {
  .cid-tu1G5FuYO0 blockquote {
    padding-right: 100px;
  }
}
.cid-tu1G5FuYO0 .occupation {
  font-size: 1rem;
  margin-top: -0.5rem;
}
.cid-tu1G5FuYO0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1G5FuYO0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1G5FuYO0 .mbr-section-title {
  color: #4b4b4b;
}
.cid-tu1G5FuYO0 .mbr-text {
  color: #222222;
}
.cid-ttXeckEVHK .navbar-dropdown {
  position: relative !important;
}
.cid-ttXeckEVHK .navbar-dropdown {
  position: fixed !important;
}
.cid-ttXeckEVHK .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-ttXeckEVHK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttXeckEVHK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttXeckEVHK .dropdown-item:hover,
.cid-ttXeckEVHK .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-ttXeckEVHK .dropdown-item:hover span {
  color: white;
}
.cid-ttXeckEVHK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttXeckEVHK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttXeckEVHK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttXeckEVHK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttXeckEVHK .nav-link {
  position: relative;
}
.cid-ttXeckEVHK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttXeckEVHK .container {
    flex-wrap: nowrap;
  }
}
.cid-ttXeckEVHK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-ttXeckEVHK .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-ttXeckEVHK .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-ttXeckEVHK .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-ttXeckEVHK .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-ttXeckEVHK .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 12px !important;
}
.cid-ttXeckEVHK .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
/* .cid-ttXeckEVHK .dropdown-menu,
.cid-ttXeckEVHK .navbar.opened {
  background: #001825 !important;
} */
.cid-ttXeckEVHK .nav-item:focus,
.cid-ttXeckEVHK .nav-link:focus {
  outline: none;
}
.cid-ttXeckEVHK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttXeckEVHK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttXeckEVHK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttXeckEVHK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttXeckEVHK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttXeckEVHK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttXeckEVHK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-ttXeckEVHK .navbar.opened {
  transition: all 0.3s;
}
.cid-ttXeckEVHK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttXeckEVHK .navbar .navbar-logo img {
  width: auto;
}
.cid-ttXeckEVHK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttXeckEVHK .navbar.collapsed {
  justify-content: center;
}
.cid-ttXeckEVHK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttXeckEVHK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttXeckEVHK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ttXeckEVHK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttXeckEVHK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttXeckEVHK .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-ttXeckEVHK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttXeckEVHK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttXeckEVHK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttXeckEVHK .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-ttXeckEVHK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttXeckEVHK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttXeckEVHK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttXeckEVHK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttXeckEVHK .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-ttXeckEVHK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttXeckEVHK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttXeckEVHK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttXeckEVHK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttXeckEVHK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttXeckEVHK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttXeckEVHK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttXeckEVHK .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttXeckEVHK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttXeckEVHK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-ttXeckEVHK .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-ttXeckEVHK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttXeckEVHK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttXeckEVHK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttXeckEVHK .dropdown-item.active,
.cid-ttXeckEVHK .dropdown-item:active {
  background-color: transparent;
}
.cid-ttXeckEVHK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttXeckEVHK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttXeckEVHK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttXeckEVHK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-ttXeckEVHK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttXeckEVHK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttXeckEVHK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttXeckEVHK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttXeckEVHK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttXeckEVHK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ttXeckEVHK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttXeckEVHK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttXeckEVHK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttXeckEVHK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttXeckEVHK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttXeckEVHK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttXeckEVHK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttXeckEVHK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttXeckEVHK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttXeckEVHK a.nav-link {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.cid-ttXeckEVHK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ttXeckEVHK .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttXeckEVHK .navbar {
    height: 70px;
  }
  .cid-ttXeckEVHK .navbar.opened {
    height: auto;
  }
  .cid-ttXeckEVHK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-ttXeckEVHK .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-ttXeckEVHK .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-ttXeckEVHK .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-ttXeckEVHK .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ttXeckEVHK .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-ttXeckEVHK .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-ttXeckEVHK .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-ttXeckEVHK .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-ttXeckEVHK .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-ttXeckEVHK .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu1IsWqFRV {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tu1IsWqFRV .container {
  max-width: 1140px;
}
.cid-tu1IsWqFRV .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tu1IsWqFRV .row {
    padding: 0 0.75rem;
  }
}
.cid-tu1IsWqFRV .text-container {
  width: 100%;
  padding: 0;
}
.cid-tu1IsWqFRV .mbr-section-title {
  margin-bottom: 4rem;
  width: 100%;
  color: #002549;
}
.cid-tu1IsWqFRV .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tu1IsWqFRV .cards-container {
    grid-column-gap: 4rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tu1IsWqFRV .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tu1IsWqFRV .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tu1IsWqFRV .card-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tu1IsWqFRV .card-title {
  color: #4b4b4b;
  margin-bottom: 1rem;
}
.cid-tu1IsWqFRV .card-text {
  color: #222222;
}
.cid-tu1IsWqFRV .mbr-iconfont {
  font-size: 25px;
  color: #da291c;
}
.cid-tu1IsWqFRV .icon-box {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.cid-tu1IsWqFRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1IsWqFRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu2GE2O6ik {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tu2GE2O6ik .row {
  align-items: flex-start;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cid-tu2GE2O6ik .col-text {
    width: 100% !important;
  }
}
.cid-tu2GE2O6ik .text-container {
  padding: 7.5% 0 0 17%;
}
@media (max-width: 1024px) {
  .cid-tu2GE2O6ik .text-container {
    padding: 0;
  }
}
.cid-tu2GE2O6ik .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 0 25% 0 0;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .cid-tu2GE2O6ik .text-wrapper {
    padding: 0 45% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-tu2GE2O6ik .text-wrapper {
    padding: 0 45% 0 1%;
  }
}
@media (max-width: 767px) {
  .cid-tu2GE2O6ik .text-wrapper {
    padding: 0;
  }
}
.cid-tu2GE2O6ik .label-text {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 7px;
  color: #8A8A8A;
}
.cid-tu2GE2O6ik .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-tu2GE2O6ik .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-tu2GE2O6ik .btn-container {
  width: 100%;
}
.cid-tu2GE2O6ik .mbr-section-btn {
  margin-top: 20px;
}
.cid-tu2GE2O6ik .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
}
@media (max-width: 1024px) {
  .cid-tu2GE2O6ik .col-cards {
    width: 100% !important;
    padding-top: 80px;
  }
}
.cid-tu2GE2O6ik .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tu2GE2O6ik .card {
  padding: 0 15px;
  margin: 0 0 30px;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  align-items: center;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-tu2GE2O6ik .card {
    width: 100% !important;
  }
}
.cid-tu2GE2O6ik .card-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.cid-tu2GE2O6ik .card-wrap:hover .card-caption {
  opacity: 1;
  transform: translateY(0);
}
.cid-tu2GE2O6ik .card-caption {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  position: absolute;
  z-index: 1;
  height: auto;
  left: 0;
  bottom: 100%;
  padding: 10px 10px;
  margin-bottom: -10px;
  background-color: #f9f9f9;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
  transition: opacity 0.4s ease-out, transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.cid-tu2GE2O6ik .img-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 680px) {
  .cid-tu2GE2O6ik .img-container {
    max-width: 186px;
    width: 100%;
  }
}
.cid-tu2GE2O6ik .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-tu2GE2O6ik .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tu2GE2O6ik .card-text {
  color: #8a8a8a;
}
.cid-tu2GE2O6ik .mbr-section-title,
.cid-tu2GE2O6ik .mbr-section-btn {
  color: #4b4b4b;
  text-align: left;
}
.cid-tu1P0LGtVN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tu1P0LGtVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1P0LGtVN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1P0LGtVN .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 0.5fr 1fr;
  grid-template-columns: 0.5fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-tu1P0LGtVN .main-wrap {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tu1P0LGtVN .card-col {
  height: 100%;
  padding: 0;
}
.cid-tu1P0LGtVN .card-wrapper {
  position: sticky;
  top: 120px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tu1P0LGtVN .card-wrapper {
    position: relative;
    top: 0;
  }
}
.cid-tu1P0LGtVN .card-title {
  padding-bottom: 16px;
  color: #4b4b4b;
}
.cid-tu1P0LGtVN .mbr-text {
  margin-top: 0;
  margin-bottom: 10px;
  color: #747474;
}
.cid-tu1P0LGtVN .mbr-section-btn {
  margin-top: 20px;
}
.cid-tu1P0LGtVN .images-wrap {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tu1P0LGtVN .images-wrap {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .cid-tu1P0LGtVN .images-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
}
.cid-tu1P0LGtVN .image-wrapper {
  max-width: 100%;
  width: 100%;
}
.cid-tu1P0LGtVN .image-wrapper img {
  aspect-ratio: 0.9380863;
  width: 100%;
  object-fit: cover;
}
.cid-tu1P0LGtVN .mbr-text,
.cid-tu1P0LGtVN .mbr-section-btn {
  color: #222222;
}
.cid-tu1Riz182S {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tu1Riz182S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1Riz182S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1Riz182S .mbr-text,
.cid-tu1Riz182S .mbr-section-btn {
  text-align: center;
  color: #222222;
}
.cid-tu1Riz182S .mbr-section-title {
  text-align: center;
  color: #4b4b4b;
}
.cid-tu1SxWlsYV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1SxWlsYV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1SxWlsYV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1SxWlsYV .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tu1SxWlsYV .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1SxWlsYV .col-img {
    order: 2;
  }
}
.cid-tu1SxWlsYV .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1SxWlsYV .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1SxWlsYV .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1SxWlsYV .col-tex {
    order: 1;
  }
}
.cid-tu1SxWlsYV .card-title {
  color: #4b4b4b;
}
.cid-tu1SxWlsYV .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1SxWlsYV .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1SxWlsYV .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1SxWlsYV .mbr-text,
.cid-tu1SxWlsYV .mbr-section-btn {
  color: #222222;
}
.cid-tu1TeM5Rws {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1TeM5Rws .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1TeM5Rws .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tu1TeM5Rws .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1TeM5Rws .col-img {
    order: 2;
  }
}
.cid-tu1TeM5Rws .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1TeM5Rws .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1TeM5Rws .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1TeM5Rws .col-tex {
    order: 1;
  }
}
.cid-tu1TeM5Rws .card-title {
  color: #4b4b4b;
}
.cid-tu1TeM5Rws .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1TeM5Rws .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1TeM5Rws .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1TeM5Rws .mbr-text,
.cid-tu1TeM5Rws .mbr-section-btn {
  color: #222222;
}
.cid-tu1Tkk2YkF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1Tkk2YkF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1Tkk2YkF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1Tkk2YkF .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tu1Tkk2YkF .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1Tkk2YkF .col-img {
    order: 2;
  }
}
.cid-tu1Tkk2YkF .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1Tkk2YkF .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1Tkk2YkF .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1Tkk2YkF .col-tex {
    order: 1;
  }
}
.cid-tu1Tkk2YkF .card-title {
  color: #4b4b4b;
}
.cid-tu1Tkk2YkF .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1Tkk2YkF .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1Tkk2YkF .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1Tkk2YkF .mbr-text,
.cid-tu1Tkk2YkF .mbr-section-btn {
  color: #222222;
}
.cid-tu1TlbbbMF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1TlbbbMF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1TlbbbMF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tu1TlbbbMF .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1TlbbbMF .col-img {
    order: 2;
  }
}
.cid-tu1TlbbbMF .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1TlbbbMF .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1TlbbbMF .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1TlbbbMF .col-tex {
    order: 1;
  }
}
.cid-tu1TlbbbMF .card-title {
  color: #4b4b4b;
  text-align: left;
}
.cid-tu1TlbbbMF .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1TlbbbMF .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1TlbbbMF .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1TlbbbMF .mbr-text,
.cid-tu1TlbbbMF .mbr-section-btn {
  text-align: left;
  color: #222222;
}
.cid-tu1TlYSLC4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1TlYSLC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1TlYSLC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1TlYSLC4 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tu1TlYSLC4 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1TlYSLC4 .col-img {
    order: 2;
  }
}
.cid-tu1TlYSLC4 .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1TlYSLC4 .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1TlYSLC4 .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1TlYSLC4 .col-tex {
    order: 1;
  }
}
.cid-tu1TlYSLC4 .card-title {
  color: #4b4b4b;
}
.cid-tu1TlYSLC4 .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1TlYSLC4 .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1TlYSLC4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1TlYSLC4 .mbr-text,
.cid-tu1TlYSLC4 .mbr-section-btn {
  color: #222222;
}
.cid-tu1TmsqUHz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1TmsqUHz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1TmsqUHz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tu1TmsqUHz .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1TmsqUHz .col-img {
    order: 2;
  }
}
.cid-tu1TmsqUHz .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1TmsqUHz .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1TmsqUHz .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1TmsqUHz .col-tex {
    order: 1;
  }
}
.cid-tu1TmsqUHz .card-title {
  color: #4b4b4b;
  text-align: left;
}
.cid-tu1TmsqUHz .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1TmsqUHz .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1TmsqUHz .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1TmsqUHz .mbr-text,
.cid-tu1TmsqUHz .mbr-section-btn {
  text-align: left;
  color: #222222;
}
.cid-tu1TntI9Sw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1TntI9Sw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1TntI9Sw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1TntI9Sw .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tu1TntI9Sw .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1TntI9Sw .col-img {
    order: 2;
  }
}
.cid-tu1TntI9Sw .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1TntI9Sw .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1TntI9Sw .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1TntI9Sw .col-tex {
    order: 1;
  }
}
.cid-tu1TntI9Sw .card-title {
  color: #4b4b4b;
}
.cid-tu1TntI9Sw .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1TntI9Sw .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1TntI9Sw .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1TntI9Sw .mbr-text,
.cid-tu1TntI9Sw .mbr-section-btn {
  color: #222222;
}
.cid-tu1TnVmw0e {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1TnVmw0e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1TnVmw0e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tu1TnVmw0e .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1TnVmw0e .col-img {
    order: 2;
  }
}
.cid-tu1TnVmw0e .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1TnVmw0e .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1TnVmw0e .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1TnVmw0e .col-tex {
    order: 1;
  }
}
.cid-tu1TnVmw0e .card-title {
  color: #4b4b4b;
  text-align: left;
}
.cid-tu1TnVmw0e .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1TnVmw0e .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1TnVmw0e .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1TnVmw0e .mbr-text,
.cid-tu1TnVmw0e .mbr-section-btn {
  text-align: left;
  color: #222222;
}
.cid-tu1UBSn0Nr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tu1UBSn0Nr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1UBSn0Nr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1UBSn0Nr .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tu1UBSn0Nr .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tu1UBSn0Nr .col-img {
    order: 2;
  }
}
.cid-tu1UBSn0Nr .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tu1UBSn0Nr .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tu1UBSn0Nr .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tu1UBSn0Nr .col-tex {
    order: 1;
  }
}
.cid-tu1UBSn0Nr .card-title {
  color: #4b4b4b;
}
.cid-tu1UBSn0Nr .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tu1UBSn0Nr .mbr-section-btn {
  margin-top: 60px;
}
.cid-tu1UBSn0Nr .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tu1UBSn0Nr .mbr-text,
.cid-tu1UBSn0Nr .mbr-section-btn {
  color: #222222;
}
.cid-tu2e81P8Mt {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tu2e81P8Mt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu2e81P8Mt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu2e81P8Mt .row {
  justify-content: center;
}
.cid-tu2e81P8Mt .item {
  padding: 0 5px !important;
}
.cid-tu2e81P8Mt .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tu2e81P8Mt .item-wrap {
    padding: 0 5px;
  }
}
.cid-tu2e81P8Mt .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tu2e81P8Mt .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tu2e81P8Mt .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tu2e81P8Mt .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tu2e81P8Mt .link-wrapper:hover .mbr-link {
  color: #da291c;
}
@media (max-width: 992px) {
  .cid-tu2e81P8Mt .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tu2e81P8Mt .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tu2e81P8Mt .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tu2e81P8Mt .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tu2e81P8Mt .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tu2e81P8Mt .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tu2e81P8Mt .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tu2e81P8Mt .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tu2e81P8Mt .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tu2e81P8Mt .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tu2e81P8Mt .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tu2e81P8Mt .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tu2e81P8Mt .mbr-link {
  color: #da291c;
  text-align: right;
}
.cid-tu2e81P8Mt .mbr-like {
  color: #181818;
}
.cid-tu2e81P8Mt .mbr-comment,
.cid-tu2e81P8Mt .mbr-iconfont {
  color: #181818;
}
.cid-tu2e81P8Mt .mbr-text {
  color: #181818;
}
.cid-tu2e81P8Mt .mbr-text,
.cid-tu2e81P8Mt .icon-container {
  text-align: center;
  color: #4b4b4b;
}
.cid-tu2temhO2A {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tu2temhO2A .mbr-section-head {
  width: 100%;
  padding-bottom: 40px;
}
.cid-tu2temhO2A .mbr-section-title {
  color: #4b4b4b;
}
.cid-tu2temhO2A .mbr-section-subtitle {
  color: #FF014E;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tu2temhO2A .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tu2temhO2A .card {
  margin-bottom: 30px;
}
.cid-tu2temhO2A img {
  width: auto;
  max-height: 100px;
  max-width: 100%;
  margin: auto;
}
.cid-tu2BcD7V2M {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-1920x1285.jpeg");
}
.cid-tu2BcD7V2M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu2BcD7V2M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu2BcD7V2M .user {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-tu2BcD7V2M .user_image {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .cid-tu2BcD7V2M .user {
    padding: 1rem;
  }
}
.cid-tu2BcD7V2M .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tu2BcD7V2M .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 700px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .cid-tu2BcD7V2M .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tu2BcD7V2M .embla__button--next,
.cid-tu2BcD7V2M .embla__button--prev {
  display: flex;
}
.cid-tu2BcD7V2M .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tu2BcD7V2M .embla__button {
    display: none;
  }
}
.cid-tu2BcD7V2M .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tu2BcD7V2M .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tu2BcD7V2M .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tu2BcD7V2M .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tu2BcD7V2M .embla__button {
    top: auto;
  }
}
.cid-tu2BcD7V2M .img-wrapper img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tu2BcD7V2M .img-wrapper img {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 230px) {
  .cid-tu2BcD7V2M .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tu2BcD7V2M .embla {
  position: relative;
  width: 100%;
}
.cid-tu2BcD7V2M .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tu2BcD7V2M .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tu2BcD7V2M .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tu2BcD7V2M .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tu2BcD7V2M .user_desk {
  color: #ffffff;
}
.cid-tu2BcD7V2M H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tu2BcD7V2M .user_text {
  color: #ffffff;
}
.cid-tu2BcD7V2M .user_name {
  color: #ffffff;
}
.cid-tu21eo3M2t {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-tu21eo3M2t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu21eo3M2t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu21eo3M2t .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tu21eo3M2t .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tu21eo3M2t .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tu21eo3M2t .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tu21eo3M2t .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tu21eo3M2t .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tu21eo3M2t .mbr-section-head {
  width: 100%;
}
.cid-tu21eo3M2t .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-tu21eo3M2t .mbr-section-title {
    text-align: center;
  }
}
.cid-tu21eo3M2t .mbr-section-subtitle {
  color: #4b4b4b;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tu21eo3M2t .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tu21eo3M2t .card-row {
  align-items: stretch;
}
.cid-tu21eo3M2t .card {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tu21eo3M2t .card {
    margin-top: 30px;
  }
}
.cid-tu21eo3M2t .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #f0f0f0, -10px -10px 19px #f0f0f0;
}
@media (max-width: 1199px) {
  .cid-tu21eo3M2t .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tu21eo3M2t .card-wrapper {
    padding: 20px;
  }
}
.cid-tu21eo3M2t .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tu21eo3M2t .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tu21eo3M2t .card-wrapper:hover .card-title {
  color: #222222 !important;
}
.cid-tu21eo3M2t .card-wrapper:hover .card-text {
  color: #222222 !important;
}
.cid-tu21eo3M2t .card-wrapper:hover .iconfont-wrapper-hover {
  visibility: visible;
  opacity: 1;
}
.cid-tu21eo3M2t .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #f8f8f8, #f8f8f8);
  opacity: 0;
  transition: .5s all;
}
.cid-tu21eo3M2t .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tu21eo3M2t .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tu21eo3M2t .iconfont-wrapper {
    margin-bottom: 10px;
  }
}
.cid-tu21eo3M2t .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #da291c;
}
.cid-tu21eo3M2t .card-title {
  color: #222222;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tu21eo3M2t .card-title {
    margin-bottom: 15px;
  }
}
.cid-tu21eo3M2t .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tu21eo3M2t .iconfont-wrapper-hover {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  visibility: hidden;
  opacity: 0;
  transition: .5s all;
}
.cid-tu21eo3M2t .iconfont-wrapper-hover .mbr-iconfont {
  font-size: 32px;
  color: #ff014e;
}
.cid-tu2JACmgGa {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tu2JACmgGa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu2JACmgGa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu2JACmgGa .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tu2JACmgGa .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tu2JACmgGa .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tu2JACmgGa .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tu2JACmgGa .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tu2JACmgGa .dragArea.row {
  padding: 0 0 0 100px;
}
@media (max-width: 992px) {
  .cid-tu2JACmgGa .dragArea.row {
    padding: 0;
  }
}
.cid-tu2JACmgGa .dragArea.row .form-group {
  padding: 0;
  margin-bottom: 12px !important;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #f4efe8 !important;
}
.cid-tu2JACmgGa .dragArea.row .form-group .form-control {
  padding: 12px 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border-color: transparent !important;
}
.cid-tu2JACmgGa .dragArea.row .form-group .form-control::placeholder {
  color: #f4efe8;
}
.cid-tu2JACmgGa .dragArea.row .form-group .form-control:hover {
  border-color: transparent !important;
}
.cid-tu2JACmgGa .dragArea.row .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
}
.cid-tu2JACmgGa .dragArea.row .form-group .form-check {
  padding-left: 28px;
  margin-bottom: 0;
  margin-right: 18%;
  line-height: 2.2;
}
.cid-tu2JACmgGa .dragArea.row .form-group .form-check .form-check-input {
  border-radius: 0;
  background: transparent;
  border: 1px solid #f4efe8;
}
.cid-tu2JACmgGa .dragArea.row .mbr-section-btn {
  padding: 0;
}
.cid-tu2JACmgGa .mbr-section-title {
  color: #f4efe8;
}
.cid-tu2JACmgGa .form-check-label {
  color: #f4efe8;
}
.cid-tu1tifRhqH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tu1tifRhqH .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tu1tifRhqH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tu1tifRhqH .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tu1tifRhqH .row {
    text-align: center;
  }
  .cid-tu1tifRhqH .row > div {
    margin: auto;
  }
  .cid-tu1tifRhqH .social-row {
    justify-content: center;
  }
}
.cid-tu1tifRhqH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tu1tifRhqH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu1tifRhqH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tu1tifRhqH .list {
    margin-bottom: 0rem;
  }
}
.cid-tu1tifRhqH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tu1tifRhqH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tu1tifRhqH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tu1tifRhqH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu1tifRhqH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu1tifRhqH H5 {
  color: #ffffff;
}
.cid-tu1tifRhqH P {
  color: #ffffff;
}
.cid-tu1ofeFo05 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tu1ofeFo05 .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tu1ofeFo05 .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .8;
  color: #545151;
}
.cid-tu1ofeFo05 .mbr-text:hover {
  opacity: 1;
}
.cid-tu1ofeFo05 a.text-white {
  color: #a99fc5 !important;
}
.cid-tu1ofeFo05 a.text-white:hover {
  color: #ffffff !important;
}
.cid-tu1ofeFo05 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tu1ofeFo05 .foot-menu li {
  padding: 10px;
}
.cid-tu1ofeFo05 .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tu1ofeFo05 .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tu1ofeFo05 .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tu1ofeFo05 .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tu1ofeFo05 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  /* color: #ffffff; */
}
.cid-tu1ofeFo05 .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tu1ofeFo05 .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tu1ofeFo05 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tu1ofeFo05 .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tu1ofeFo05 .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tu1ofeFo05 foot-menu-item {
  color: #ffffff;
}
.cid-tu31Mdo7Bk {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/double-exposure-image-business-finance-1-2000x1334.jpeg");
}
.cid-tu31Mdo7Bk .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tu31Mdo7Bk .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tu31Mdo7Bk {
    align-items: flex-end;
  }
  .cid-tu31Mdo7Bk .row {
    justify-content: center;
  }
  .cid-tu31Mdo7Bk .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tu31Mdo7Bk .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tu31Mdo7Bk {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tu31Mdo7Bk .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tu31Mdo7Bk .content-wrap {
    width: 100%;
  }
}
.cid-tu31Mdo7Bk .mbr-section-title {
  text-align: center;
}
.cid-tu31Mdo7Bk .mbr-text,
.cid-tu31Mdo7Bk .mbr-section-btn {
  text-align: center;
}
.cid-tu30HLbPaP .navbar-dropdown {
  position: relative !important;
}
.cid-tu30HLbPaP .navbar-dropdown {
  position: absolute !important;
}
.cid-tu30HLbPaP .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-tu30HLbPaP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu30HLbPaP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu30HLbPaP .dropdown-item:hover,
.cid-tu30HLbPaP .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tu30HLbPaP .dropdown-item:hover span {
  color: white;
}
.cid-tu30HLbPaP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu30HLbPaP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu30HLbPaP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu30HLbPaP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu30HLbPaP .nav-link {
  position: relative;
}
.cid-tu30HLbPaP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu30HLbPaP .container {
    flex-wrap: nowrap;
  }
}
.cid-tu30HLbPaP .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tu30HLbPaP .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tu30HLbPaP .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tu30HLbPaP .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tu30HLbPaP .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tu30HLbPaP .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tu30HLbPaP .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tu30HLbPaP .dropdown-menu,
.cid-tu30HLbPaP .navbar.opened {
  background: #001825 !important;
}
.cid-tu30HLbPaP .nav-item:focus,
.cid-tu30HLbPaP .nav-link:focus {
  outline: none;
}
.cid-tu30HLbPaP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu30HLbPaP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu30HLbPaP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu30HLbPaP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu30HLbPaP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu30HLbPaP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu30HLbPaP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tu30HLbPaP .navbar.opened {
  transition: all 0.3s;
}
.cid-tu30HLbPaP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu30HLbPaP .navbar .navbar-logo img {
  width: auto;
}
.cid-tu30HLbPaP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu30HLbPaP .navbar.collapsed {
  justify-content: center;
}
.cid-tu30HLbPaP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu30HLbPaP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu30HLbPaP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tu30HLbPaP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu30HLbPaP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu30HLbPaP .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-tu30HLbPaP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu30HLbPaP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu30HLbPaP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu30HLbPaP .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tu30HLbPaP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu30HLbPaP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu30HLbPaP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu30HLbPaP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu30HLbPaP .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-tu30HLbPaP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu30HLbPaP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu30HLbPaP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu30HLbPaP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu30HLbPaP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu30HLbPaP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu30HLbPaP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu30HLbPaP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tu30HLbPaP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu30HLbPaP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tu30HLbPaP .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tu30HLbPaP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu30HLbPaP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu30HLbPaP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu30HLbPaP .dropdown-item.active,
.cid-tu30HLbPaP .dropdown-item:active {
  background-color: transparent;
}
.cid-tu30HLbPaP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu30HLbPaP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu30HLbPaP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu30HLbPaP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tu30HLbPaP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu30HLbPaP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu30HLbPaP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu30HLbPaP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu30HLbPaP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu30HLbPaP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tu30HLbPaP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu30HLbPaP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu30HLbPaP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu30HLbPaP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu30HLbPaP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu30HLbPaP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu30HLbPaP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu30HLbPaP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu30HLbPaP .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tu30HLbPaP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu30HLbPaP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tu30HLbPaP .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu30HLbPaP .navbar {
    height: 70px;
  }
  .cid-tu30HLbPaP .navbar.opened {
    height: auto;
  }
  .cid-tu30HLbPaP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tu30HLbPaP .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tu30HLbPaP .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tu30HLbPaP .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tu30HLbPaP .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tu30HLbPaP .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tu30HLbPaP .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu30HLbPaP .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu30HLbPaP .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tu30HLbPaP .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu30HLbPaP .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu38u1303u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tu38u1303u .row {
  align-items: center;
}
.cid-tu38u1303u .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .cid-tu38u1303u .image-wrapper {
    padding: 0 30px;
    padding-left: 2.5rem;
  }
}
.cid-tu38u1303u .image-wrapper img {
  width: auto;
  max-width: 100%;
  align-self: flex-end;
  object-fit: cover;
}
.cid-tu38u1303u .image-wrapper img:last-child {
  align-self: flex-start;
  margin-top: -25%;
}
@media (max-width: 991px) {
  .cid-tu38u1303u .image-wrapper img {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tu38u1303u .col-text {
    padding-bottom: 4.8rem;
  }
}
@media (min-width: 992px) {
  .cid-tu38u1303u .col-text {
    padding: 0 30px;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tu38u1303u .col-text {
    text-align: center;
  }
}
.cid-tu38u1303u .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tu38u1303u .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #da291c;
}
@media (max-width: 767px) {
  .cid-tu38u1303u .label-text {
    text-align: center !important;
  }
}
.cid-tu38u1303u .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-tu38u1303u .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-tu38u1303u .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tu38u1303u .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tu38u1303u .lists-container {
    justify-content: center;
  }
}
.cid-tu38u1303u .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-tu38u1303u .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-tu38u1303u .list {
    align-items: center;
  }
}
.cid-tu38u1303u .list-item {
  display: flex;
  align-items: center;
}
.cid-tu38u1303u .icon-wrapper {
  margin-right: 5px;
}
.cid-tu38u1303u .icon-wrapper span {
  color: #da291c;
  font-size: 21px;
}
.cid-tu38u1303u .list-item-text {
  flex-grow: 1;
}
.cid-tu38u1303u .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tu38u1303u .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-tu38u1303u .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tu38u1303u .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tu38u1303u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu38u1303u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu38u1303u .mbr-section-title,
.cid-tu38u1303u .mbr-section-btn {
  color: #222222;
}
.cid-tu39XjJuK5 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tu39XjJuK5 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #da291c;
  margin-bottom: 2rem;
}
.cid-tu39XjJuK5 .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tu39XjJuK5 .card-wrapper {
    padding: 2rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tu39XjJuK5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tu39XjJuK5 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tu39XjJuK5 .row {
  justify-content: center;
}
.cid-tu39XjJuK5 .card-text {
  color: #222222;
}
.cid-tu39XjJuK5 .card-title,
.cid-tu39XjJuK5 .iconfont-wrapper {
  color: #4b4b4b;
}
.cid-tu39XjJuK5 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-tu39XjJuK5 .mbr-section-title {
  color: #263d5a;
}
.cid-tu3bu0yGU8 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/17841400-200120-world-map-silhouette.-digital-simple-map-in-flat-style.-vector-illustration-isolated-on-white-background-2000x1365.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-tu3bu0yGU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu3bu0yGU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu3bu0yGU8 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-tu3bu0yGU8 .mbr-section-title {
  color: #FF014E;
}
.cid-tu3bu0yGU8 .mbr-section-subtitle {
  color: #4b4b4b;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tu3bu0yGU8 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tu3bu0yGU8 .card-row {
  align-items: stretch;
}
.cid-tu3bu0yGU8 .card {
  margin-top: 40px;
}
.cid-tu3bu0yGU8 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #ebeff2, -10px -10px 19px #ebeff2;
}
@media (max-width: 1199px) {
  .cid-tu3bu0yGU8 .card-wrapper {
    padding: 35px;
  }
}
.cid-tu3bu0yGU8 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tu3bu0yGU8 .card-wrapper:hover .card-title {
  color: #222222 !important;
}
.cid-tu3bu0yGU8 .card-wrapper:hover .card-text {
  color: #222222 !important;
}
.cid-tu3bu0yGU8 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #f8f8f8, #f8f8f8);
  opacity: 0;
  transition: .5s all;
}
.cid-tu3bu0yGU8 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tu3bu0yGU8 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-tu3bu0yGU8 .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
}
.cid-tu3bu0yGU8 .card-1 .iconfont-wrapper .mbr-iconfont {
  color: #da291c;
}
.cid-tu3bu0yGU8 .card-2 .iconfont-wrapper .mbr-iconfont {
  color: #da291c;
}
.cid-tu3bu0yGU8 .card-title {
  color: #464646;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-tu3bu0yGU8 .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tu3bu0yGU8 .card-info {
  color: #222222;
  margin-top: 12px;
  margin-bottom: 10px;
}
.cid-tu3bu0yGU8 .card-text,
.cid-tu3bu0yGU8 .mbr-section-btn {
  color: #222222;
}
.cid-tu3jCiHZWQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tu3jCiHZWQ .google-map {
  height: 35rem;
  position: relative;
}
.cid-tu3jCiHZWQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tu3jCiHZWQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tu3jCiHZWQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tu3jCiHZWQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tu3jCiHZWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu3jCiHZWQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu30HZEDkN {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tu30HZEDkN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu30HZEDkN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu30HZEDkN .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tu30HZEDkN .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-tu30HZEDkN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tu30HZEDkN .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tu30HZEDkN .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tu30HZEDkN .dragArea.row {
  padding: 0 0 0 100px;
}
@media (max-width: 992px) {
  .cid-tu30HZEDkN .dragArea.row {
    padding: 0;
  }
}
.cid-tu30HZEDkN .dragArea.row .form-group {
  padding: 0;
  margin-bottom: 12px !important;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #f4efe8 !important;
}
.cid-tu30HZEDkN .dragArea.row .form-group .form-control {
  padding: 12px 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border-color: transparent !important;
}
.cid-tu30HZEDkN .dragArea.row .form-group .form-control::placeholder {
  color: #f4efe8;
}
.cid-tu30HZEDkN .dragArea.row .form-group .form-control:hover {
  border-color: transparent !important;
}
.cid-tu30HZEDkN .dragArea.row .form-group .form-control:focus {
  background-color: transparent;
  box-shadow: none;
}
.cid-tu30HZEDkN .dragArea.row .form-group .form-check {
  padding-left: 28px;
  margin-bottom: 0;
  margin-right: 18%;
  line-height: 2.2;
}
.cid-tu30HZEDkN .dragArea.row .form-group .form-check .form-check-input {
  border-radius: 0;
  background: transparent;
  border: 1px solid #f4efe8;
}
.cid-tu30HZEDkN .dragArea.row .mbr-section-btn {
  padding: 0;
}
.cid-tu30HZEDkN .mbr-section-title {
  color: #f4efe8;
}
.cid-tu30HZEDkN .form-check-label {
  color: #f4efe8;
}
.cid-tu30I0usRw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tu30I0usRw .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tu30I0usRw .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tu30I0usRw .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tu30I0usRw .row {
    text-align: center;
  }
  .cid-tu30I0usRw .row > div {
    margin: auto;
  }
  .cid-tu30I0usRw .social-row {
    justify-content: center;
  }
}
.cid-tu30I0usRw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tu30I0usRw .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu30I0usRw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tu30I0usRw .list {
    margin-bottom: 0rem;
  }
}
.cid-tu30I0usRw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tu30I0usRw .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tu30I0usRw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tu30I0usRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu30I0usRw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu30I0usRw H5 {
  color: #ffffff;
}
.cid-tu30I0usRw P {
  color: #ffffff;
}
.cid-tu30I1nhil {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tu30I1nhil .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tu30I1nhil .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tu30I1nhil .mbr-text:hover {
  opacity: 1;
}
.cid-tu30I1nhil a.text-white {
  color: #a99fc5 !important;
}
.cid-tu30I1nhil a.text-white:hover {
  color: #ffffff !important;
}
.cid-tu30I1nhil .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tu30I1nhil .foot-menu li {
  padding: 10px;
}
.cid-tu30I1nhil .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tu30I1nhil .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tu30I1nhil .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tu30I1nhil .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tu30I1nhil .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tu30I1nhil .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tu30I1nhil .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tu30I1nhil .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tu30I1nhil .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tu30I1nhil .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tu30I1nhil foot-menu-item {
  color: #ffffff;
}
.cid-tu8MgP55xO {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/group-people-working-out-business-plan-office-1500x1000.jpeg");
}
.cid-tu8MgP55xO .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tu8MgP55xO .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tu8MgP55xO {
    align-items: flex-end;
  }
  .cid-tu8MgP55xO .row {
    justify-content: center;
  }
  .cid-tu8MgP55xO .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tu8MgP55xO .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tu8MgP55xO {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tu8MgP55xO .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tu8MgP55xO .content-wrap {
    width: 100%;
  }
}
.cid-tu8MgP55xO .mbr-section-title {
  text-align: center;
}
.cid-tu8MgP55xO .mbr-text,
.cid-tu8MgP55xO .mbr-section-btn {
  text-align: center;
}
.cid-tu8MgPJmTL .navbar-dropdown {
  position: relative !important;
}
.cid-tu8MgPJmTL .navbar-dropdown {
  position: absolute !important;
}
.cid-tu8MgPJmTL .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-tu8MgPJmTL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu8MgPJmTL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu8MgPJmTL .dropdown-item:hover,
.cid-tu8MgPJmTL .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tu8MgPJmTL .dropdown-item:hover span {
  color: white;
}
.cid-tu8MgPJmTL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu8MgPJmTL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu8MgPJmTL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu8MgPJmTL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu8MgPJmTL .nav-link {
  position: relative;
}
.cid-tu8MgPJmTL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu8MgPJmTL .container {
    flex-wrap: nowrap;
  }
}
.cid-tu8MgPJmTL .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tu8MgPJmTL .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tu8MgPJmTL .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tu8MgPJmTL .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tu8MgPJmTL .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tu8MgPJmTL .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tu8MgPJmTL .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tu8MgPJmTL .dropdown-menu,
.cid-tu8MgPJmTL .navbar.opened {
  background: #001825 !important;
}
.cid-tu8MgPJmTL .nav-item:focus,
.cid-tu8MgPJmTL .nav-link:focus {
  outline: none;
}
.cid-tu8MgPJmTL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu8MgPJmTL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu8MgPJmTL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu8MgPJmTL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu8MgPJmTL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu8MgPJmTL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu8MgPJmTL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tu8MgPJmTL .navbar.opened {
  transition: all 0.3s;
}
.cid-tu8MgPJmTL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu8MgPJmTL .navbar .navbar-logo img {
  width: auto;
}
.cid-tu8MgPJmTL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu8MgPJmTL .navbar.collapsed {
  justify-content: center;
}
.cid-tu8MgPJmTL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu8MgPJmTL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu8MgPJmTL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tu8MgPJmTL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu8MgPJmTL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu8MgPJmTL .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-tu8MgPJmTL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu8MgPJmTL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu8MgPJmTL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu8MgPJmTL .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tu8MgPJmTL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu8MgPJmTL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu8MgPJmTL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu8MgPJmTL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu8MgPJmTL .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-tu8MgPJmTL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu8MgPJmTL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu8MgPJmTL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu8MgPJmTL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu8MgPJmTL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu8MgPJmTL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu8MgPJmTL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu8MgPJmTL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tu8MgPJmTL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu8MgPJmTL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tu8MgPJmTL .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tu8MgPJmTL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu8MgPJmTL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu8MgPJmTL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu8MgPJmTL .dropdown-item.active,
.cid-tu8MgPJmTL .dropdown-item:active {
  background-color: transparent;
}
.cid-tu8MgPJmTL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu8MgPJmTL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu8MgPJmTL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu8MgPJmTL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tu8MgPJmTL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu8MgPJmTL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu8MgPJmTL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu8MgPJmTL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu8MgPJmTL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu8MgPJmTL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tu8MgPJmTL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu8MgPJmTL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu8MgPJmTL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu8MgPJmTL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu8MgPJmTL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu8MgPJmTL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu8MgPJmTL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu8MgPJmTL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu8MgPJmTL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tu8MgPJmTL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu8MgPJmTL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tu8MgPJmTL .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu8MgPJmTL .navbar {
    height: 70px;
  }
  .cid-tu8MgPJmTL .navbar.opened {
    height: auto;
  }
  .cid-tu8MgPJmTL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tu8MgPJmTL .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tu8MgPJmTL .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tu8MgPJmTL .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tu8MgPJmTL .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tu8MgPJmTL .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tu8MgPJmTL .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu8MgPJmTL .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu8MgPJmTL .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tu8MgPJmTL .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu8MgPJmTL .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu93iW6q35 {
  overflow: hidden;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tu93iW6q35 .container-fluid {
  padding: 0;
}
.cid-tu93iW6q35 .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-tu93iW6q35 .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-tu93iW6q35 .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-tu93iW6q35 .content-wrapper .text {
    padding: 150px 110px;
  }
}
.cid-tu93iW6q35 .content-wrapper .image {
  padding: 60px 2rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-tu93iW6q35 .content-wrapper .image {
    padding: 200px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-tu93iW6q35 .content-wrapper .image {
    padding: 140px 120px;
  }
}
@media (min-width: 1400px) {
  .cid-tu93iW6q35 .content-wrapper .image {
    padding: 90px 50px;
  }
}
.cid-tu93iW6q35 .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-tu93iW6q35 .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tu93iW6q35 .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-tu93iW6q35 .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-tu93iW6q35 .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-tu93iW6q35 .card-subtitle {
  color: #4b4b4b;
}
.cid-tu93iW6q35 .mbr-text,
.cid-tu93iW6q35 .link-title {
  color: #212428;
}
.cid-tu961mD5sI {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.cid-tu961mD5sI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #da291c;
  margin-bottom: 2rem;
}
.cid-tu961mD5sI .row {
  justify-content: center;
}
.cid-tu961mD5sI .card-text {
  color: #222222;
}
.cid-tu961mD5sI .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  margin: 0;
  padding: 1rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
.cid-tu961mD5sI .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tu961mD5sI .inner {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  padding: 2rem 1rem;
  box-shadow: none;
  backdrop-filter: blur(0px);
}
.cid-tu961mD5sI .card-box {
  padding: 1rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .cid-tu961mD5sI .card {
    padding-bottom: 2rem;
  }
}
.cid-tu961mD5sI .card-title,
.cid-tu961mD5sI .iconfont-wrapper {
  color: #da291c;
}
.cid-tu961mD5sI .card-subtitle {
  color: #4b4b4b;
}
.cid-tu8MgQSEZT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tu8MgQSEZT .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tu8MgQSEZT .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tu8MgQSEZT .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tu8MgQSEZT .row {
    text-align: center;
  }
  .cid-tu8MgQSEZT .row > div {
    margin: auto;
  }
  .cid-tu8MgQSEZT .social-row {
    justify-content: center;
  }
}
.cid-tu8MgQSEZT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tu8MgQSEZT .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu8MgQSEZT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tu8MgQSEZT .list {
    margin-bottom: 0rem;
  }
}
.cid-tu8MgQSEZT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tu8MgQSEZT .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tu8MgQSEZT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tu8MgQSEZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu8MgQSEZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu8MgQSEZT H5 {
  color: #ffffff;
}
.cid-tu8MgQSEZT P {
  color: #ffffff;
}
.cid-tu8MgRrlg3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tu8MgRrlg3 .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tu8MgRrlg3 .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tu8MgRrlg3 .mbr-text:hover {
  opacity: 1;
}
.cid-tu8MgRrlg3 a.text-white {
  color: #a99fc5 !important;
}
.cid-tu8MgRrlg3 a.text-white:hover {
  color: #ffffff !important;
}
.cid-tu8MgRrlg3 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tu8MgRrlg3 .foot-menu li {
  padding: 10px;
}
.cid-tu8MgRrlg3 .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tu8MgRrlg3 .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tu8MgRrlg3 .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tu8MgRrlg3 .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tu8MgRrlg3 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tu8MgRrlg3 .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tu8MgRrlg3 .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tu8MgRrlg3 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tu8MgRrlg3 .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tu8MgRrlg3 .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tu8MgRrlg3 foot-menu-item {
  color: #ffffff;
}
.cid-tu9iizP4ph {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/business-woman-writing-notepad-with-pen-office-1-1500x625.jpeg");
}
.cid-tu9iizP4ph .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tu9iizP4ph .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tu9iizP4ph {
    align-items: flex-end;
  }
  .cid-tu9iizP4ph .row {
    justify-content: center;
  }
  .cid-tu9iizP4ph .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tu9iizP4ph .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tu9iizP4ph {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tu9iizP4ph .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tu9iizP4ph .content-wrap {
    width: 100%;
  }
}
.cid-tu9iizP4ph .mbr-section-title {
  text-align: center;
}
.cid-tu9iizP4ph .mbr-text,
.cid-tu9iizP4ph .mbr-section-btn {
  text-align: center;
}
.cid-tu9nxeY93F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tu9nxeY93F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu9nxeY93F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu9nxeY93F .container {
  max-width: 1280px;
}
.cid-tu9nxeY93F .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #fafafa;
  padding: 4rem 0;
  border-radius: 4.17rem;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tu9nxeY93F .content-wrapper {
    flex-wrap: wrap;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tu9nxeY93F .content-wrapper {
    padding: 40px 6vw;
  }
}
.cid-tu9nxeY93F .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-right: 4rem;
  margin-bottom: 24px;
  padding-right: 0;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-tu9nxeY93F .text-wrapper {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tu9nxeY93F .card-title {
  color: #FFDD65;
  margin-bottom: auto;
}
.cid-tu9nxeY93F .mbr-text {
  color: #222222;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-tu9nxeY93F .mbr-text {
    margin-top: 16px;
  }
}
.cid-tu9nxeY93F .img-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  right: -6rem;
}
@media (max-width: 1599px) {
  .cid-tu9nxeY93F .img-container {
    right: -4vw;
  }
}
@media (max-width: 1400px) {
  .cid-tu9nxeY93F .img-container {
    right: 0rem;
    left: 0;
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tu9nxeY93F .img-container {
    width: 100%;
    margin-bottom: 34px;
    left: 0;
    right: 0;
    padding: 0;
  }
}
.cid-tu9nxeY93F .image-wrapper {
  aspect-ratio: 1;
  position: relative;
  border-radius: 2.08rem;
  padding: 32px;
}
@media (max-width: 767px) {
  .cid-tu9nxeY93F .image-wrapper {
    padding: 20px;
  }
}
.cid-tu9nxeY93F .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tu9nxeY93F .image-wrapper .img-box {
  position: relative;
  z-index: 11;
  border-radius: 2.08rem;
  overflow: hidden;
  height: 100%;
}
.cid-tu9nxeY93F .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tu9nxeY93F .card-title,
.cid-tu9nxeY93F .mbr-section-btn {
  color: #4b4b4b;
}
.cid-tudi5w6FeD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tudi5w6FeD .mbr-section-title {
  margin-bottom: 24px;
  color: #14142b;
  text-align: center;
}
.cid-tudi5w6FeD .link-title {
  width: 100%;
  display: inline-block;
  color: #da291c;
}
.cid-tudi5w6FeD .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tudi5w6FeD .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px;
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  margin-bottom: 48px;
}
.cid-tudi5w6FeD .col-12.col-sm-6.col-lg-3:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tudi5w6FeD .col-12.col-sm-6.col-lg-3:hover .mbr-iconfont,
.cid-tudi5w6FeD .col-12.col-sm-6.col-lg-3:hover .number,
.cid-tudi5w6FeD .col-12.col-sm-6.col-lg-3:hover .card-title {
  color: #1b85dc !important;
}
.cid-tudi5w6FeD .col-12.col-sm-6.col-lg-3:hover .inner {
  transform: scale(1.1);
}
.cid-tudi5w6FeD .card-title {
  transition: 0.35s;
  margin-bottom: 12px;
  color: #4b4b4b;
}
.cid-tudi5w6FeD .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 30px;
}
.cid-tudi5w6FeD .card-text {
  margin-bottom: 33px;
  color: #8c8c95;
}
@media (min-width: 970px) and (max-width: 1100px) {
  .cid-tudi5w6FeD .card-wrapper {
    margin: 10px;
  }
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-tudi5w6FeD .col-12:nth-child(3) {
    padding-top: 50px;
  }
  .cid-tudi5w6FeD .col-12:nth-child(4) {
    padding-top: 50px;
  }
  .cid-tudi5w6FeD .card-wrapper {
    margin: 20px;
    padding: 60px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-tudi5w6FeD .col-12 {
    padding-top: 50px;
  }
  .cid-tudi5w6FeD .col-12:first-child {
    padding-top: 0px;
  }
  .cid-tudi5w6FeD .wrap-img {
    margin-bottom: 30px;
  }
  .cid-tudi5w6FeD .card-wrapper {
    margin: 10px;
    padding: 60px 30px 40px;
  }
}
.cid-tudi5w6FeD .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-tudi5w6FeD .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tudi5w6FeD .episode {
  color: #ffffff;
}
.cid-tudi5w6FeD .img-title {
  color: #ffffff;
}
.cid-tudi5w6FeD .margin {
  margin-right: 14px;
}
.cid-tudi5w6FeD .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tudi5w6FeD .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tudi5w6FeD .title-block {
  padding-bottom: 30px;
  max-width: 493px;
  margin: auto;
}
.cid-tudi5w6FeD .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tudi5w6FeD .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tudi5w6FeD .card-text,
.cid-tudi5w6FeD .link-title {
  color: #222222;
}
.cid-tu9iiAj61y .navbar-dropdown {
  position: relative !important;
}
.cid-tu9iiAj61y .navbar-dropdown {
  position: absolute !important;
}
.cid-tu9iiAj61y .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-tu9iiAj61y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu9iiAj61y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu9iiAj61y .dropdown-item:hover,
.cid-tu9iiAj61y .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tu9iiAj61y .dropdown-item:hover span {
  color: white;
}
.cid-tu9iiAj61y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu9iiAj61y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu9iiAj61y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu9iiAj61y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu9iiAj61y .nav-link {
  position: relative;
}
.cid-tu9iiAj61y .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu9iiAj61y .container {
    flex-wrap: nowrap;
  }
}
.cid-tu9iiAj61y .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tu9iiAj61y .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tu9iiAj61y .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tu9iiAj61y .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tu9iiAj61y .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tu9iiAj61y .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tu9iiAj61y .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tu9iiAj61y .dropdown-menu,
.cid-tu9iiAj61y .navbar.opened {
  background: #001825 !important;
}
.cid-tu9iiAj61y .nav-item:focus,
.cid-tu9iiAj61y .nav-link:focus {
  outline: none;
}
.cid-tu9iiAj61y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu9iiAj61y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu9iiAj61y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu9iiAj61y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu9iiAj61y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu9iiAj61y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu9iiAj61y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tu9iiAj61y .navbar.opened {
  transition: all 0.3s;
}
.cid-tu9iiAj61y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu9iiAj61y .navbar .navbar-logo img {
  width: auto;
}
.cid-tu9iiAj61y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu9iiAj61y .navbar.collapsed {
  justify-content: center;
}
.cid-tu9iiAj61y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu9iiAj61y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu9iiAj61y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tu9iiAj61y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu9iiAj61y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu9iiAj61y .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-tu9iiAj61y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu9iiAj61y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu9iiAj61y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu9iiAj61y .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tu9iiAj61y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu9iiAj61y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu9iiAj61y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu9iiAj61y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu9iiAj61y .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-tu9iiAj61y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu9iiAj61y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu9iiAj61y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu9iiAj61y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu9iiAj61y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu9iiAj61y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu9iiAj61y .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu9iiAj61y .navbar.navbar-short {
  min-height: 60px;
}
.cid-tu9iiAj61y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu9iiAj61y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tu9iiAj61y .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tu9iiAj61y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu9iiAj61y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu9iiAj61y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu9iiAj61y .dropdown-item.active,
.cid-tu9iiAj61y .dropdown-item:active {
  background-color: transparent;
}
.cid-tu9iiAj61y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu9iiAj61y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu9iiAj61y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu9iiAj61y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tu9iiAj61y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu9iiAj61y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu9iiAj61y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu9iiAj61y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu9iiAj61y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu9iiAj61y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tu9iiAj61y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu9iiAj61y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu9iiAj61y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu9iiAj61y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu9iiAj61y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu9iiAj61y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu9iiAj61y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu9iiAj61y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu9iiAj61y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tu9iiAj61y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu9iiAj61y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tu9iiAj61y .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu9iiAj61y .navbar {
    height: 70px;
  }
  .cid-tu9iiAj61y .navbar.opened {
    height: auto;
  }
  .cid-tu9iiAj61y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tu9iiAj61y .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tu9iiAj61y .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tu9iiAj61y .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tu9iiAj61y .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tu9iiAj61y .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tu9iiAj61y .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu9iiAj61y .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu9iiAj61y .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tu9iiAj61y .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu9iiAj61y .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu9iiC4zee {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tu9iiC4zee .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tu9iiC4zee .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tu9iiC4zee .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tu9iiC4zee .row {
    text-align: center;
  }
  .cid-tu9iiC4zee .row > div {
    margin: auto;
  }
  .cid-tu9iiC4zee .social-row {
    justify-content: center;
  }
}
.cid-tu9iiC4zee .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tu9iiC4zee .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu9iiC4zee .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tu9iiC4zee .list {
    margin-bottom: 0rem;
  }
}
.cid-tu9iiC4zee .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tu9iiC4zee .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tu9iiC4zee div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tu9iiC4zee .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu9iiC4zee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu9iiC4zee H5 {
  color: #ffffff;
}
.cid-tu9iiC4zee P {
  color: #ffffff;
}
.cid-tu9iiCErkD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tu9iiCErkD .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tu9iiCErkD .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tu9iiCErkD .mbr-text:hover {
  opacity: 1;
}
.cid-tu9iiCErkD a.text-white {
  color: #a99fc5 !important;
}
.cid-tu9iiCErkD a.text-white:hover {
  color: #ffffff !important;
}
.cid-tu9iiCErkD .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tu9iiCErkD .foot-menu li {
  padding: 10px;
}
.cid-tu9iiCErkD .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tu9iiCErkD .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tu9iiCErkD .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tu9iiCErkD .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tu9iiCErkD .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tu9iiCErkD .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tu9iiCErkD .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tu9iiCErkD .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tu9iiCErkD .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tu9iiCErkD .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tu9iiCErkD foot-menu-item {
  color: #ffffff;
}
.cid-tudmNMIenO {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-1920x1135.jpeg");
}
.cid-tudmNMIenO .row {
  flex-direction: row-reverse;
}
.cid-tudmNMIenO .mbr-text {
  max-width: 550px;
}
.cid-tudmNMIenO .row {
  align-items: center;
}
.cid-tudmNMIenO .mbr-section-subtitle {
  line-height: 1.6;
  color: #ffffff;
}
.cid-tudmNMIenO .mbr-text,
.cid-tudmNMIenO .mbr-section-btn {
  color: #ffffff;
}
.cid-tudmNMIenO .mbr-section-title {
  color: #ffffff;
}
.cid-tudmNMIenO .mbr-iconfont {
  font-size: 8rem;
  color: #ffffff;
}
.cid-tudmNMIenO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tudmNMIenO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tudq5mcnuZ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tudq5mcnuZ .row {
    text-align: center;
  }
}
.cid-tudq5mcnuZ .section-head {
  margin-bottom: 2.3rem;
}
.cid-tudq5mcnuZ .paragraph {
  margin-bottom: 2rem;
}
.cid-tudq5mcnuZ .mbr-text {
  color: #222222;
}
.cid-tudk4KKmml {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tudk4KKmml .mbr-section-title {
  margin-bottom: 24px;
  color: #14142b;
  text-align: center;
}
.cid-tudk4KKmml .link-title {
  width: 100%;
  display: inline-block;
  color: #da291c;
}
.cid-tudk4KKmml .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tudk4KKmml .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px;
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  margin-bottom: 48px;
}
.cid-tudk4KKmml .col-12.col-sm-6.col-lg-3:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tudk4KKmml .col-12.col-sm-6.col-lg-3:hover .mbr-iconfont,
.cid-tudk4KKmml .col-12.col-sm-6.col-lg-3:hover .number,
.cid-tudk4KKmml .col-12.col-sm-6.col-lg-3:hover .card-title {
  color: #1b85dc !important;
}
.cid-tudk4KKmml .col-12.col-sm-6.col-lg-3:hover .inner {
  transform: scale(1.1);
}
.cid-tudk4KKmml .card-title {
  transition: 0.35s;
  margin-bottom: 12px;
  color: #4b4b4b;
}
.cid-tudk4KKmml .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 30px;
}
.cid-tudk4KKmml .card-text {
  margin-bottom: 33px;
  color: #8c8c95;
}
@media (min-width: 970px) and (max-width: 1100px) {
  .cid-tudk4KKmml .card-wrapper {
    margin: 10px;
  }
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-tudk4KKmml .col-12:nth-child(3) {
    padding-top: 50px;
  }
  .cid-tudk4KKmml .col-12:nth-child(4) {
    padding-top: 50px;
  }
  .cid-tudk4KKmml .card-wrapper {
    margin: 20px;
    padding: 60px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-tudk4KKmml .col-12 {
    padding-top: 50px;
  }
  .cid-tudk4KKmml .col-12:first-child {
    padding-top: 0px;
  }
  .cid-tudk4KKmml .wrap-img {
    margin-bottom: 30px;
  }
  .cid-tudk4KKmml .card-wrapper {
    margin: 10px;
    padding: 60px 30px 40px;
  }
}
.cid-tudk4KKmml .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-tudk4KKmml .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tudk4KKmml .episode {
  color: #ffffff;
}
.cid-tudk4KKmml .img-title {
  color: #ffffff;
}
.cid-tudk4KKmml .margin {
  margin-right: 14px;
}
.cid-tudk4KKmml .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tudk4KKmml .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tudk4KKmml .title-block {
  padding-bottom: 30px;
  max-width: 493px;
  margin: auto;
}
.cid-tudk4KKmml .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tudk4KKmml .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-tudk4KKmml .card-text,
.cid-tudk4KKmml .link-title {
  color: #222222;
}
.cid-tudk4LgpO2 .navbar-dropdown {
  position: relative !important;
}
.cid-tudk4LgpO2 .navbar-dropdown {
  position: absolute !important;
}
.cid-tudk4LgpO2 .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-tudk4LgpO2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tudk4LgpO2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudk4LgpO2 .dropdown-item:hover,
.cid-tudk4LgpO2 .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tudk4LgpO2 .dropdown-item:hover span {
  color: white;
}
.cid-tudk4LgpO2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tudk4LgpO2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tudk4LgpO2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tudk4LgpO2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tudk4LgpO2 .nav-link {
  position: relative;
}
.cid-tudk4LgpO2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tudk4LgpO2 .container {
    flex-wrap: nowrap;
  }
}
.cid-tudk4LgpO2 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tudk4LgpO2 .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tudk4LgpO2 .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tudk4LgpO2 .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tudk4LgpO2 .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tudk4LgpO2 .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tudk4LgpO2 .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tudk4LgpO2 .dropdown-menu,
.cid-tudk4LgpO2 .navbar.opened {
  background: #001825 !important;
}
.cid-tudk4LgpO2 .nav-item:focus,
.cid-tudk4LgpO2 .nav-link:focus {
  outline: none;
}
.cid-tudk4LgpO2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tudk4LgpO2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tudk4LgpO2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tudk4LgpO2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tudk4LgpO2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tudk4LgpO2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tudk4LgpO2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tudk4LgpO2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tudk4LgpO2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tudk4LgpO2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tudk4LgpO2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tudk4LgpO2 .navbar.collapsed {
  justify-content: center;
}
.cid-tudk4LgpO2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tudk4LgpO2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tudk4LgpO2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tudk4LgpO2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tudk4LgpO2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tudk4LgpO2 .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-tudk4LgpO2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tudk4LgpO2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tudk4LgpO2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tudk4LgpO2 .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tudk4LgpO2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tudk4LgpO2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tudk4LgpO2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tudk4LgpO2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tudk4LgpO2 .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-tudk4LgpO2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tudk4LgpO2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tudk4LgpO2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tudk4LgpO2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tudk4LgpO2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tudk4LgpO2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tudk4LgpO2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tudk4LgpO2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tudk4LgpO2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tudk4LgpO2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tudk4LgpO2 .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tudk4LgpO2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tudk4LgpO2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tudk4LgpO2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tudk4LgpO2 .dropdown-item.active,
.cid-tudk4LgpO2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tudk4LgpO2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tudk4LgpO2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tudk4LgpO2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tudk4LgpO2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tudk4LgpO2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tudk4LgpO2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tudk4LgpO2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tudk4LgpO2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tudk4LgpO2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tudk4LgpO2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tudk4LgpO2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tudk4LgpO2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tudk4LgpO2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tudk4LgpO2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tudk4LgpO2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tudk4LgpO2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tudk4LgpO2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tudk4LgpO2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tudk4LgpO2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tudk4LgpO2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tudk4LgpO2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tudk4LgpO2 .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tudk4LgpO2 .navbar {
    height: 70px;
  }
  .cid-tudk4LgpO2 .navbar.opened {
    height: auto;
  }
  .cid-tudk4LgpO2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tudk4LgpO2 .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tudk4LgpO2 .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tudk4LgpO2 .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tudk4LgpO2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tudk4LgpO2 .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tudk4LgpO2 .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tudk4LgpO2 .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tudk4LgpO2 .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tudk4LgpO2 .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tudk4LgpO2 .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tudk4LSW5I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tudk4LSW5I .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tudk4LSW5I .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tudk4LSW5I .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tudk4LSW5I .row {
    text-align: center;
  }
  .cid-tudk4LSW5I .row > div {
    margin: auto;
  }
  .cid-tudk4LSW5I .social-row {
    justify-content: center;
  }
}
.cid-tudk4LSW5I .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tudk4LSW5I .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tudk4LSW5I .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tudk4LSW5I .list {
    margin-bottom: 0rem;
  }
}
.cid-tudk4LSW5I .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tudk4LSW5I .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tudk4LSW5I div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tudk4LSW5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tudk4LSW5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tudk4LSW5I H5 {
  color: #ffffff;
}
.cid-tudk4LSW5I P {
  color: #ffffff;
}
.cid-tudk4MqjTJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tudk4MqjTJ .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tudk4MqjTJ .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tudk4MqjTJ .mbr-text:hover {
  opacity: 1;
}
.cid-tudk4MqjTJ a.text-white {
  color: #a99fc5 !important;
}
.cid-tudk4MqjTJ a.text-white:hover {
  color: #ffffff !important;
}
.cid-tudk4MqjTJ .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tudk4MqjTJ .foot-menu li {
  padding: 10px;
}
.cid-tudk4MqjTJ .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tudk4MqjTJ .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tudk4MqjTJ .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tudk4MqjTJ .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tudk4MqjTJ .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tudk4MqjTJ .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tudk4MqjTJ .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tudk4MqjTJ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tudk4MqjTJ .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tudk4MqjTJ .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tudk4MqjTJ foot-menu-item {
  color: #ffffff;
}
.cid-tudvGxK1M2 {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/robin-sommer-wnoj83k8r4w-unsplash-1920x1280.jpeg");
}
.cid-tudvGxK1M2 .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tudvGxK1M2 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tudvGxK1M2 {
    align-items: flex-end;
  }
  .cid-tudvGxK1M2 .row {
    justify-content: center;
  }
  .cid-tudvGxK1M2 .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tudvGxK1M2 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tudvGxK1M2 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tudvGxK1M2 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tudvGxK1M2 .content-wrap {
    width: 100%;
  }
}
.cid-tudvGxK1M2 .mbr-section-title {
  text-align: center;
}
.cid-tudvGxK1M2 .mbr-text,
.cid-tudvGxK1M2 .mbr-section-btn {
  text-align: center;
}
.cid-tudvGytfqx .navbar-dropdown {
  position: relative !important;
}
.cid-tudvGytfqx .navbar-dropdown {
  position: absolute !important;
}
.cid-tudvGytfqx .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-tudvGytfqx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tudvGytfqx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tudvGytfqx .dropdown-item:hover,
.cid-tudvGytfqx .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tudvGytfqx .dropdown-item:hover span {
  color: white;
}
.cid-tudvGytfqx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tudvGytfqx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tudvGytfqx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tudvGytfqx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tudvGytfqx .nav-link {
  position: relative;
}
.cid-tudvGytfqx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tudvGytfqx .container {
    flex-wrap: nowrap;
  }
}
.cid-tudvGytfqx .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tudvGytfqx .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tudvGytfqx .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tudvGytfqx .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tudvGytfqx .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tudvGytfqx .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tudvGytfqx .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tudvGytfqx .dropdown-menu,
.cid-tudvGytfqx .navbar.opened {
  background: #001825 !important;
}
.cid-tudvGytfqx .nav-item:focus,
.cid-tudvGytfqx .nav-link:focus {
  outline: none;
}
.cid-tudvGytfqx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tudvGytfqx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tudvGytfqx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tudvGytfqx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tudvGytfqx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tudvGytfqx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tudvGytfqx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tudvGytfqx .navbar.opened {
  transition: all 0.3s;
}
.cid-tudvGytfqx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tudvGytfqx .navbar .navbar-logo img {
  width: auto;
}
.cid-tudvGytfqx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tudvGytfqx .navbar.collapsed {
  justify-content: center;
}
.cid-tudvGytfqx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tudvGytfqx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tudvGytfqx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tudvGytfqx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tudvGytfqx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tudvGytfqx .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-tudvGytfqx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tudvGytfqx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tudvGytfqx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tudvGytfqx .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tudvGytfqx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tudvGytfqx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tudvGytfqx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tudvGytfqx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tudvGytfqx .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-tudvGytfqx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tudvGytfqx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tudvGytfqx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tudvGytfqx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tudvGytfqx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tudvGytfqx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tudvGytfqx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tudvGytfqx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tudvGytfqx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tudvGytfqx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tudvGytfqx .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tudvGytfqx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tudvGytfqx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tudvGytfqx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tudvGytfqx .dropdown-item.active,
.cid-tudvGytfqx .dropdown-item:active {
  background-color: transparent;
}
.cid-tudvGytfqx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tudvGytfqx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tudvGytfqx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tudvGytfqx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tudvGytfqx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tudvGytfqx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tudvGytfqx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tudvGytfqx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tudvGytfqx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tudvGytfqx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tudvGytfqx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tudvGytfqx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tudvGytfqx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tudvGytfqx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tudvGytfqx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tudvGytfqx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tudvGytfqx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tudvGytfqx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tudvGytfqx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tudvGytfqx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tudvGytfqx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tudvGytfqx .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tudvGytfqx .navbar {
    height: 70px;
  }
  .cid-tudvGytfqx .navbar.opened {
    height: auto;
  }
  .cid-tudvGytfqx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tudvGytfqx .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tudvGytfqx .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tudvGytfqx .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tudvGytfqx .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tudvGytfqx .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tudvGytfqx .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tudvGytfqx .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tudvGytfqx .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tudvGytfqx .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tudvGytfqx .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tudvGz5tcY {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tudvGz5tcY .wrapper {
    padding: 0 28px;
  }
}
.cid-tudvGz5tcY img,
.cid-tudvGz5tcY .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tudvGz5tcY .item:focus,
.cid-tudvGz5tcY span:focus {
  outline: none;
}
.cid-tudvGz5tcY .item {
  margin-bottom: 2rem;
}
.cid-tudvGz5tcY .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tudvGz5tcY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tudvGz5tcY .item-title {
  text-align: center;
  color: #4b4b4b;
}
.cid-tudvGzPZ8k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tudvGzPZ8k .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tudvGzPZ8k .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tudvGzPZ8k .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tudvGzPZ8k .row {
    text-align: center;
  }
  .cid-tudvGzPZ8k .row > div {
    margin: auto;
  }
  .cid-tudvGzPZ8k .social-row {
    justify-content: center;
  }
}
.cid-tudvGzPZ8k .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tudvGzPZ8k .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tudvGzPZ8k .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tudvGzPZ8k .list {
    margin-bottom: 0rem;
  }
}
.cid-tudvGzPZ8k .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tudvGzPZ8k .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tudvGzPZ8k div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tudvGzPZ8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tudvGzPZ8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tudvGzPZ8k H5 {
  color: #ffffff;
}
.cid-tudvGzPZ8k P {
  color: #ffffff;
}
.cid-tudvGAGXNK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tudvGAGXNK .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tudvGAGXNK .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tudvGAGXNK .mbr-text:hover {
  opacity: 1;
}
.cid-tudvGAGXNK a.text-white {
  color: #a99fc5 !important;
}
.cid-tudvGAGXNK a.text-white:hover {
  color: #ffffff !important;
}
.cid-tudvGAGXNK .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tudvGAGXNK .foot-menu li {
  padding: 10px;
}
.cid-tudvGAGXNK .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tudvGAGXNK .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tudvGAGXNK .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tudvGAGXNK .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tudvGAGXNK .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tudvGAGXNK .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tudvGAGXNK .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tudvGAGXNK .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tudvGAGXNK .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tudvGAGXNK .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tudvGAGXNK foot-menu-item {
  color: #ffffff;
}
.cid-tu3oi8JsSr {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/album-gf4f14c027-1920-1920x1280.jpeg");
}
.cid-tu3oi8JsSr .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-tu3oi8JsSr .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tu3oi8JsSr {
    align-items: flex-end;
  }
  .cid-tu3oi8JsSr .row {
    justify-content: center;
  }
  .cid-tu3oi8JsSr .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tu3oi8JsSr .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tu3oi8JsSr {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tu3oi8JsSr .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tu3oi8JsSr .content-wrap {
    width: 100%;
  }
}
.cid-tu3oi8JsSr .mbr-section-title {
  text-align: center;
}
.cid-tu3oi8JsSr .mbr-text,
.cid-tu3oi8JsSr .mbr-section-btn {
  text-align: center;
}
.cid-tu3oi9zhCW .navbar-dropdown {
  position: relative !important;
}
.cid-tu3oi9zhCW .navbar-dropdown {
  position: absolute !important;
}
.cid-tu3oi9zhCW .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-tu3oi9zhCW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tu3oi9zhCW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tu3oi9zhCW .dropdown-item:hover,
.cid-tu3oi9zhCW .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tu3oi9zhCW .dropdown-item:hover span {
  color: white;
}
.cid-tu3oi9zhCW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tu3oi9zhCW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tu3oi9zhCW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tu3oi9zhCW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tu3oi9zhCW .nav-link {
  position: relative;
}
.cid-tu3oi9zhCW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tu3oi9zhCW .container {
    flex-wrap: nowrap;
  }
}
.cid-tu3oi9zhCW .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tu3oi9zhCW .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tu3oi9zhCW .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tu3oi9zhCW .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tu3oi9zhCW .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tu3oi9zhCW .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tu3oi9zhCW .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tu3oi9zhCW .dropdown-menu,
.cid-tu3oi9zhCW .navbar.opened {
  background: #001825 !important;
}
.cid-tu3oi9zhCW .nav-item:focus,
.cid-tu3oi9zhCW .nav-link:focus {
  outline: none;
}
.cid-tu3oi9zhCW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tu3oi9zhCW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tu3oi9zhCW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tu3oi9zhCW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tu3oi9zhCW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tu3oi9zhCW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tu3oi9zhCW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tu3oi9zhCW .navbar.opened {
  transition: all 0.3s;
}
.cid-tu3oi9zhCW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tu3oi9zhCW .navbar .navbar-logo img {
  width: auto;
}
.cid-tu3oi9zhCW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tu3oi9zhCW .navbar.collapsed {
  justify-content: center;
}
.cid-tu3oi9zhCW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tu3oi9zhCW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tu3oi9zhCW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tu3oi9zhCW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tu3oi9zhCW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tu3oi9zhCW .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-tu3oi9zhCW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tu3oi9zhCW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tu3oi9zhCW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tu3oi9zhCW .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tu3oi9zhCW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tu3oi9zhCW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tu3oi9zhCW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tu3oi9zhCW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tu3oi9zhCW .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-tu3oi9zhCW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tu3oi9zhCW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tu3oi9zhCW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tu3oi9zhCW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tu3oi9zhCW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tu3oi9zhCW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tu3oi9zhCW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tu3oi9zhCW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tu3oi9zhCW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tu3oi9zhCW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tu3oi9zhCW .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tu3oi9zhCW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tu3oi9zhCW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tu3oi9zhCW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tu3oi9zhCW .dropdown-item.active,
.cid-tu3oi9zhCW .dropdown-item:active {
  background-color: transparent;
}
.cid-tu3oi9zhCW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tu3oi9zhCW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tu3oi9zhCW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tu3oi9zhCW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tu3oi9zhCW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tu3oi9zhCW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tu3oi9zhCW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tu3oi9zhCW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tu3oi9zhCW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tu3oi9zhCW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tu3oi9zhCW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tu3oi9zhCW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu3oi9zhCW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tu3oi9zhCW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tu3oi9zhCW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu3oi9zhCW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tu3oi9zhCW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tu3oi9zhCW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tu3oi9zhCW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tu3oi9zhCW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tu3oi9zhCW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tu3oi9zhCW .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tu3oi9zhCW .navbar {
    height: 70px;
  }
  .cid-tu3oi9zhCW .navbar.opened {
    height: auto;
  }
  .cid-tu3oi9zhCW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tu3oi9zhCW .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tu3oi9zhCW .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tu3oi9zhCW .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tu3oi9zhCW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tu3oi9zhCW .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tu3oi9zhCW .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu3oi9zhCW .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu3oi9zhCW .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tu3oi9zhCW .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tu3oi9zhCW .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tu3oK9o379 {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tu3oK9o379 .wrapper {
    padding: 0 28px;
  }
}
.cid-tu3oK9o379 img,
.cid-tu3oK9o379 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tu3oK9o379 .item:focus,
.cid-tu3oK9o379 span:focus {
  outline: none;
}
.cid-tu3oK9o379 .item {
  margin-bottom: 2rem;
}
.cid-tu3oK9o379 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tu3oK9o379 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tu3oK9o379 .item-title {
  text-align: center;
  color: #4b4b4b;
}
.cid-tu3oie0P0w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tu3oie0P0w .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tu3oie0P0w .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tu3oie0P0w .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tu3oie0P0w .row {
    text-align: center;
  }
  .cid-tu3oie0P0w .row > div {
    margin: auto;
  }
  .cid-tu3oie0P0w .social-row {
    justify-content: center;
  }
}
.cid-tu3oie0P0w .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tu3oie0P0w .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tu3oie0P0w .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tu3oie0P0w .list {
    margin-bottom: 0rem;
  }
}
.cid-tu3oie0P0w .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tu3oie0P0w .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tu3oie0P0w div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tu3oie0P0w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu3oie0P0w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu3oie0P0w H5 {
  color: #ffffff;
}
.cid-tu3oie0P0w P {
  color: #ffffff;
}
.cid-tu3oieIW5h {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tu3oieIW5h .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tu3oieIW5h .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tu3oieIW5h .mbr-text:hover {
  opacity: 1;
}
.cid-tu3oieIW5h a.text-white {
  color: #a99fc5 !important;
}
.cid-tu3oieIW5h a.text-white:hover {
  color: #ffffff !important;
}
.cid-tu3oieIW5h .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tu3oieIW5h .foot-menu li {
  padding: 10px;
}
.cid-tu3oieIW5h .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tu3oieIW5h .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tu3oieIW5h .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tu3oieIW5h .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tu3oieIW5h .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tu3oieIW5h .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tu3oieIW5h .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tu3oieIW5h .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tu3oieIW5h .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tu3oieIW5h .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tu3oieIW5h foot-menu-item {
  color: #ffffff;
}
.cid-tue6BqN2uF {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/businessman-draw-growth-graph-progress-business-analyzing-financial-1500x702.jpeg");
}
.cid-tue6BqN2uF .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tue6BqN2uF .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tue6BqN2uF {
    align-items: flex-end;
  }
  .cid-tue6BqN2uF .row {
    justify-content: center;
  }
  .cid-tue6BqN2uF .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tue6BqN2uF .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tue6BqN2uF {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tue6BqN2uF .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tue6BqN2uF .content-wrap {
    width: 100%;
  }
}
.cid-tue6BqN2uF .mbr-section-title {
  text-align: center;
}
.cid-tue6BqN2uF .mbr-text,
.cid-tue6BqN2uF .mbr-section-btn {
  text-align: center;
}
.cid-tue6BsEz4I .navbar-dropdown {
  position: relative !important;
}
.cid-tue6BsEz4I .navbar-dropdown {
  position: absolute !important;
}
.cid-tue6BsEz4I .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-tue6BsEz4I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tue6BsEz4I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tue6BsEz4I .dropdown-item:hover,
.cid-tue6BsEz4I .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tue6BsEz4I .dropdown-item:hover span {
  color: white;
}
.cid-tue6BsEz4I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tue6BsEz4I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tue6BsEz4I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tue6BsEz4I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tue6BsEz4I .nav-link {
  position: relative;
}
.cid-tue6BsEz4I .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tue6BsEz4I .container {
    flex-wrap: nowrap;
  }
}
.cid-tue6BsEz4I .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tue6BsEz4I .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tue6BsEz4I .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tue6BsEz4I .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tue6BsEz4I .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tue6BsEz4I .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tue6BsEz4I .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tue6BsEz4I .dropdown-menu,
.cid-tue6BsEz4I .navbar.opened {
  background: #001825 !important;
}
.cid-tue6BsEz4I .nav-item:focus,
.cid-tue6BsEz4I .nav-link:focus {
  outline: none;
}
.cid-tue6BsEz4I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tue6BsEz4I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tue6BsEz4I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tue6BsEz4I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tue6BsEz4I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tue6BsEz4I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tue6BsEz4I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tue6BsEz4I .navbar.opened {
  transition: all 0.3s;
}
.cid-tue6BsEz4I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tue6BsEz4I .navbar .navbar-logo img {
  width: auto;
}
.cid-tue6BsEz4I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tue6BsEz4I .navbar.collapsed {
  justify-content: center;
}
.cid-tue6BsEz4I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tue6BsEz4I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tue6BsEz4I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tue6BsEz4I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tue6BsEz4I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tue6BsEz4I .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-tue6BsEz4I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tue6BsEz4I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tue6BsEz4I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tue6BsEz4I .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tue6BsEz4I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tue6BsEz4I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tue6BsEz4I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tue6BsEz4I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tue6BsEz4I .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-tue6BsEz4I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tue6BsEz4I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tue6BsEz4I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tue6BsEz4I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tue6BsEz4I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tue6BsEz4I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tue6BsEz4I .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tue6BsEz4I .navbar.navbar-short {
  min-height: 60px;
}
.cid-tue6BsEz4I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tue6BsEz4I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tue6BsEz4I .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tue6BsEz4I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tue6BsEz4I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tue6BsEz4I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tue6BsEz4I .dropdown-item.active,
.cid-tue6BsEz4I .dropdown-item:active {
  background-color: transparent;
}
.cid-tue6BsEz4I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tue6BsEz4I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tue6BsEz4I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tue6BsEz4I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tue6BsEz4I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tue6BsEz4I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tue6BsEz4I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tue6BsEz4I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tue6BsEz4I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tue6BsEz4I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tue6BsEz4I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tue6BsEz4I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tue6BsEz4I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tue6BsEz4I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tue6BsEz4I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tue6BsEz4I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tue6BsEz4I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tue6BsEz4I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tue6BsEz4I .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tue6BsEz4I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tue6BsEz4I .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tue6BsEz4I .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tue6BsEz4I .navbar {
    height: 70px;
  }
  .cid-tue6BsEz4I .navbar.opened {
    height: auto;
  }
  .cid-tue6BsEz4I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tue6BsEz4I .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tue6BsEz4I .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tue6BsEz4I .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tue6BsEz4I .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tue6BsEz4I .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tue6BsEz4I .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tue6BsEz4I .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tue6BsEz4I .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tue6BsEz4I .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tue6BsEz4I .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tueoFOIq1b {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/17841400-200120-world-map-silhouette.-digital-simple-map-in-flat-style.-vector-illustration-isolated-on-white-background-2000x1365.jpeg");
}
.cid-tueoFOIq1b .card-wrap {
  width: 29.6rem;
  height: 29.6rem;
  position: relative;
}
.cid-tueoFOIq1b .card {
  border: 2px solid #17171A;
  border-radius: 0;
  width: 14.8rem;
  height: 14.8rem;
}
.cid-tueoFOIq1b .right {
  position: absolute;
  top: 1px;
  right: 2px;
}
.cid-tueoFOIq1b .left {
  position: absolute;
  bottom: 1px;
  left: 0;
}
.cid-tueoFOIq1b .item-btn {
  width: 10.6rem;
  height: 10.6rem;
}
.cid-tueoFOIq1b .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
@media (min-width: 1000px) {
  .cid-tueoFOIq1b .content-wrap {
    flex-wrap: nowrap;
  }
  .cid-tueoFOIq1b .main-content {
    width: 75%;
    padding-left: 3rem;
  }
}
@media (max-width: 999px) {
  .cid-tueoFOIq1b .content-wrap {
    flex-wrap: wrap;
  }
  .cid-tueoFOIq1b .main-content {
    width: 75%;
    padding-left: 1rem;
  }
  .cid-tueoFOIq1b .main-content p {
    width: 70%;
  }
  .cid-tueoFOIq1b .card-wrap {
    width: 20.8rem;
    height: 20.8rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
  }
  .cid-tueoFOIq1b .card {
    width: 10.4rem;
    height: 10.4rem;
  }
  .cid-tueoFOIq1b .item-btn {
    width: 8rem;
    height: 8rem;
    margin-left: 5rem;
    margin-top: -1.2rem;
  }
}
@media (max-width: 769px) {
  .cid-tueoFOIq1b .main-content {
    width: 100%;
    text-align: center;
  }
  .cid-tueoFOIq1b .main-content p {
    width: 100%;
  }
  .cid-tueoFOIq1b .add-content {
    display: none;
  }
  .cid-tueoFOIq1b .item-btn {
    width: 6.9rem;
    height: 6.9rem;
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-tueoFOIq1b .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tueoFOIq1b .mbr-section-title a {
  color: #9b9ba5;
}
.cid-tueoFOIq1b .mbr-text {
  color: #222222;
}
.cid-tueoFOIq1b .mbr-section-subtitle {
  color: #c1541c;
}
.cid-tueoFOIq1b .mbr-section-title {
  color: #4b4b4b;
}
.cid-tueR9ab3nj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tueR9ab3nj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tueR9ab3nj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tueR9ab3nj .row {
  justify-content: center;
}
.cid-tueR9ab3nj .item-wrap {
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tueR9ab3nj .card {
    margin-bottom: 3rem;
  }
}
.cid-tueR9ab3nj .card:first-child {
  padding-right: 24px;
}
@media (max-width: 992px) {
  .cid-tueR9ab3nj .card:first-child {
    padding: 0 12px;
  }
}
.cid-tueR9ab3nj .card:nth-child(2) {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-tueR9ab3nj .card:nth-child(2) {
    padding: 0 12px;
  }
}
.cid-tueR9ab3nj .card:last-child {
  padding-left: 24px;
}
@media (max-width: 992px) {
  .cid-tueR9ab3nj .card:last-child {
    padding: 0 12px;
  }
}
.cid-tueR9ab3nj .card .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-tueR9ab3nj .card .mbr-section-title {
    margin-bottom: 2rem;
  }
}
.cid-tueR9ab3nj .card .mbr-text {
  margin-bottom: 0;
  /* opacity: .6; */
}
.cid-tueR9ab3nj .mbr-section-title {
  color: #ffffff;
}
.cid-tueR9ab3nj .mbr-text {
  color: #ffffff;
}
.cid-tuevPjt6zk {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tuevPjt6zk .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tuevPjt6zk .team-card:hover {
  transform: translateY(-10px);
}
.cid-tuevPjt6zk .card-wrap {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #efefef;
}
@media (max-width: 991px) {
  .cid-tuevPjt6zk .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tuevPjt6zk .card-wrap .image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tuevPjt6zk .card-wrap .content-wrap {
  padding: 1rem;
}
.cid-tuevPjt6zk .card-text {
  padding-bottom: 1rem;
}
.cid-tuevPjt6zk .social-row {
  text-align: center;
}
.cid-tuevPjt6zk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: #fafafa;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.cid-tuevPjt6zk .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #000000;
  font-size: 1.2rem;
}
.cid-tuevPjt6zk .social-row .soc-item:hover {
  background: #000000;
  border: 2px solid #fafafa;
}
.cid-tuevPjt6zk .social-row .soc-item:hover .mbr-iconfont {
  color: #fafafa;
}
.cid-tuevPjt6zk .card-title,
.cid-tuevPjt6zk .social-row {
  color: #4b4b4b;
}
.cid-tuevPjt6zk .mbr-role,
.cid-tuevPjt6zk .social-row {
  color: #da291c;
}
.cid-tuevPjt6zk .card-text,
.cid-tuevPjt6zk .mbr-section-btn,
.cid-tuevPjt6zk .social-row {
  color: #222222;
}
.cid-tuevPjt6zk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuevPjt6zk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tueEtwFQj0 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tueEtwFQj0 .wrapper {
  padding: 70px 90px;
  background: transparent;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
@media (max-width: 768px) {
  .cid-tueEtwFQj0 .wrapper {
    padding: 20px;
  }
}
.cid-tueEtwFQj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tueEtwFQj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tueEtwFQj0 .mbr-text.text1 {
  color: #222222;
}
.cid-tueEtwFQj0 .mbr-text.text2 {
  color: #222222;
}
.cid-tuetkwgFtR {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  background-color: #000d19;
}
.cid-tuetkwgFtR .bg-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  height: 100%;
  width: 30%;
}
.cid-tuetkwgFtR .card-title {
  color: #ffffff;
}
.cid-tuetkwgFtR .mbr-text,
.cid-tuetkwgFtR .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tuetkwgFtR .text-wrapper {
    padding-left: 5rem;
  }
  .cid-tuetkwgFtR .image-wrapper img {
    width: 650px;
    height: 615px;
    object-fit: cover;
  }
  .cid-tuetkwgFtR .item-btn {
    width: 10.6rem;
    height: 10.6rem;
  }
  .cid-tuetkwgFtR .item-btn:hover {
    color: #ffffff;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tuetkwgFtR .text-wrapper {
    padding-left: 2rem;
    position: relative;
  }
  .cid-tuetkwgFtR .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tuetkwgFtR .item-btn {
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 767px) {
  .cid-tuetkwgFtR .bg-wrapper {
    display: none;
  }
  .cid-tuetkwgFtR .text-wrapper {
    text-align: center;
  }
  .cid-tuetkwgFtR .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tuetkwgFtR .item-btn {
    width: 7rem;
    height: 7rem;
    position: static;
  }
}
.cid-tuetkwgFtR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .cid-tuetkwgFtR .card-title {
    letter-spacing: -1px;
  }
}
.cid-tujUrE2UaJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tujUrE2UaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tujUrE2UaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tujUrE2UaJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #da291c;
  margin-bottom: 2rem;
}
.cid-tujUrE2UaJ .card-wrapper {
  margin-top: 3rem;
}
.cid-tujUrE2UaJ .row {
  justify-content: center;
}
.cid-tujUrE2UaJ .mbr-section-title {
  color: #19303d;
}
.cid-tujUrE2UaJ .mbr-section-subtitle {
  color: #19303d;
}
.cid-tujUrE2UaJ .card-title,
.cid-tujUrE2UaJ .iconfont-wrapper {
  color: #4b4b4b;
}
.cid-tujUrE2UaJ .card-text {
  color: #222222;
}
.cid-tue6BtkQ4J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tue6BtkQ4J .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tue6BtkQ4J .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tue6BtkQ4J .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tue6BtkQ4J .row {
    text-align: center;
  }
  .cid-tue6BtkQ4J .row > div {
    margin: auto;
  }
  .cid-tue6BtkQ4J .social-row {
    justify-content: center;
  }
}
.cid-tue6BtkQ4J .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tue6BtkQ4J .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tue6BtkQ4J .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tue6BtkQ4J .list {
    margin-bottom: 0rem;
  }
}
.cid-tue6BtkQ4J .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tue6BtkQ4J .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tue6BtkQ4J div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tue6BtkQ4J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tue6BtkQ4J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tue6BtkQ4J H5 {
  color: #ffffff;
}
.cid-tue6BtkQ4J P {
  color: #ffffff;
}
.cid-tue6BueWHb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tue6BueWHb .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tue6BueWHb .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tue6BueWHb .mbr-text:hover {
  opacity: 1;
}
.cid-tue6BueWHb a.text-white {
  color: #a99fc5 !important;
}
.cid-tue6BueWHb a.text-white:hover {
  color: #ffffff !important;
}
.cid-tue6BueWHb .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tue6BueWHb .foot-menu li {
  padding: 10px;
}
.cid-tue6BueWHb .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tue6BueWHb .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tue6BueWHb .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tue6BueWHb .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tue6BueWHb .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tue6BueWHb .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tue6BueWHb .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tue6BueWHb .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tue6BueWHb .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tue6BueWHb .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tue6BueWHb foot-menu-item {
  color: #ffffff;
}
.cid-tuk0euXPjJ {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/manager-engineer-check-control-automation-robot-arms-machine-industrial-welding-robotics-1-1500x702.jpeg");
}
.cid-tuk0euXPjJ .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tuk0euXPjJ .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tuk0euXPjJ {
    align-items: flex-end;
  }
  .cid-tuk0euXPjJ .row {
    justify-content: center;
  }
  .cid-tuk0euXPjJ .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tuk0euXPjJ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tuk0euXPjJ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tuk0euXPjJ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tuk0euXPjJ .content-wrap {
    width: 100%;
  }
}
.cid-tuk0euXPjJ .mbr-section-title {
  text-align: center;
}
.cid-tuk0euXPjJ .mbr-text,
.cid-tuk0euXPjJ .mbr-section-btn {
  text-align: center;
}
.cid-tuk0evMAT8 .navbar-dropdown {
  position: relative !important;
}
.cid-tuk0evMAT8 .navbar-dropdown {
  position: absolute !important;
}
.cid-tuk0evMAT8 .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-tuk0evMAT8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tuk0evMAT8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuk0evMAT8 .dropdown-item:hover,
.cid-tuk0evMAT8 .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tuk0evMAT8 .dropdown-item:hover span {
  color: white;
}
.cid-tuk0evMAT8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuk0evMAT8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuk0evMAT8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tuk0evMAT8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuk0evMAT8 .nav-link {
  position: relative;
}
.cid-tuk0evMAT8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuk0evMAT8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tuk0evMAT8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tuk0evMAT8 .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tuk0evMAT8 .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tuk0evMAT8 .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tuk0evMAT8 .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tuk0evMAT8 .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tuk0evMAT8 .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tuk0evMAT8 .dropdown-menu,
.cid-tuk0evMAT8 .navbar.opened {
  background: #001825 !important;
}
.cid-tuk0evMAT8 .nav-item:focus,
.cid-tuk0evMAT8 .nav-link:focus {
  outline: none;
}
.cid-tuk0evMAT8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuk0evMAT8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuk0evMAT8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuk0evMAT8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuk0evMAT8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuk0evMAT8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuk0evMAT8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tuk0evMAT8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tuk0evMAT8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuk0evMAT8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tuk0evMAT8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuk0evMAT8 .navbar.collapsed {
  justify-content: center;
}
.cid-tuk0evMAT8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuk0evMAT8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuk0evMAT8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tuk0evMAT8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuk0evMAT8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuk0evMAT8 .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-tuk0evMAT8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuk0evMAT8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuk0evMAT8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuk0evMAT8 .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tuk0evMAT8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuk0evMAT8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuk0evMAT8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuk0evMAT8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuk0evMAT8 .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-tuk0evMAT8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuk0evMAT8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuk0evMAT8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuk0evMAT8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuk0evMAT8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuk0evMAT8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tuk0evMAT8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tuk0evMAT8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuk0evMAT8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuk0evMAT8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tuk0evMAT8 .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tuk0evMAT8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuk0evMAT8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuk0evMAT8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuk0evMAT8 .dropdown-item.active,
.cid-tuk0evMAT8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tuk0evMAT8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuk0evMAT8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuk0evMAT8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuk0evMAT8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tuk0evMAT8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuk0evMAT8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuk0evMAT8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuk0evMAT8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuk0evMAT8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuk0evMAT8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tuk0evMAT8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuk0evMAT8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuk0evMAT8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuk0evMAT8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuk0evMAT8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuk0evMAT8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuk0evMAT8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuk0evMAT8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuk0evMAT8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tuk0evMAT8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuk0evMAT8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tuk0evMAT8 .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuk0evMAT8 .navbar {
    height: 70px;
  }
  .cid-tuk0evMAT8 .navbar.opened {
    height: auto;
  }
  .cid-tuk0evMAT8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tuk0evMAT8 .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tuk0evMAT8 .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tuk0evMAT8 .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tuk0evMAT8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tuk0evMAT8 .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tuk0evMAT8 .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tuk0evMAT8 .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tuk0evMAT8 .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tuk0evMAT8 .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tuk0evMAT8 .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tuk8wKHm63 {
  background-color: #f8f8f8;
}
.cid-tuk8wKHm63 .container-fluid {
  padding-right: 0;
}
.cid-tuk8wKHm63 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuk8wKHm63 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuk8wKHm63 .title {
  display: flex;
  align-items: center;
}
.cid-tuk8wKHm63 .title-wrapper {
  width: 100%;
}
.cid-tuk8wKHm63 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tuk8wKHm63 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tuk8wKHm63 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tuk8wKHm63 .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tuk8wKHm63 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tuk8wKHm63 .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tuk8wKHm63 .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tuk8wKHm63 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tuk8wKHm63 .mbr-section-subtitle {
  color: #181818;
}
.cid-tuk8wKHm63 .mbr-section-title {
  color: #4b4b4b;
}
.cid-tuk8wKHm63 .mbr-text {
  color: #454545;
}
.cid-tuk0eA9BV0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tuk0eA9BV0 .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tuk0eA9BV0 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tuk0eA9BV0 .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tuk0eA9BV0 .row {
    text-align: center;
  }
  .cid-tuk0eA9BV0 .row > div {
    margin: auto;
  }
  .cid-tuk0eA9BV0 .social-row {
    justify-content: center;
  }
}
.cid-tuk0eA9BV0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tuk0eA9BV0 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tuk0eA9BV0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tuk0eA9BV0 .list {
    margin-bottom: 0rem;
  }
}
.cid-tuk0eA9BV0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tuk0eA9BV0 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tuk0eA9BV0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tuk0eA9BV0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuk0eA9BV0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuk0eA9BV0 H5 {
  color: #ffffff;
}
.cid-tuk0eA9BV0 P {
  color: #ffffff;
}
.cid-tuk0eAKxDn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tuk0eAKxDn .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tuk0eAKxDn .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tuk0eAKxDn .mbr-text:hover {
  opacity: 1;
}
.cid-tuk0eAKxDn a.text-white {
  color: #a99fc5 !important;
}
.cid-tuk0eAKxDn a.text-white:hover {
  color: #ffffff !important;
}
.cid-tuk0eAKxDn .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tuk0eAKxDn .foot-menu li {
  padding: 10px;
}
.cid-tuk0eAKxDn .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tuk0eAKxDn .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tuk0eAKxDn .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tuk0eAKxDn .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tuk0eAKxDn .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tuk0eAKxDn .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tuk0eAKxDn .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tuk0eAKxDn .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tuk0eAKxDn .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tuk0eAKxDn .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tuk0eAKxDn foot-menu-item {
  color: #ffffff;
}
.cid-tuk7TDlpn6 {
  display: flex;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/two-warehouse-workers-walking-distribution-storage-area-discussing-about-logistics-organization-1500x1001.jpeg");
}
.cid-tuk7TDlpn6 .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tuk7TDlpn6 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tuk7TDlpn6 {
    align-items: flex-end;
  }
  .cid-tuk7TDlpn6 .row {
    justify-content: center;
  }
  .cid-tuk7TDlpn6 .content-wrap {
    width: 50%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tuk7TDlpn6 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tuk7TDlpn6 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tuk7TDlpn6 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tuk7TDlpn6 .content-wrap {
    width: 100%;
  }
}
.cid-tuk7TDlpn6 .mbr-section-title {
  text-align: center;
}
.cid-tuk7TDlpn6 .mbr-text,
.cid-tuk7TDlpn6 .mbr-section-btn {
  text-align: center;
}
.cid-tuk7TDNSq5 .navbar-dropdown {
  position: relative !important;
}
.cid-tuk7TDNSq5 .navbar-dropdown {
  position: absolute !important;
}
.cid-tuk7TDNSq5 .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-tuk7TDNSq5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tuk7TDNSq5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tuk7TDNSq5 .dropdown-item:hover,
.cid-tuk7TDNSq5 .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tuk7TDNSq5 .dropdown-item:hover span {
  color: white;
}
.cid-tuk7TDNSq5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tuk7TDNSq5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tuk7TDNSq5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tuk7TDNSq5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tuk7TDNSq5 .nav-link {
  position: relative;
}
.cid-tuk7TDNSq5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tuk7TDNSq5 .container {
    flex-wrap: nowrap;
  }
}
.cid-tuk7TDNSq5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tuk7TDNSq5 .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tuk7TDNSq5 .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tuk7TDNSq5 .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tuk7TDNSq5 .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tuk7TDNSq5 .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tuk7TDNSq5 .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tuk7TDNSq5 .dropdown-menu,
.cid-tuk7TDNSq5 .navbar.opened {
  background: #001825 !important;
}
.cid-tuk7TDNSq5 .nav-item:focus,
.cid-tuk7TDNSq5 .nav-link:focus {
  outline: none;
}
.cid-tuk7TDNSq5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tuk7TDNSq5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tuk7TDNSq5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tuk7TDNSq5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tuk7TDNSq5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tuk7TDNSq5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tuk7TDNSq5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tuk7TDNSq5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tuk7TDNSq5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tuk7TDNSq5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tuk7TDNSq5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tuk7TDNSq5 .navbar.collapsed {
  justify-content: center;
}
.cid-tuk7TDNSq5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tuk7TDNSq5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tuk7TDNSq5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tuk7TDNSq5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tuk7TDNSq5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tuk7TDNSq5 .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-tuk7TDNSq5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tuk7TDNSq5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tuk7TDNSq5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tuk7TDNSq5 .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tuk7TDNSq5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tuk7TDNSq5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tuk7TDNSq5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tuk7TDNSq5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tuk7TDNSq5 .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-tuk7TDNSq5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tuk7TDNSq5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tuk7TDNSq5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tuk7TDNSq5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tuk7TDNSq5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tuk7TDNSq5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tuk7TDNSq5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tuk7TDNSq5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tuk7TDNSq5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tuk7TDNSq5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tuk7TDNSq5 .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tuk7TDNSq5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tuk7TDNSq5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tuk7TDNSq5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tuk7TDNSq5 .dropdown-item.active,
.cid-tuk7TDNSq5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tuk7TDNSq5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tuk7TDNSq5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tuk7TDNSq5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tuk7TDNSq5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tuk7TDNSq5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tuk7TDNSq5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tuk7TDNSq5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tuk7TDNSq5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tuk7TDNSq5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tuk7TDNSq5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tuk7TDNSq5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tuk7TDNSq5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuk7TDNSq5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tuk7TDNSq5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tuk7TDNSq5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuk7TDNSq5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tuk7TDNSq5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tuk7TDNSq5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tuk7TDNSq5 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tuk7TDNSq5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuk7TDNSq5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tuk7TDNSq5 .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tuk7TDNSq5 .navbar {
    height: 70px;
  }
  .cid-tuk7TDNSq5 .navbar.opened {
    height: auto;
  }
  .cid-tuk7TDNSq5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tuk7TDNSq5 .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tuk7TDNSq5 .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tuk7TDNSq5 .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tuk7TDNSq5 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tuk7TDNSq5 .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tuk7TDNSq5 .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tuk7TDNSq5 .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tuk7TDNSq5 .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tuk7TDNSq5 .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tuk7TDNSq5 .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tuk8qbI58s {
  background-color: white;
}
.cid-tuk8qbI58s .container-fluid {
  padding-right: 0;
}
.cid-tuk8qbI58s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuk8qbI58s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuk8qbI58s .title {
  display: flex;
  align-items: center;
}
.cid-tuk8qbI58s .title-wrapper {
  width: 100%;
}
.cid-tuk8qbI58s .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tuk8qbI58s .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-tuk8qbI58s .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tuk8qbI58s .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-tuk8qbI58s .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-tuk8qbI58s .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-tuk8qbI58s .image-wrapper {
    margin-top: 39px;
  }
}
.cid-tuk8qbI58s .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tuk8qbI58s .mbr-section-subtitle {
  color: #181818;
}
.cid-tuk8qbI58s .mbr-section-title {
  color: #4b4b4b;
}
.cid-tuk8qbI58s .mbr-text {
  color: #454545;
}
.cid-tuk7THDsft {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tuk7THDsft .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tuk7THDsft .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tuk7THDsft .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tuk7THDsft .row {
    text-align: center;
  }
  .cid-tuk7THDsft .row > div {
    margin: auto;
  }
  .cid-tuk7THDsft .social-row {
    justify-content: center;
  }
}
.cid-tuk7THDsft .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tuk7THDsft .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tuk7THDsft .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tuk7THDsft .list {
    margin-bottom: 0rem;
  }
}
.cid-tuk7THDsft .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tuk7THDsft .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tuk7THDsft div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tuk7THDsft .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuk7THDsft .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuk7THDsft H5 {
  color: #ffffff;
}
.cid-tuk7THDsft P {
  color: #ffffff;
}
.cid-tuk7TI7zkF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tuk7TI7zkF .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tuk7TI7zkF .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tuk7TI7zkF .mbr-text:hover {
  opacity: 1;
}
.cid-tuk7TI7zkF a.text-white {
  color: #a99fc5 !important;
}
.cid-tuk7TI7zkF a.text-white:hover {
  color: #ffffff !important;
}
.cid-tuk7TI7zkF .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tuk7TI7zkF .foot-menu li {
  padding: 10px;
}
.cid-tuk7TI7zkF .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tuk7TI7zkF .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tuk7TI7zkF .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tuk7TI7zkF .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tuk7TI7zkF .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tuk7TI7zkF .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tuk7TI7zkF .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tuk7TI7zkF .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tuk7TI7zkF .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tuk7TI7zkF .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tuk7TI7zkF foot-menu-item {
  color: #ffffff;
}
.cid-tukf1iB8ix {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dark-grey-black-slate-texture-with-high-resolution-background-natural-black-stone-wall-1500x1000.jpeg");
}
.cid-tukf1iB8ix .mbr-text,
.cid-tukf1iB8ix .mbr-section-btn {
  color: #ffffff;
}
.cid-tukf1iB8ix .mbr-section-title {
  color: #ffffff;
}
.cid-tukf1iB8ix .mbr-fallback-image.disabled {
  display: none;
}
.cid-tukf1iB8ix .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tukd7oS8Dj .navbar-dropdown {
  position: relative !important;
}
.cid-tukd7oS8Dj .navbar-dropdown {
  position: absolute !important;
}
.cid-tukd7oS8Dj .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-tukd7oS8Dj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tukd7oS8Dj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tukd7oS8Dj .dropdown-item:hover,
.cid-tukd7oS8Dj .dropdown-item:focus {
  background: #da291c !important;
  color: white !important;
}
.cid-tukd7oS8Dj .dropdown-item:hover span {
  color: white;
}
.cid-tukd7oS8Dj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tukd7oS8Dj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tukd7oS8Dj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tukd7oS8Dj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tukd7oS8Dj .nav-link {
  position: relative;
}
.cid-tukd7oS8Dj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tukd7oS8Dj .container {
    flex-wrap: nowrap;
  }
}
.cid-tukd7oS8Dj .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: 0.4s all;
}
.cid-tukd7oS8Dj .iconfont-wrapper .mbr-iconfont {
  transition: 0.4s all;
}
.cid-tukd7oS8Dj .iconfont-wrapper:hover .mbr-iconfont {
  color: #da291c;
}
.cid-tukd7oS8Dj .navbar-nav .nav-item {
  margin-right: 3.6vw;
}
.cid-tukd7oS8Dj .navbar-nav .nav-item:hover {
  color: #da291c !important;
}
.cid-tukd7oS8Dj .navbar-nav .nav-link {
  margin: 0 !important;
  padding: 20px !important;
}
.cid-tukd7oS8Dj .navbar-nav .nav-link:hover {
  color: #da291c !important;
}
.cid-tukd7oS8Dj .dropdown-menu,
.cid-tukd7oS8Dj .navbar.opened {
  background: #001825 !important;
}
.cid-tukd7oS8Dj .nav-item:focus,
.cid-tukd7oS8Dj .nav-link:focus {
  outline: none;
}
.cid-tukd7oS8Dj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tukd7oS8Dj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tukd7oS8Dj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tukd7oS8Dj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tukd7oS8Dj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tukd7oS8Dj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tukd7oS8Dj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, #001825 0%, rgba(0, 24, 37, 0.6) 41.67%, rgba(23, 61, 51, 0) 100%);
  border: none !important;
  box-shadow: none;
  padding: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.cid-tukd7oS8Dj .navbar.opened {
  transition: all 0.3s;
}
.cid-tukd7oS8Dj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tukd7oS8Dj .navbar .navbar-logo img {
  width: auto;
}
.cid-tukd7oS8Dj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tukd7oS8Dj .navbar.collapsed {
  justify-content: center;
}
.cid-tukd7oS8Dj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tukd7oS8Dj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tukd7oS8Dj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tukd7oS8Dj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tukd7oS8Dj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tukd7oS8Dj .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-tukd7oS8Dj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tukd7oS8Dj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tukd7oS8Dj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tukd7oS8Dj .navbar {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cid-tukd7oS8Dj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tukd7oS8Dj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tukd7oS8Dj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tukd7oS8Dj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tukd7oS8Dj .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-tukd7oS8Dj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tukd7oS8Dj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tukd7oS8Dj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tukd7oS8Dj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tukd7oS8Dj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tukd7oS8Dj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tukd7oS8Dj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tukd7oS8Dj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tukd7oS8Dj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tukd7oS8Dj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-tukd7oS8Dj .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}
.cid-tukd7oS8Dj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tukd7oS8Dj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tukd7oS8Dj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tukd7oS8Dj .dropdown-item.active,
.cid-tukd7oS8Dj .dropdown-item:active {
  background-color: transparent;
}
.cid-tukd7oS8Dj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tukd7oS8Dj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tukd7oS8Dj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tukd7oS8Dj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #001825;
}
.cid-tukd7oS8Dj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tukd7oS8Dj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tukd7oS8Dj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tukd7oS8Dj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tukd7oS8Dj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tukd7oS8Dj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tukd7oS8Dj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tukd7oS8Dj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tukd7oS8Dj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tukd7oS8Dj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tukd7oS8Dj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tukd7oS8Dj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tukd7oS8Dj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tukd7oS8Dj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tukd7oS8Dj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tukd7oS8Dj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tukd7oS8Dj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tukd7oS8Dj .icons-menu {
    padding: 1rem 0 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tukd7oS8Dj .navbar {
    height: 70px;
  }
  .cid-tukd7oS8Dj .navbar.opened {
    height: auto;
  }
  .cid-tukd7oS8Dj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 575px) {
  .cid-tukd7oS8Dj .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-tukd7oS8Dj .mbr-section-btn .btn {
  min-width: 80px;
}
@media (max-width: 575px) {
  .cid-tukd7oS8Dj .mbr-section-btn .btn {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  .cid-tukd7oS8Dj .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tukd7oS8Dj .custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #FFFFFF !important;
}
.cid-tukd7oS8Dj .custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tukd7oS8Dj .custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tukd7oS8Dj .custom-section-btn .btn-black-outline {
  color: #0E0E0E !important;
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: 1px solid #0E0E0E !important;
}
.cid-tukd7oS8Dj .custom-section-btn .btn-black-outline:hover {
  background: linear-gradient(to bottom, transparent, transparent 50%, #da291c 50%, #da291c 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
  border: 1px solid transparent !important;
}
.cid-tukd7oS8Dj .custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.cid-tuklqgRCOi {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tuklqgRCOi .row {
  flex-direction: row-reverse;
}
.cid-tuklqgRCOi .mbr-text {
  max-width: 550px;
}
.cid-tuklqgRCOi .row {
  align-items: center;
}
.cid-tuklqgRCOi .mbr-section-subtitle {
  line-height: 1.6;
  color: #4b4b4b;
}
.cid-tuklqgRCOi .mbr-text,
.cid-tuklqgRCOi .mbr-section-btn {
  color: #4b4b4b;
}
.cid-tuklqgRCOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuklqgRCOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuklqgRCOi .mbr-section-title {
  color: #4b4b4b;
}
.cid-tukLanvpcK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tukLanvpcK .it {
  margin-top: 30px;
}
.cid-tukLanvpcK .it:nth-child(1) {
  margin-top: 0px;
}
.cid-tukLanvpcK .it:nth-child(2) {
  margin-top: 0px;
}
.cid-tukLanvpcK .it:nth-child(3) {
  margin-top: 0px;
}
.cid-tukLanvpcK .it:nth-child(4) {
  margin-top: 0px;
}
@media (max-width: 576px) {
  .cid-tukLanvpcK .it {
    margin-top: 15px;
  }
  .cid-tukLanvpcK .it:nth-child(2) {
    margin-top: 15px;
  }
  .cid-tukLanvpcK .it:nth-child(3) {
    margin-top: 15px;
  }
  .cid-tukLanvpcK .it:nth-child(4) {
    margin-top: 15px;
  }
}
.cid-tuqguHA7dm {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tuqguHA7dm .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tuqguHA7dm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuqguHA7dm .row {
  background: #222222;
  border-radius: 3rem;
  justify-content: center;
  padding: 8rem 6rem;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tuqguHA7dm .row {
    padding: 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuqguHA7dm .row {
    padding: 3rem 1rem;
  }
}
.cid-tuqguHA7dm .mbr-iconfont {
  display: flex;
  font-size: 1.5rem;
  color: #ffffff;
  background: #da291c;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.cid-tuqguHA7dm .card-box {
  display: flex;
  align-items: center;
}
.cid-tuqguHA7dm .card-box .iconfont-wrapper {
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tuqguHA7dm .card-box {
    flex-direction: column;
  }
  .cid-tuqguHA7dm .card-box .iconfont-wrapper {
    margin-right: 0rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tuqguHA7dm .card-link:hover a {
  background-image: none !important;
}
.cid-tuqguHA7dm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tuqguHA7dm .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-tuqguHA7dm .mbr-section-title {
  color: #ffffff;
}
.cid-tuqguHA7dm .card-title,
.cid-tuqguHA7dm .iconfont-wrapper {
  color: #ffffff;
  text-align: left;
}
.cid-tuuQZYSRcc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tuuQZYSRcc .wrapper {
  margin-left: -32px;
  margin-right: -32px;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 767px) {
  .cid-tuuQZYSRcc .wrapper {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.cid-tuuQZYSRcc .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #da291c;
  margin-left: 1rem;
}
.cid-tuuQZYSRcc .panel-group {
  border: none;
}
.cid-tuuQZYSRcc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
.cid-tuuQZYSRcc .card {
  margin-right: -1px;
  margin-left: -1px;
  border-bottom: 1px solid #222222;
  margin-bottom: -1px;
}
.cid-tuuQZYSRcc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border-bottom: none;
  border-top: 1px solid #222222;
  border-left: 1px solid #222222;
  border-right: 1px solid #222222;
  padding: 52px 40px 28px;
}
.cid-tuuQZYSRcc .panel-collapse {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.cid-tuuQZYSRcc .mbr-section-head {
  padding: 56px 40px 32px;
  border-left: 1px solid #222222;
  border-right: 1px solid #222222;
  border-top: 1px solid #222222;
  margin-top: -1px;
  margin-right: -1px;
  margin-left: -1px;
}
.cid-tuuQZYSRcc .mbr-section-title {
  color: #4b4b4b;
  text-align: left;
}
.cid-tuuQZYSRcc .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tuuQZYSRcc .panel-title-edit {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tuuQZYSRcc .panel-title-edit {
    margin-bottom: 16px;
  }
}
.cid-tuuQZYSRcc .panel-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 40px 28px;
}
.cid-tuuQZYSRcc .panel-text {
  width: 100%;
  color: #ffffff;
}
.cid-tuuQZYSRcc .panel-subtext {
  color: #ffffff;
  font-size: 1.5rem;
}
@media (max-width: 991px) {
  .cid-tuuQZYSRcc .panel-title-text {
    margin-bottom: 16px;
  }
}
.cid-tuuQZYSRcc .panel-title__container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
@media (max-width: 991px) {
  .cid-tuuQZYSRcc .panel-title__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-tuuQZYSRcc .panel-title__text-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575px) {
  .cid-tuuQZYSRcc .panel-title__text-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-tuuQZYSRcc .panel-title__text-item {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}
@media (max-width: 575px) {
  .cid-tuuQZYSRcc .panel-title__text-item {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-tuuQZYSRcc .panel-text-add {
  color: #222222;
  margin-bottom: 0;
  text-align: left;
}
.cid-tuuQZYSRcc .panel-add {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #898989;
}
.cid-tuuQZYSRcc .mbri-arrow-down {
  color: #ffffff;
}
.cid-tuuQZYSRcc .mbr-section-btn {
  margin: 24px 0;
}
.cid-tuuQZYSRcc .mbr-section-btn a {
  margin: 0;
  padding: 22px 34px;
}
@media (min-width: 992px) {
  .cid-tuuQZYSRcc .mbr-section-head {
    padding: 56px 60px 32px;
  }
  .cid-tuuQZYSRcc .card .card-header {
    padding: 52px 60px 28px;
  }
  .cid-tuuQZYSRcc .panel-body {
    padding: 0 60px 28px;
  }
}
@media (max-width: 767px) {
  .cid-tuuQZYSRcc .panel-title {
    flex-wrap: wrap;
  }
  .cid-tuuQZYSRcc .panel-title span {
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }
  .cid-tuuQZYSRcc .panel-title__container {
    width: 100%;
  }
}
.cid-tuuQZYSRcc .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tuuQZYSRcc .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (max-width: 575px) {
  .cid-tuuQZYSRcc .mbr-section-head {
    padding: 32px 24px 28px;
  }
  .cid-tuuQZYSRcc .panel-body {
    padding: 0 24px 28px;
  }
  .cid-tuuQZYSRcc .card .card-header {
    padding: 52px 24px 28px;
  }
}
.cid-tuuQZYSRcc .mbr-section-title P {
  text-align: center;
}
.cid-tupPui8SUV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tupPui8SUV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tupPui8SUV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tupPui8SUV .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tupPui8SUV .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tupPui8SUV .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tupPui8SUV .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tupPui8SUV .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tupPui8SUV .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tupPui8SUV .mbr-section-head {
  width: 100%;
}
.cid-tupPui8SUV .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-tupPui8SUV .mbr-section-title {
    text-align: center;
  }
}
.cid-tupPui8SUV .mbr-section-subtitle {
  color: #4b4b4b;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tupPui8SUV .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tupPui8SUV .card-row {
  align-items: stretch;
}
.cid-tupPui8SUV .card {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tupPui8SUV .card {
    margin-top: 30px;
  }
}
.cid-tupPui8SUV .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #f0f0f0, -10px -10px 19px #f0f0f0;
}
@media (max-width: 1199px) {
  .cid-tupPui8SUV .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tupPui8SUV .card-wrapper {
    padding: 20px;
  }
}
.cid-tupPui8SUV .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tupPui8SUV .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tupPui8SUV .card-wrapper:hover .card-title {
  color: #222222 !important;
}
.cid-tupPui8SUV .card-wrapper:hover .card-text {
  color: #222222 !important;
}
.cid-tupPui8SUV .card-wrapper:hover .iconfont-wrapper-hover {
  visibility: visible;
  opacity: 1;
}
.cid-tupPui8SUV .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #f8f8f8, #f8f8f8);
  opacity: 0;
  transition: .5s all;
}
.cid-tupPui8SUV .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tupPui8SUV .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tupPui8SUV .iconfont-wrapper {
    margin-bottom: 10px;
  }
}
.cid-tupPui8SUV .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #da291c;
}
.cid-tupPui8SUV .card-title {
  color: #222222;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tupPui8SUV .card-title {
    margin-bottom: 15px;
  }
}
.cid-tupPui8SUV .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tupPui8SUV .iconfont-wrapper-hover {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  visibility: hidden;
  opacity: 0;
  transition: .5s all;
}
.cid-tupPui8SUV .iconfont-wrapper-hover .mbr-iconfont {
  font-size: 32px;
  color: #ff014e;
}
.cid-tukXeuHBrc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tukXeuHBrc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tukXeuHBrc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tukXeuHBrc .mbr-iconfont {
  display: flex;
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
  width: 30px;
  height: 30px;
  background: #da291c;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tukXeuHBrc .mbr-iconfont {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tukXeuHBrc .card-wrapper {
  margin-top: 3rem;
}
.cid-tukXeuHBrc .mbr-section-title {
  text-align: center;
  color: #4b4b4b;
}
.cid-tukXeuHBrc .card-title,
.cid-tukXeuHBrc .iconfont-wrapper {
  color: #222222;
  text-align: center;
}
.cid-tuvtYkJR8d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tuvtYkJR8d .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tuvtYkJR8d .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tuvtYkJR8d .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #da291c;
  background-color: #f0f0f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "O";
}
.cid-tuvtYkJR8d .mbr-section-title {
  text-align: center;
  color: #222222;
}
.cid-tuvtYkJR8d .mbr-text {
  color: #222222;
}
.cid-tuvtYkJR8d .mbr-subtitle {
  text-align: center;
  color: #4b4b4b;
}
.cid-tuv8h3h1DQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #222222;
}
.cid-tuv8h3h1DQ .title-col {
  width: 25%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-tuv8h3h1DQ .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tuv8h3h1DQ .title-col {
    width: 100%;
    padding: 0 0 12px 0 !important;
  }
}
.cid-tuv8h3h1DQ .text-col {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tuv8h3h1DQ .text-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tuv8h3h1DQ .mbr-section-title {
  color: #222222;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tuv8h3h1DQ .mbr-section-title {
    width: 100%;
  }
}
.cid-tuv8h3h1DQ .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tuv8h3h1DQ .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tuv8h3h1DQ .mbr-text {
  color: #ffffff;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tuv8h3h1DQ .mbr-text {
    width: 100%;
  }
}
.cid-tuvAAPz9YI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tuvAAPz9YI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuvAAPz9YI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuvAAPz9YI .row {
  justify-content: center;
}
.cid-tuvAAPz9YI .item {
  padding: 0 5px !important;
}
.cid-tuvAAPz9YI .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tuvAAPz9YI .item-wrap {
    padding: 0 5px;
  }
}
.cid-tuvAAPz9YI .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tuvAAPz9YI .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tuvAAPz9YI .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tuvAAPz9YI .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tuvAAPz9YI .link-wrapper:hover .mbr-link {
  color: #da291c;
}
@media (max-width: 992px) {
  .cid-tuvAAPz9YI .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tuvAAPz9YI .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tuvAAPz9YI .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tuvAAPz9YI .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tuvAAPz9YI .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tuvAAPz9YI .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tuvAAPz9YI .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tuvAAPz9YI .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tuvAAPz9YI .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tuvAAPz9YI .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tuvAAPz9YI .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tuvAAPz9YI .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tuvAAPz9YI .mbr-link {
  color: #da291c;
  text-align: right;
}
.cid-tuvAAPz9YI .mbr-like {
  color: #181818;
}
.cid-tuvAAPz9YI .mbr-comment,
.cid-tuvAAPz9YI .mbr-iconfont {
  color: #181818;
}
.cid-tuvAAPz9YI .mbr-text {
  color: #181818;
}
.cid-tuvAAPz9YI .mbr-text,
.cid-tuvAAPz9YI .icon-container {
  text-align: center;
  color: #4b4b4b;
}
.cid-tuvsDyblAr {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (min-width: 1000px) {
  .cid-tuvsDyblAr .content {
    flex-wrap: nowrap;
  }
  .cid-tuvsDyblAr .section-head {
    width: 50%;
    margin-left: 3rem;
  }
  .cid-tuvsDyblAr .section-head .item-btn {
    width: 10.6rem;
    height: 10.6rem;
  }
  .cid-tuvsDyblAr .toggle-panel {
    width: 50%;
    border-top: 2px solid #dcdce0;
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media (max-width: 999px) {
  .cid-tuvsDyblAr .content {
    flex-wrap: wrap;
  }
  .cid-tuvsDyblAr .section-head {
    width: 100%;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
  }
  .cid-tuvsDyblAr .section-head p {
    width: 70%;
  }
  .cid-tuvsDyblAr .section-head .item-btn {
    width: 8rem;
    height: 8rem;
    position: absolute;
    top: 1rem;
    right: 0;
  }
  .cid-tuvsDyblAr .toggle-panel {
    width: 100%;
  }
}
@media (max-width: 999px) and (max-width: 499px) {
  .cid-tuvsDyblAr .section-head p {
    width: 100%;
  }
}
@media (max-width: 999px) and (max-width: 499px) {
  .cid-tuvsDyblAr .section-head .item-btn {
    width: 6.5rem;
    height: 6.5rem;
    position: static;
    margin-top: -2rem;
    float: right;
  }
}
.cid-tuvsDyblAr .panel-title-edit {
  color: #28282c;
}
.cid-tuvsDyblAr .panel-text {
  color: #abb2b9;
  padding: 1rem 0;
}
.cid-tuvsDyblAr .card-header {
  padding-left: 0;
  padding-bottom: 1.5rem;
  border: none;
}
.cid-tuvsDyblAr .card {
  border: none;
  border-bottom: 2px solid #dcdce0;
  border-radius: 0;
}
.cid-tuvsDyblAr .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tuvsDyblAr .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tuvsDyblAr .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #dcdce0;
}
@media (max-width: 600px) {
  .cid-tuvsDyblAr .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tuvsDyblAr .mbr-text {
  color: #9b9ba5;
}
.cid-tuvsDyblAr H3 {
  color: #4b4b4b;
}
.cid-tukd7pXc4i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000d19;
}
.cid-tukd7pXc4i .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tukd7pXc4i .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-tukd7pXc4i .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-tukd7pXc4i .row {
    text-align: center;
  }
  .cid-tukd7pXc4i .row > div {
    margin: auto;
  }
  .cid-tukd7pXc4i .social-row {
    justify-content: center;
  }
}
.cid-tukd7pXc4i .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tukd7pXc4i .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tukd7pXc4i .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tukd7pXc4i .list {
    margin-bottom: 0rem;
  }
}
.cid-tukd7pXc4i .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tukd7pXc4i .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tukd7pXc4i div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tukd7pXc4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tukd7pXc4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tukd7pXc4i H5 {
  color: #ffffff;
}
.cid-tukd7pXc4i P {
  color: #ffffff;
}
.cid-tukd7qrvrJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000d19;
}
.cid-tukd7qrvrJ .line {
  height: .8px;
  background: #ffffff;
  opacity: .05;
  margin-bottom: 25px;
}
.cid-tukd7qrvrJ .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: .6;
  color: #ffffff;
}
.cid-tukd7qrvrJ .mbr-text:hover {
  opacity: 1;
}
.cid-tukd7qrvrJ a.text-white {
  color: #a99fc5 !important;
}
.cid-tukd7qrvrJ a.text-white:hover {
  color: #ffffff !important;
}
.cid-tukd7qrvrJ .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tukd7qrvrJ .foot-menu li {
  padding: 10px;
}
.cid-tukd7qrvrJ .foot-menu a {
  display: inline-block;
  line-height: 1.87;
  position: relative;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tukd7qrvrJ .foot-menu a:before {
  width: 0;
  left: auto;
  right: 0;
  bottom: 5px;
  height: 1px;
  content: "";
  position: absolute;
  transition: width 0.2s linear;
  background: #ffffff;
}
.cid-tukd7qrvrJ .foot-menu a:hover::before {
  left: 0;
  width: 100%;
  right: auto;
}
.cid-tukd7qrvrJ .social-list {
  padding: 10px;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tukd7qrvrJ .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tukd7qrvrJ .social-list .soc-item {
  overflow: hidden;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
}
.cid-tukd7qrvrJ .social-list a {
  padding: 8px;
  line-height: 1;
  opacity: .5;
}
.cid-tukd7qrvrJ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tukd7qrvrJ .foot-menu {
    margin-top: 10px;
    justify-content: center;
  }
  .cid-tukd7qrvrJ .mbr-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.cid-tukd7qrvrJ foot-menu-item {
  color: #ffffff;
}
