body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.9rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.84rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.92rem;
    font-size: calc( 2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #3ea98e !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #111120 !important;
}
.bg-warning {
  background-color: #3ea98e !important;
}
.bg-danger {
  background-color: #3ea98e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3ea98e !important;
  border-color: #3ea98e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #29715f !important;
  border-color: #29715f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #29715f !important;
  border-color: #29715f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #191919 !important;
  border-color: #191919 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #111120 !important;
  border-color: #111120 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #3ea98e !important;
  border-color: #3ea98e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #29715f !important;
  border-color: #29715f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #29715f !important;
  border-color: #29715f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3ea98e !important;
  border-color: #3ea98e !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #29715f !important;
  border-color: #29715f !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #29715f !important;
  border-color: #29715f !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #235e4f;
  color: #235e4f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #3ea98e;
  border-color: #3ea98e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3ea98e !important;
  border-color: #3ea98e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #191919;
  border-color: #191919;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #111120;
  border-color: #111120;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #111120 !important;
  border-color: #111120 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #235e4f;
  color: #235e4f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #3ea98e;
  border-color: #3ea98e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #3ea98e !important;
  border-color: #3ea98e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #235e4f;
  color: #235e4f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #3ea98e;
  border-color: #3ea98e;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3ea98e !important;
  border-color: #3ea98e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #3ea98e !important;
}
.text-secondary {
  color: #191919 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #111120 !important;
}
.text-warning {
  color: #3ea98e !important;
}
.text-danger {
  color: #3ea98e !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #235e4f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #235e4f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #3ea98e !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #111120;
}
.alert-warning {
  background-color: #3ea98e;
}
.alert-danger {
  background-color: #3ea98e;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3ea98e;
  border-color: #3ea98e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3ea98e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #90d6c5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #bbbbdb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #90d6c5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #90d6c5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #3ea98e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3ea98e;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #3ea98e;
  border-bottom-color: #3ea98e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #3ea98e !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: #191919 !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='%233ea98e' %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;
}
hr {
  border: none;
  background-color: #3ea98e;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #3ea98e;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #3ea98e;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #3ea98e;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #3ea98e !important;
}
.btn-danger:hover {
  color: #3ea98e !important;
}
.btn-warning:hover {
  color: #3ea98e !important;
}
.btn-success:hover {
  color: #f7ed4a !important;
}
.btn-info:hover {
  color: #111120 !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #191919 !important;
}
.btn-primary:hover {
  color: #3ea98e !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #3ea98e !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #3ea98e;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #191919 !important;
}
.btn-success-outline:hover::before {
  background-color: #f7ed4a !important;
}
.btn-info-outline:hover::before {
  background-color: #111120 !important;
}
.btn-primary-outline:hover::before {
  background-color: #3ea98e !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #3ea98e !important;
}
.btn-danger-outline:hover::before {
  background-color: #3ea98e !important;
}
.cid-tyijFWr71f .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .nav-item:focus,
.cid-tyijFWr71f .nav-link:focus {
  outline: none;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyijFWr71f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyijFWr71f .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tyijFWr71f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #111120;
  background: none;
}
.cid-tyijFWr71f .navbar.opened {
  transition: all 0.3s;
  background: #111120 !important;
}
.cid-tyijFWr71f .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tyijFWr71f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyijFWr71f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyijFWr71f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyijFWr71f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyijFWr71f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyijFWr71f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyijFWr71f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyijFWr71f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tyijFWr71f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyijFWr71f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tyijFWr71f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyijFWr71f .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-short {
  background: #111120 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyijFWr71f .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tyijFWr71f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyijFWr71f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyijFWr71f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyijFWr71f .dropdown-item.active,
.cid-tyijFWr71f .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111120;
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyijFWr71f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyijFWr71f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyijFWr71f .navbar-buttons {
  text-align: center;
}
.cid-tyijFWr71f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tyijFWr71f a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tyijFWr71f .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tyijFWr71f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyijFWr71f .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyijFWr71f .navbar {
    height: 77px;
  }
  .cid-tyijFWr71f .navbar.opened {
    height: auto;
  }
  .cid-tyijFWr71f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyijFWr71f a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tyijFWr71f a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #3ea98e;
}
.cid-tyijFWr71f .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tyijFWr71f .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tyikKXTY58 {
  background-image: url("../../../assets/images/goakira-2000x1126.webp");
}
.cid-tyikKXTY58 .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tyikKXTY58 .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-tyikKXTY58 .align-center {
    text-align: center;
  }
}
.cid-tyiEhAzXMd {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tyiEhAzXMd h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tyiEhAzXMd .container {
    position: relative;
  }
  .cid-tyiEhAzXMd .row {
    margin: 0;
  }
  .cid-tyiEhAzXMd h2 {
    margin: 0;
  }
}
.cid-tyiEhAzXMd .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tyiEhAzXMd .mbr-section-subtitle {
  color: #3ea98e;
}
.cid-tyiEhAzXMd .line-title {
  width: 40px;
  height: 2px;
  background-color: #3ea98e;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tyiEhAzXMd .vertical-line:before {
  content: '';
  background-color: #3ea98e;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tyiEhAzXMd .container-column,
.cid-tyiEhAzXMd h2 {
  color: #ffffff;
}
.cid-tyiEhAzXMd .mbr-text {
  color: #f3f3f3;
}
.cid-u9JPC54Yht {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-u9JPC54Yht h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u9JPC54Yht .container {
    position: relative;
  }
  .cid-u9JPC54Yht .row {
    margin: 0;
  }
  .cid-u9JPC54Yht h2 {
    margin: 0;
  }
}
.cid-u9JPC54Yht .mbr-section-subtitle {
  color: #e9204f;
}
.cid-u9JPC54Yht .mbr-text {
  margin-top: 1.4rem;
  color: #ffffff;
}
.cid-u9JPC54Yht .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9JPC54Yht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9JPC54Yht h2 {
  color: #ffffff;
}
.cid-tykPeR1x41 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111120;
}
.cid-tykPeR1x41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tykPeR1x41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tykPeR1x41 .row {
    padding: 0 13px;
  }
}
.cid-tykPeR1x41 .row {
  justify-content: center;
}
.cid-tykPeR1x41 .item {
  position: relative;
  margin-bottom: 25px;
  padding: 0 25px;
}
.cid-tykPeR1x41 .item .item-link {
  width: 100%;
  height: 100%;
}
.cid-tykPeR1x41 .item .item-link .item-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  overflow: hidden;
}
.cid-tykPeR1x41 .item .item-link .item-wrapper:hover img {
  transform: scale(1.03);
}
.cid-tykPeR1x41 .item .item-link .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.cid-tykPeR1x41 .item .item-link .item-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: .5;
  transition: all 0.3s ease-out;
  z-index: 1;
  pointer-events: none;
}
.cid-tykPeR1x41 .item .item-link .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-tykPeR1x41 .item .item-link .item-wrapper .item-content .card-title {
  margin-bottom: 0;
  position: relative;
}
.cid-tykPeR1x41 .card-title {
  color: #ffffff;
}
.cid-u9K0fc84vX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #111120;
}
.cid-u9K0fc84vX .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-u9K0fc84vX .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u9K0fc84vX .container {
    padding: 0 20px;
  }
}
.cid-u9K0fc84vX .row {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-u9K0fc84vX .row {
    padding: 46px 0;
  }
}
.cid-u9K0fc84vX .content-wrapper {
  padding: 0 86px;
}
@media (max-width: 768px) {
  .cid-u9K0fc84vX .content-wrapper {
    padding: 0;
  }
}
.cid-u9K0fc84vX .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u9K0fc84vX .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u9K0fc84vX .content-wrapper .mbr-section-btn-main {
  margin-top: 25px;
}
.cid-u9K0fc84vX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 356px;
  max-width: 356px;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .cid-u9K0fc84vX .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 5px;
  }
}
.cid-u9K0fc84vX .embla__slide .slide-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 40px 40px;
  border-radius: 20px !important;
  background-color: #f3f3f3;
}
@media (max-width: 992px) {
  .cid-u9K0fc84vX .embla__slide .slide-content {
    padding: 60px 20px 40px;
  }
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-img img {
  width: 134px;
  height: 134px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-content {
  z-index: 1;
  position: relative;
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 25px;
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-content .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-content .tags-wrapper .list .item-wrap {
  margin-right: 10px;
  margin-bottom: 0;
}
.cid-u9K0fc84vX .embla__slide .slide-content .item-wrapper .item-content .tags-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn {
  z-index: 1;
  position: relative;
  margin-top: 20px;
}
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-primary,
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-secondary,
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-success,
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-info,
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-warning,
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-danger,
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-black,
.cid-u9K0fc84vX .embla__slide .slide-content .mbr-section-btn .btn-white {
  border: 2px solid #dcdde0 !important;
}
.cid-u9K0fc84vX .embla__button--next,
.cid-u9K0fc84vX .embla__button--prev {
  display: flex;
}
.cid-u9K0fc84vX .embla__button {
  top: -24px;
  width: 48px;
  height: 48px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent !important;
  color: #3ea98e !important;
  border: 2px solid #3ea98e !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .6 !important;
}
@media (max-width: 768px) {
  .cid-u9K0fc84vX .embla__button {
    top: 2.5rem;
  }
}
.cid-u9K0fc84vX .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u9K0fc84vX .embla__button:hover {
  opacity: 1 !important;
}
.cid-u9K0fc84vX .embla__button.embla__button--prev {
  left: 30px;
}
.cid-u9K0fc84vX .embla__button.embla__button--next {
  right: 30px;
}
.cid-u9K0fc84vX .embla {
  position: relative;
  width: 100%;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .cid-u9K0fc84vX .embla {
    padding-top: 100px;
  }
}
.cid-u9K0fc84vX .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u9K0fc84vX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u9K0fc84vX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u9K0fc84vX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u9K0fc84vX .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-u9K0fc84vX .mbr-section-title {
  color: #000000;
}
.cid-u9K0fc84vX .item-name {
  color: #000000;
  text-align: center;
}
.cid-u9K0fc84vX .item-role {
  color: #000000;
  text-align: center;
}
.cid-u9K0fc84vX .list,
.cid-u9K0fc84vX .tags-wrapper {
  color: #000000;
  text-align: center;
}
.cid-u9K0fc84vX .mbr-section-title,
.cid-u9K0fc84vX .mbr-section-btn-main {
  text-align: center;
  color: #ffffff;
}
.cid-u9K0fc84vX .item-name,
.cid-u9K0fc84vX .mbr-section-btn {
  text-align: center;
}
.cid-u9KP11zLgw {
  padding-top: 0rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #111120;
}
.cid-u9KP11zLgw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9KP11zLgw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9KP11zLgw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-u9KP11zLgw .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-u9KP11zLgw .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-u9KP11zLgw .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-u9KP11zLgw .container {
    padding: 0 12px;
  }
}
.cid-u9KP11zLgw .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u9KP11zLgw .content-wrapper {
    padding: 0 24px;
  }
}
.cid-u9KP11zLgw .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-u9KP11zLgw .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u9KP11zLgw .mbr-section-title {
  color: #1D1D1F;
}
.cid-u9KP11zLgw .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-u9KP11zLgw .mbr-section-title,
.cid-u9KP11zLgw .mbr-section-btn {
  text-align: center;
}
.cid-tyjnqddwDU {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #111120;
}
.cid-tyjnqddwDU .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tyjnqddwDU .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #ffffff;
}
.cid-tyjnqddwDU .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-tyjnqddwDU .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tyjnqddwDU ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-tyjnqddwDU li::marker {
  color: #3ea98e;
  width: 10px;
}
.cid-tyjnqddwDU li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-tyjnqddwDU img {
  width: 90%;
}
.cid-tyjnqddwDU .gray {
  background-color: #eff0f6;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-tyjnqddwDU .b {
  max-width: 598px;
}
.cid-tyjnqddwDU .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-tyjnqddwDU .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-tyjnqddwDU .t {
    padding-top: 90px;
  }
  .cid-tyjnqddwDU .b {
    max-width: initial;
  }
  .cid-tyjnqddwDU .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-tyjnqddwDU .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-tyjnqddwDU .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-tyjnqddwDU .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-tyjnqddwDU .btn {
  margin-top: 20px;
}
.cid-tyjnqddwDU .t {
  max-width: 542px;
}
.cid-tyjnqddwDU .mbr-text,
.cid-tyjnqddwDU .button-align,
.cid-tyjnqddwDU .list {
  color: #ffffff;
}
.cid-tyjnrKF9vq {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #111120;
}
.cid-tyjnrKF9vq .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tyjnrKF9vq .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #ffffff;
}
.cid-tyjnrKF9vq .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-tyjnrKF9vq .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tyjnrKF9vq ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-tyjnrKF9vq li::marker {
  color: #3ea98e;
  width: 10px;
}
.cid-tyjnrKF9vq li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-tyjnrKF9vq img {
  width: 90%;
}
.cid-tyjnrKF9vq .gray {
  background-color: #eff0f6;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-tyjnrKF9vq .b {
  max-width: 598px;
}
.cid-tyjnrKF9vq .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-tyjnrKF9vq .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-tyjnrKF9vq .t {
    padding-top: 90px;
  }
  .cid-tyjnrKF9vq .b {
    max-width: initial;
  }
  .cid-tyjnrKF9vq .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-tyjnrKF9vq .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-tyjnrKF9vq .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-tyjnrKF9vq .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-tyjnrKF9vq .btn {
  margin-top: 20px;
}
.cid-tyjnrKF9vq .row {
  flex-direction: row-reverse;
}
.cid-tyjnrKF9vq .t {
  max-width: 542px;
}
.cid-tyjnrKF9vq .mbr-text,
.cid-tyjnrKF9vq .button-align,
.cid-tyjnrKF9vq .list {
  color: #ffffff;
}
.cid-tykLRtxE0R {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykLRtxE0R h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tykLRtxE0R .container {
    position: relative;
  }
  .cid-tykLRtxE0R .row {
    margin: 0;
  }
  .cid-tykLRtxE0R h2 {
    margin: 0;
  }
}
.cid-tykLRtxE0R .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tykLRtxE0R .mbr-text {
  margin-top: 1.4rem;
}
.cid-tykLRtxE0R h2 {
  color: #ffffff;
}
.cid-tykL7zQjR5 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykL7zQjR5 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tykL7zQjR5 .container {
    position: relative;
  }
  .cid-tykL7zQjR5 .row {
    margin: 0;
  }
  .cid-tykL7zQjR5 h2 {
    margin: 0;
  }
}
.cid-tykL7zQjR5 .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tykL7zQjR5 .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-tykL7zQjR5 .line-title {
  width: 40px;
  height: 2px;
  background-color: #3ea98e;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tykL7zQjR5 .vertical-line:before {
  content: '';
  background-color: #3ea98e;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tykL7zQjR5 .container-column,
.cid-tykL7zQjR5 h2 {
  color: #ffffff;
}
.cid-tykL7zQjR5 .mbr-text {
  color: #ffffff;
}
.cid-tykLTBK7kJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykLTBK7kJ h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tykLTBK7kJ .container {
    position: relative;
  }
  .cid-tykLTBK7kJ .row {
    margin: 0;
  }
  .cid-tykLTBK7kJ h2 {
    margin: 0;
  }
}
.cid-tykLTBK7kJ .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tykLTBK7kJ .mbr-text {
  margin-top: 1.4rem;
  color: #ffffff;
}
.cid-tykLNDxCR7 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykLNDxCR7 .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-tykLNDxCR7 .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tykLNDxCR7 .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tykLNDxCR7 .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tykLNDxCR7 .row {
    margin: 0;
  }
}
.cid-tykLNDxCR7 .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-tykLsRIH8x {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykLsRIH8x h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tykLsRIH8x .container {
    position: relative;
  }
  .cid-tykLsRIH8x .row {
    margin: 0;
  }
  .cid-tykLsRIH8x h2 {
    margin: 0;
  }
}
.cid-tykLsRIH8x .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tykLsRIH8x .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-tykLsRIH8x .line-title {
  width: 40px;
  height: 2px;
  background-color: #3ea98e;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tykLsRIH8x .vertical-line:before {
  content: '';
  background-color: #3ea98e;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tykLsRIH8x .container-column,
.cid-tykLsRIH8x h2 {
  color: #ffffff;
}
.cid-tykLsRIH8x .mbr-text {
  color: #ffffff;
}
.cid-tykN1htXN0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykN1htXN0 h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tykN1htXN0 .container {
    position: relative;
  }
  .cid-tykN1htXN0 .row {
    margin: 0;
  }
  .cid-tykN1htXN0 h2 {
    margin: 0;
  }
}
.cid-tykN1htXN0 .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tykN1htXN0 .mbr-text {
  margin-top: 1.4rem;
  color: #ffffff;
}
.cid-tykMZabCkR {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykMZabCkR .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-tykMZabCkR .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tykMZabCkR .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tykMZabCkR .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tykMZabCkR .row {
    margin: 0;
  }
}
.cid-tykMZabCkR .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-tykQzrAXEF {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #111120;
}
@media (max-width: 767px) {
  .cid-tykQzrAXEF h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tykQzrAXEF .container {
    position: relative;
  }
  .cid-tykQzrAXEF .row {
    margin: 0;
  }
  .cid-tykQzrAXEF h2 {
    margin: 0;
  }
}
.cid-tykQzrAXEF .btn {
  margin: 0;
  position: relative;
  padding: 0.7rem 2.4rem;
}
.cid-tykQzrAXEF .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tykQzrAXEF .line-title {
  width: 40px;
  height: 2px;
  background-color: #3ea98e;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tykQzrAXEF .vertical-line:before {
  content: '';
  background-color: #3ea98e;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tykQzrAXEF .container-column,
.cid-tykQzrAXEF h2 {
  color: #ffffff;
}
.cid-tykQzrAXEF .mbr-text {
  color: #ffffff;
}
.cid-tyjuD3kTkK {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #111120;
}
.cid-tyjuD3kTkK .wrapper {
  display: flex;
  justify-content: center;
}
.cid-tyjuD3kTkK .cards-container {
  display: flex;
  justify-content: flex-end;
  max-width: 1100px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 32px;
}
@media (min-width: 992px) {
  .cid-tyjuD3kTkK .cards-container {
    margin-top: 192px;
  }
}
.cid-tyjuD3kTkK .cards-container_grid {
  display: grid;
  max-width: 932px;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.cid-tyjuD3kTkK .title-text-container {
  display: flex;
  justify-content: center;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 94px;
}
.cid-tyjuD3kTkK .section-title-wrapper {
  max-width: 1100px;
  padding: 0 16px;
}
@media (min-width: 992px) {
  .cid-tyjuD3kTkK .section-title-wrapper {
    padding: 0 60px;
  }
}
.cid-tyjuD3kTkK .section-title {
  max-width: 490px;
}
.cid-tyjuD3kTkK .card__title-container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  min-height: 400px;
  border-radius: 0;
  border: 1px solid #ffffff;
  padding: 40px 40px 72px;
}
.cid-tyjuD3kTkK .card_right {
  top: -192px;
}
.cid-tyjuD3kTkK .card_title {
  width: 100%;
  color: #ffffff;
}
.cid-tyjuD3kTkK .card_text {
  margin-bottom: 0 !important;
  color: #ffffff;
}
.cid-tyjuD3kTkK .card_small-text {
  color: #A2A0A0;
  width: 100%;
}
.cid-tyjuD3kTkK .mbr-section-btn {
  position: absolute;
  right: -30px;
  bottom: -30px;
}
.cid-tyjuD3kTkK .mbr-section-btn .btn {
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  margin: 0;
}
.cid-tyjuD3kTkK .mbr-section-btn .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tyjuD3kTkK .mbr-section-btn .btn .mbr-iconfont {
  width: 42px;
  height: 42px;
  margin: 0;
  transform: rotate(45deg);
}
.cid-tyjuD3kTkK .btn-info-outline {
  border-color: #ffffff;
  background: #141414 !important;
}
.cid-tyjuD3kTkK .btn-info-outline:hover {
  background: #ffffff !important;
}
.cid-tyjuD3kTkK .btn-info-outline:hover span {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tyjuD3kTkK .container-fluid {
    padding: 0 40px;
  }
  .cid-tyjuD3kTkK .cards-container {
    display: flex;
    justify-content: flex-end;
    max-width: 1100px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
  }
  .cid-tyjuD3kTkK .cards-container_grid {
    grid-column-gap: 24px;
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .cid-tyjuD3kTkK .card_right {
    top: 0;
  }
  .cid-tyjuD3kTkK .card_text {
    margin-bottom: 16px !important;
  }
  .cid-tyjuD3kTkK .card__title-container {
    padding: 40px 100px 40px 40px;
    min-height: auto;
  }
  .cid-tyjuD3kTkK .title-text-container {
    margin-bottom: 48px;
  }
  .cid-tyjuD3kTkK .mbr-section-btn {
    right: -16px;
    bottom: -16px;
  }
}
@media (max-width: 575px) {
  .cid-tyjuD3kTkK .container-fluid {
    padding: 0 24px;
  }
  .cid-tyjuD3kTkK .card__title-container {
    padding: 24px 70px 24px 24px;
    min-height: auto;
  }
  .cid-tyjuD3kTkK .mbr-section-btn {
    right: -5px;
    bottom: -10px;
  }
  .cid-tyjuD3kTkK .mbr-section-btn .btn {
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
  }
}
.cid-tyjuD3kTkK .mbr-section-title {
  color: #ffffff;
}
.cid-tyjLlLEADV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  min-height: 845px;
  background-image: url("../../../assets/images/nrf2023-2000x1500.webp");
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tyjLlLEADV {
    min-height: 667px;
  }
}
.cid-tyjLlLEADV .row {
  align-items: stretch;
  width: 100%;
}
.cid-tyjLlLEADV .col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-tyjLlLEADV .col-text {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-tyjLlLEADV .col-text {
    width: 60%;
  }
}
.cid-tyjLlLEADV .text-container {
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-tyjLlLEADV .text-container {
    padding: 0 0 0 16% !important;
  }
}
@media (max-width: 880px) {
  .cid-tyjLlLEADV .text-container {
    padding: 0 !important;
  }
}
@media (min-width: 1441px) {
  .cid-tyjLlLEADV .text-container {
    padding: 10px !important;
  }
}
.cid-tyjLlLEADV .text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
@media (min-width: 1441px) {
  .cid-tyjLlLEADV .text-wrapper {
    padding: 0 55% 0 0;
  }
}
@media (max-width: 1440px) {
  .cid-tyjLlLEADV .text-wrapper {
    padding: 0 30% 0 0;
  }
}
@media (max-width: 1024px) {
  .cid-tyjLlLEADV .text-wrapper {
    padding: 0 25% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-tyjLlLEADV .text-wrapper {
    padding: 0 15% 0 0;
  }
}
@media (max-width: 767px) {
  .cid-tyjLlLEADV .text-wrapper {
    padding: 0;
  }
}
.cid-tyjLlLEADV .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tyjLlLEADV .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
}
.cid-tyjLlLEADV .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-tyjLlLEADV .mbr-section-btn .btn-transform {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tyjLlLEADV .mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tyjLlLEADV .mbr-section-btn .btn-white-outline:hover {
  color: #fff !important;
  background: #ffffff !important;
}
.cid-tyjLlLEADV .mbr-section-btn .btn-white-outline:hover .btn-transform {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tyjLlLEADV .col-img {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-tyjLlLEADV .col-img {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-tyjLlLEADV .col-img {
    width: 40%;
  }
}
.cid-tykHssnJvE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #111120;
}
.cid-tykHssnJvE .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tykHssnJvE .align-center {
    text-align: center;
  }
  .cid-tykHssnJvE .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tykHssnJvE .block-btn {
  display: flex;
}
.cid-tykHssnJvE .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tykHssnJvE h1 {
  margin-bottom: 0;
}
.cid-tykHssnJvE .wrapper {
  background-color: #3ea98e;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tykHssnJvE .container {
    padding: 0 3rem;
  }
  .cid-tykHssnJvE .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tykHssnJvE .block-btn {
    justify-content: center;
  }
  .cid-tykHssnJvE .text-block {
    text-align: center;
  }
  .cid-tykHssnJvE .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tykHssnJvE .block-btn {
    justify-content: flex-end;
  }
  .cid-tykHssnJvE .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tykHssnJvE .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tykHssnJvE .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tyjMmutlsk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111120;
  overflow: hidden;
}
.cid-tyjMmutlsk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tyjMmutlsk li {
  padding-bottom: 0.6rem;
}
.cid-tyjMmutlsk .container {
  background-color: #111120;
  padding: 6rem 5rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .container {
    padding: 4rem 2rem;
  }
}
.cid-tyjMmutlsk .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tyjMmutlsk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #f3f3f3;
}
.cid-tyjMmutlsk .soc-item:hover {
  background: #3ea98e;
}
.cid-tyjMmutlsk .soc-item .mbr-iconfont {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-tyjMmutlsk .row {
    text-align: center;
  }
  .cid-tyjMmutlsk .social-row {
    justify-content: center;
  }
}
.cid-tyjMmutlsk .list {
  list-style: none;
  padding-left: 0;
}
.cid-tyjMmutlsk .mbr-text {
  color: #efefef;
}
.cid-tyjMmutlsk H5 {
  color: #ffffff;
}
.cid-typ3voF6lR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0c0c19;
  overflow: hidden;
}
.cid-tyijFWr71f .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .nav-item:focus,
.cid-tyijFWr71f .nav-link:focus {
  outline: none;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyijFWr71f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyijFWr71f .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tyijFWr71f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #111120;
  background: none;
}
.cid-tyijFWr71f .navbar.opened {
  transition: all 0.3s;
  background: #111120 !important;
}
.cid-tyijFWr71f .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tyijFWr71f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyijFWr71f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyijFWr71f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyijFWr71f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyijFWr71f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyijFWr71f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyijFWr71f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyijFWr71f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tyijFWr71f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyijFWr71f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tyijFWr71f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyijFWr71f .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-short {
  background: #111120 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyijFWr71f .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tyijFWr71f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyijFWr71f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyijFWr71f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyijFWr71f .dropdown-item.active,
.cid-tyijFWr71f .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111120;
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyijFWr71f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyijFWr71f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyijFWr71f .navbar-buttons {
  text-align: center;
}
.cid-tyijFWr71f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tyijFWr71f a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tyijFWr71f .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tyijFWr71f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyijFWr71f .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyijFWr71f .navbar {
    height: 77px;
  }
  .cid-tyijFWr71f .navbar.opened {
    height: auto;
  }
  .cid-tyijFWr71f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyijFWr71f a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tyijFWr71f a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #3ea98e;
}
.cid-tyijFWr71f .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tyijFWr71f .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tyl9TnZIB7 {
  padding-top: 225px;
  padding-bottom: 15px;
  background-color: #111120;
}
.cid-tyl9TnZIB7 .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tyl9TnZIB7 .align-center {
    text-align: center;
  }
}
.cid-tyl15lysdV {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl15lysdV .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl15lysdV .row {
    padding-bottom: 40px;
  }
}
.cid-tyl15lysdV .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl15lysdV .mbr-section-head {
    padding-left: 20px;
    margin-top: 0;
  }
}
.cid-tyl15lysdV .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl15lysdV .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl15lysdV .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl15lysdV .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl15lysdV .text-container {
    text-align: center!important;
  }
}
.cid-tyl15lysdV .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl15lysdV .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl15lysdV .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl15lysdV .user-prof {
  color: #ffffff;
}
.cid-tyl15lysdV .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl15lysdV .user-name-text {
  color: #000000;
}
.cid-tyl15lysdV .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl15lysdV .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl15lysdV .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl15lysdV .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl15lysdV .mbr-section-btn .btn-white:hover,
.cid-tyl15lysdV .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl15lysdV .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl15lysdV .col-video {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl15lysdV .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl15lysdV .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl15lysdV .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl15lysdV .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl15lysdV .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl15lysdV .mbr-media {
  position: relative;
}
.cid-tyl15lysdV .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl15lysdV .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl15lysdV .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl15lysdV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl15lysdV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl15lysdV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl15lysdV .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl15lysdV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl15lysdV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl15lysdV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl15lysdV .mbr-section-subtitle,
.cid-tyl15lysdV .mbr-section-btn {
  color: #ffffff;
}
.cid-tyl2gRDXKF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl2gRDXKF .row {
  flex-direction: row-reverse;
}
.cid-tyl2gRDXKF .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl2gRDXKF .row {
    padding-bottom: 40px;
  }
}
.cid-tyl2gRDXKF .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl2gRDXKF .mbr-section-head {
    padding-right: 20px;
    margin-top: 0;
  }
}
.cid-tyl2gRDXKF .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl2gRDXKF .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl2gRDXKF .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl2gRDXKF .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl2gRDXKF .text-container {
    text-align: center!important;
  }
}
.cid-tyl2gRDXKF .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl2gRDXKF .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl2gRDXKF .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl2gRDXKF .user-prof {
  color: #ffffff;
}
.cid-tyl2gRDXKF .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl2gRDXKF .user-name-text {
  color: #000000;
}
.cid-tyl2gRDXKF .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl2gRDXKF .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl2gRDXKF .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl2gRDXKF .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl2gRDXKF .mbr-section-btn .btn-white:hover,
.cid-tyl2gRDXKF .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl2gRDXKF .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl2gRDXKF .col-video {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl2gRDXKF .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl2gRDXKF .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl2gRDXKF .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl2gRDXKF .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl2gRDXKF .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl2gRDXKF .mbr-media {
  position: relative;
}
.cid-tyl2gRDXKF .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl2gRDXKF .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl2gRDXKF .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl2gRDXKF .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl2gRDXKF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl2gRDXKF .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl2gRDXKF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl2gRDXKF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl2gRDXKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl2gRDXKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl2gRDXKF .mbr-section-subtitle,
.cid-tyl2gRDXKF .mbr-section-btn {
  color: #ffffff;
}
.cid-tyl2PHPR6J {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl2PHPR6J .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl2PHPR6J .row {
    padding-bottom: 40px;
  }
}
.cid-tyl2PHPR6J .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl2PHPR6J .mbr-section-head {
    padding-left: 20px;
    margin-top: 0;
  }
}
.cid-tyl2PHPR6J .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl2PHPR6J .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl2PHPR6J .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl2PHPR6J .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl2PHPR6J .text-container {
    text-align: center!important;
  }
}
.cid-tyl2PHPR6J .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl2PHPR6J .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl2PHPR6J .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl2PHPR6J .user-prof {
  color: #ffffff;
}
.cid-tyl2PHPR6J .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl2PHPR6J .user-name-text {
  color: #000000;
}
.cid-tyl2PHPR6J .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl2PHPR6J .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl2PHPR6J .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl2PHPR6J .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl2PHPR6J .mbr-section-btn .btn-white:hover,
.cid-tyl2PHPR6J .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl2PHPR6J .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl2PHPR6J .col-video {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl2PHPR6J .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl2PHPR6J .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl2PHPR6J .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl2PHPR6J .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl2PHPR6J .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl2PHPR6J .mbr-media {
  position: relative;
}
.cid-tyl2PHPR6J .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl2PHPR6J .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl2PHPR6J .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl2PHPR6J .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl2PHPR6J .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl2PHPR6J .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl2PHPR6J .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl2PHPR6J .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl2PHPR6J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl2PHPR6J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl2PHPR6J .mbr-section-subtitle,
.cid-tyl2PHPR6J .mbr-section-btn {
  color: #ffffff;
}
.cid-tyl3jR0y1z {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl3jR0y1z .row {
  flex-direction: row-reverse;
}
.cid-tyl3jR0y1z .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl3jR0y1z .row {
    padding-bottom: 40px;
  }
}
.cid-tyl3jR0y1z .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl3jR0y1z .mbr-section-head {
    padding-right: 20px;
    margin-top: 0;
  }
}
.cid-tyl3jR0y1z .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl3jR0y1z .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl3jR0y1z .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl3jR0y1z .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl3jR0y1z .text-container {
    text-align: center!important;
  }
}
.cid-tyl3jR0y1z .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl3jR0y1z .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl3jR0y1z .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl3jR0y1z .user-prof {
  color: #ffffff;
}
.cid-tyl3jR0y1z .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl3jR0y1z .user-name-text {
  color: #000000;
}
.cid-tyl3jR0y1z .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl3jR0y1z .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl3jR0y1z .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl3jR0y1z .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl3jR0y1z .mbr-section-btn .btn-white:hover,
.cid-tyl3jR0y1z .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl3jR0y1z .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl3jR0y1z .col-video {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl3jR0y1z .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl3jR0y1z .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl3jR0y1z .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl3jR0y1z .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl3jR0y1z .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl3jR0y1z .mbr-media {
  position: relative;
}
.cid-tyl3jR0y1z .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl3jR0y1z .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl3jR0y1z .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl3jR0y1z .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl3jR0y1z .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl3jR0y1z .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl3jR0y1z .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl3jR0y1z .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl3jR0y1z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl3jR0y1z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl3jR0y1z .mbr-section-subtitle,
.cid-tyl3jR0y1z .mbr-section-btn {
  color: #ffffff;
}
.cid-tyl3NHmdfV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl3NHmdfV .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl3NHmdfV .row {
    padding-bottom: 40px;
  }
}
.cid-tyl3NHmdfV .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl3NHmdfV .mbr-section-head {
    padding-left: 20px;
    margin-top: 0;
  }
}
.cid-tyl3NHmdfV .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl3NHmdfV .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl3NHmdfV .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl3NHmdfV .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl3NHmdfV .text-container {
    text-align: center!important;
  }
}
.cid-tyl3NHmdfV .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl3NHmdfV .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl3NHmdfV .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl3NHmdfV .user-prof {
  color: #ffffff;
}
.cid-tyl3NHmdfV .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl3NHmdfV .user-name-text {
  color: #000000;
}
.cid-tyl3NHmdfV .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl3NHmdfV .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl3NHmdfV .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl3NHmdfV .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl3NHmdfV .mbr-section-btn .btn-white:hover,
.cid-tyl3NHmdfV .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl3NHmdfV .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl3NHmdfV .col-video {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl3NHmdfV .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl3NHmdfV .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl3NHmdfV .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl3NHmdfV .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl3NHmdfV .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl3NHmdfV .mbr-media {
  position: relative;
}
.cid-tyl3NHmdfV .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl3NHmdfV .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl3NHmdfV .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl3NHmdfV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl3NHmdfV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl3NHmdfV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl3NHmdfV .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl3NHmdfV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl3NHmdfV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl3NHmdfV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl3NHmdfV .mbr-section-subtitle,
.cid-tyl3NHmdfV .mbr-section-btn {
  color: #ffffff;
}
.cid-tyl50F7ltZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl50F7ltZ .row {
  flex-direction: row-reverse;
}
.cid-tyl50F7ltZ .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl50F7ltZ .row {
    padding-bottom: 40px;
  }
}
.cid-tyl50F7ltZ .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl50F7ltZ .mbr-section-head {
    padding-right: 20px;
    margin-top: 0;
  }
}
.cid-tyl50F7ltZ .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl50F7ltZ .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl50F7ltZ .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl50F7ltZ .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl50F7ltZ .text-container {
    text-align: center!important;
  }
}
.cid-tyl50F7ltZ .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl50F7ltZ .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl50F7ltZ .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl50F7ltZ .user-prof {
  color: #ffffff;
}
.cid-tyl50F7ltZ .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl50F7ltZ .user-name-text {
  color: #000000;
}
.cid-tyl50F7ltZ .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl50F7ltZ .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl50F7ltZ .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl50F7ltZ .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl50F7ltZ .mbr-section-btn .btn-white:hover,
.cid-tyl50F7ltZ .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl50F7ltZ .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl50F7ltZ .col-video {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl50F7ltZ .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl50F7ltZ .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl50F7ltZ .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl50F7ltZ .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl50F7ltZ .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl50F7ltZ .mbr-media {
  position: relative;
}
.cid-tyl50F7ltZ .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl50F7ltZ .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl50F7ltZ .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl50F7ltZ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl50F7ltZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl50F7ltZ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl50F7ltZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl50F7ltZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl50F7ltZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl50F7ltZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl50F7ltZ .mbr-section-subtitle,
.cid-tyl50F7ltZ .mbr-section-btn {
  color: #ffffff;
}
.cid-tyl4F76tzn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl4F76tzn .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl4F76tzn .row {
    padding-bottom: 40px;
  }
}
.cid-tyl4F76tzn .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl4F76tzn .mbr-section-head {
    padding-left: 20px;
    margin-top: 0;
  }
}
.cid-tyl4F76tzn .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl4F76tzn .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl4F76tzn .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl4F76tzn .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl4F76tzn .text-container {
    text-align: center!important;
  }
}
.cid-tyl4F76tzn .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl4F76tzn .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl4F76tzn .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl4F76tzn .user-prof {
  color: #ffffff;
}
.cid-tyl4F76tzn .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl4F76tzn .user-name-text {
  color: #000000;
}
.cid-tyl4F76tzn .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl4F76tzn .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl4F76tzn .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl4F76tzn .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl4F76tzn .mbr-section-btn .btn-white:hover,
.cid-tyl4F76tzn .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl4F76tzn .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl4F76tzn .col-video {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl4F76tzn .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl4F76tzn .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl4F76tzn .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl4F76tzn .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl4F76tzn .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl4F76tzn .mbr-media {
  position: relative;
}
.cid-tyl4F76tzn .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl4F76tzn .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl4F76tzn .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl4F76tzn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl4F76tzn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl4F76tzn .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl4F76tzn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl4F76tzn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl4F76tzn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl4F76tzn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl4F76tzn .mbr-section-subtitle,
.cid-tyl4F76tzn .mbr-section-btn {
  color: #ffffff;
}
.cid-tyl5r8dAut {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-tyl5r8dAut .row {
  flex-direction: row-reverse;
}
.cid-tyl5r8dAut .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-tyl5r8dAut .row {
    padding-bottom: 40px;
  }
}
.cid-tyl5r8dAut .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-tyl5r8dAut .mbr-section-head {
    padding-right: 20px;
    margin-top: 0;
  }
}
.cid-tyl5r8dAut .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-tyl5r8dAut .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-tyl5r8dAut .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tyl5r8dAut .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-tyl5r8dAut .text-container {
    text-align: center!important;
  }
}
.cid-tyl5r8dAut .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-tyl5r8dAut .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-tyl5r8dAut .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tyl5r8dAut .user-prof {
  color: #ffffff;
  text-align: left;
}
.cid-tyl5r8dAut .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-tyl5r8dAut .user-name-text {
  color: #000000;
}
.cid-tyl5r8dAut .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-tyl5r8dAut .mbr-section-btn {
  margin-top: 24px;
}
.cid-tyl5r8dAut .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-tyl5r8dAut .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-tyl5r8dAut .mbr-section-btn .btn-white:hover,
.cid-tyl5r8dAut .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-tyl5r8dAut .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-tyl5r8dAut .col-video {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.cid-tyl5r8dAut .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-tyl5r8dAut .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-tyl5r8dAut .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-tyl5r8dAut .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-tyl5r8dAut .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tyl5r8dAut .mbr-media {
  position: relative;
}
.cid-tyl5r8dAut .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tyl5r8dAut .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyl5r8dAut .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tyl5r8dAut .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyl5r8dAut .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyl5r8dAut .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyl5r8dAut .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyl5r8dAut .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyl5r8dAut .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyl5r8dAut .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyl5r8dAut .mbr-section-subtitle,
.cid-tyl5r8dAut .mbr-section-btn {
  color: #ffffff;
}
.cid-u9KTrxYblA {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-u9KTrxYblA .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-u9KTrxYblA .row {
    padding-bottom: 40px;
  }
}
.cid-u9KTrxYblA .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-u9KTrxYblA .mbr-section-head {
    padding-left: 20px;
    margin-top: 0;
  }
}
.cid-u9KTrxYblA .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-u9KTrxYblA .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-u9KTrxYblA .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u9KTrxYblA .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-u9KTrxYblA .text-container {
    text-align: center!important;
  }
}
.cid-u9KTrxYblA .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-u9KTrxYblA .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-u9KTrxYblA .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-u9KTrxYblA .user-prof {
  color: #ffffff;
}
.cid-u9KTrxYblA .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-u9KTrxYblA .user-name-text {
  color: #000000;
}
.cid-u9KTrxYblA .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-u9KTrxYblA .mbr-section-btn {
  margin-top: 24px;
}
.cid-u9KTrxYblA .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-u9KTrxYblA .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-u9KTrxYblA .mbr-section-btn .btn-white:hover,
.cid-u9KTrxYblA .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-u9KTrxYblA .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-u9KTrxYblA .col-video {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.cid-u9KTrxYblA .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9KTrxYblA .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-u9KTrxYblA .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-u9KTrxYblA .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-u9KTrxYblA .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-u9KTrxYblA .mbr-media {
  position: relative;
}
.cid-u9KTrxYblA .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u9KTrxYblA .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u9KTrxYblA .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u9KTrxYblA .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9KTrxYblA .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9KTrxYblA .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9KTrxYblA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u9KTrxYblA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9KTrxYblA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9KTrxYblA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9KTrxYblA .mbr-section-subtitle,
.cid-u9KTrxYblA .mbr-section-btn {
  color: #ffffff;
}
.cid-u9KVJkk5mR {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-u9KVJkk5mR .row {
  flex-direction: row-reverse;
}
.cid-u9KVJkk5mR .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-u9KVJkk5mR .row {
    padding-bottom: 40px;
  }
}
.cid-u9KVJkk5mR .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-u9KVJkk5mR .mbr-section-head {
    padding-right: 20px;
    margin-top: 0;
  }
}
.cid-u9KVJkk5mR .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-u9KVJkk5mR .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-u9KVJkk5mR .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u9KVJkk5mR .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-u9KVJkk5mR .text-container {
    text-align: center!important;
  }
}
.cid-u9KVJkk5mR .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-u9KVJkk5mR .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-u9KVJkk5mR .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-u9KVJkk5mR .user-prof {
  color: #ffffff;
}
.cid-u9KVJkk5mR .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-u9KVJkk5mR .user-name-text {
  color: #000000;
}
.cid-u9KVJkk5mR .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-u9KVJkk5mR .mbr-section-btn {
  margin-top: 24px;
}
.cid-u9KVJkk5mR .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-u9KVJkk5mR .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-u9KVJkk5mR .mbr-section-btn .btn-white:hover,
.cid-u9KVJkk5mR .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-u9KVJkk5mR .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-u9KVJkk5mR .col-video {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.cid-u9KVJkk5mR .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9KVJkk5mR .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-u9KVJkk5mR .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-u9KVJkk5mR .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-u9KVJkk5mR .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-u9KVJkk5mR .mbr-media {
  position: relative;
}
.cid-u9KVJkk5mR .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u9KVJkk5mR .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u9KVJkk5mR .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u9KVJkk5mR .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9KVJkk5mR .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9KVJkk5mR .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9KVJkk5mR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u9KVJkk5mR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9KVJkk5mR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9KVJkk5mR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9KVJkk5mR .mbr-section-subtitle,
.cid-u9KVJkk5mR .mbr-section-btn {
  color: #ffffff;
}
.cid-u9KWHTa6uT {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-u9KWHTa6uT .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-u9KWHTa6uT .row {
    padding-bottom: 40px;
  }
}
.cid-u9KWHTa6uT .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-u9KWHTa6uT .mbr-section-head {
    padding-left: 20px;
    margin-top: 0;
  }
}
.cid-u9KWHTa6uT .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-u9KWHTa6uT .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-u9KWHTa6uT .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u9KWHTa6uT .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-u9KWHTa6uT .text-container {
    text-align: center!important;
  }
}
.cid-u9KWHTa6uT .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-u9KWHTa6uT .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-u9KWHTa6uT .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-u9KWHTa6uT .user-prof {
  color: #ffffff;
}
.cid-u9KWHTa6uT .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-u9KWHTa6uT .user-name-text {
  color: #000000;
}
.cid-u9KWHTa6uT .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-u9KWHTa6uT .mbr-section-btn {
  margin-top: 24px;
}
.cid-u9KWHTa6uT .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-u9KWHTa6uT .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-u9KWHTa6uT .mbr-section-btn .btn-white:hover,
.cid-u9KWHTa6uT .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-u9KWHTa6uT .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-u9KWHTa6uT .col-video {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.cid-u9KWHTa6uT .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9KWHTa6uT .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-u9KWHTa6uT .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-u9KWHTa6uT .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-u9KWHTa6uT .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-u9KWHTa6uT .mbr-media {
  position: relative;
}
.cid-u9KWHTa6uT .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u9KWHTa6uT .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u9KWHTa6uT .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u9KWHTa6uT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9KWHTa6uT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9KWHTa6uT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9KWHTa6uT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u9KWHTa6uT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9KWHTa6uT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9KWHTa6uT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9KWHTa6uT .mbr-section-subtitle,
.cid-u9KWHTa6uT .mbr-section-btn {
  color: #ffffff;
}
.cid-u9KXeHSlm4 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-u9KXeHSlm4 .row {
  flex-direction: row-reverse;
}
.cid-u9KXeHSlm4 .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-u9KXeHSlm4 .row {
    padding-bottom: 40px;
  }
}
.cid-u9KXeHSlm4 .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-u9KXeHSlm4 .mbr-section-head {
    padding-right: 20px;
    margin-top: 0;
  }
}
.cid-u9KXeHSlm4 .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-u9KXeHSlm4 .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-u9KXeHSlm4 .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u9KXeHSlm4 .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-u9KXeHSlm4 .text-container {
    text-align: center!important;
  }
}
.cid-u9KXeHSlm4 .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-u9KXeHSlm4 .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-u9KXeHSlm4 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-u9KXeHSlm4 .user-prof {
  color: #ffffff;
}
.cid-u9KXeHSlm4 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-u9KXeHSlm4 .user-name-text {
  color: #000000;
}
.cid-u9KXeHSlm4 .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-u9KXeHSlm4 .mbr-section-btn {
  margin-top: 24px;
}
.cid-u9KXeHSlm4 .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-u9KXeHSlm4 .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-u9KXeHSlm4 .mbr-section-btn .btn-white:hover,
.cid-u9KXeHSlm4 .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-u9KXeHSlm4 .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-u9KXeHSlm4 .col-video {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.cid-u9KXeHSlm4 .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9KXeHSlm4 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-u9KXeHSlm4 .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-u9KXeHSlm4 .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-u9KXeHSlm4 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-u9KXeHSlm4 .mbr-media {
  position: relative;
}
.cid-u9KXeHSlm4 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u9KXeHSlm4 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u9KXeHSlm4 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u9KXeHSlm4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9KXeHSlm4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9KXeHSlm4 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9KXeHSlm4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u9KXeHSlm4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9KXeHSlm4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9KXeHSlm4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9KXeHSlm4 .mbr-section-subtitle,
.cid-u9KXeHSlm4 .mbr-section-btn {
  color: #ffffff;
}
.cid-u9KXQNAgwp {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-u9KXQNAgwp .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-u9KXQNAgwp .row {
    padding-bottom: 40px;
  }
}
.cid-u9KXQNAgwp .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-u9KXQNAgwp .mbr-section-head {
    padding-left: 20px;
    margin-top: 0;
  }
}
.cid-u9KXQNAgwp .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-u9KXQNAgwp .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-u9KXQNAgwp .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u9KXQNAgwp .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-u9KXQNAgwp .text-container {
    text-align: center!important;
  }
}
.cid-u9KXQNAgwp .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-u9KXQNAgwp .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-u9KXQNAgwp .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-u9KXQNAgwp .user-prof {
  color: #ffffff;
}
.cid-u9KXQNAgwp .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-u9KXQNAgwp .user-name-text {
  color: #000000;
}
.cid-u9KXQNAgwp .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-u9KXQNAgwp .mbr-section-btn {
  margin-top: 24px;
}
.cid-u9KXQNAgwp .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-u9KXQNAgwp .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-u9KXQNAgwp .mbr-section-btn .btn-white:hover,
.cid-u9KXQNAgwp .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-u9KXQNAgwp .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-u9KXQNAgwp .col-video {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
.cid-u9KXQNAgwp .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9KXQNAgwp .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-u9KXQNAgwp .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-u9KXQNAgwp .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-u9KXQNAgwp .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-u9KXQNAgwp .mbr-media {
  position: relative;
}
.cid-u9KXQNAgwp .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u9KXQNAgwp .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u9KXQNAgwp .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u9KXQNAgwp .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9KXQNAgwp .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9KXQNAgwp .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9KXQNAgwp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u9KXQNAgwp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9KXQNAgwp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9KXQNAgwp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9KXQNAgwp .mbr-section-subtitle,
.cid-u9KXQNAgwp .mbr-section-btn {
  color: #ffffff;
}
.cid-u9KYxFMnO2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #111120;
}
.cid-u9KYxFMnO2 .row {
  flex-direction: row-reverse;
}
.cid-u9KYxFMnO2 .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-u9KYxFMnO2 .row {
    padding-bottom: 40px;
  }
}
.cid-u9KYxFMnO2 .mbr-section-head {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .cid-u9KYxFMnO2 .mbr-section-head {
    padding-right: 20px;
    margin-top: 0;
  }
}
.cid-u9KYxFMnO2 .text-container {
  padding: 32px;
  text-align: left;
  width: 100%;
  height: 100%;
  background-color: #111120;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-u9KYxFMnO2 .text-container {
    padding: 36px;
  }
}
@media (min-width: 992px) {
  .cid-u9KYxFMnO2 .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u9KYxFMnO2 .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-u9KYxFMnO2 .text-container {
    text-align: center!important;
  }
}
.cid-u9KYxFMnO2 .user-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cid-u9KYxFMnO2 .user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.cid-u9KYxFMnO2 .user-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-u9KYxFMnO2 .user-prof {
  color: #ffffff;
}
.cid-u9KYxFMnO2 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.5;
  margin-bottom: 24px;
}
.cid-u9KYxFMnO2 .user-name-text {
  color: #000000;
}
.cid-u9KYxFMnO2 .user-prof-text {
  color: #000000;
  opacity: 0.5;
}
.cid-u9KYxFMnO2 .mbr-section-btn {
  margin-top: 24px;
}
.cid-u9KYxFMnO2 .mbr-section-btn .btn {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0, rgba(0, 0, 0, 0.08) 0 2px 10px 0;
}
.cid-u9KYxFMnO2 .mbr-section-btn .btn-white {
  border: none !important;
}
.cid-u9KYxFMnO2 .mbr-section-btn .btn-white:hover,
.cid-u9KYxFMnO2 .mbr-section-btn .btn-white:focus {
  color: #808080 !important;
  background: #ffffff !important;
  opacity: 0.75 !important;
  border: none !important;
}
.cid-u9KYxFMnO2 .col-video {
  height: auto;
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-u9KYxFMnO2 .col-video {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.cid-u9KYxFMnO2 .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
}
.cid-u9KYxFMnO2 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-u9KYxFMnO2 .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-u9KYxFMnO2 .col-video .mbr-media img {
    height: 300px;
  }
}
.cid-u9KYxFMnO2 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-u9KYxFMnO2 .mbr-media {
  position: relative;
}
.cid-u9KYxFMnO2 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u9KYxFMnO2 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u9KYxFMnO2 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u9KYxFMnO2 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u9KYxFMnO2 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u9KYxFMnO2 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u9KYxFMnO2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u9KYxFMnO2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u9KYxFMnO2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9KYxFMnO2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9KYxFMnO2 .mbr-section-subtitle,
.cid-u9KYxFMnO2 .mbr-section-btn {
  color: #ffffff;
}
.cid-tylcU2XTAo {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #111120;
}
.cid-tylcU2XTAo .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tylcU2XTAo .align-center {
    text-align: center;
  }
  .cid-tylcU2XTAo .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tylcU2XTAo .block-btn {
  display: flex;
}
.cid-tylcU2XTAo .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tylcU2XTAo h1 {
  margin-bottom: 0;
}
.cid-tylcU2XTAo .wrapper {
  background-color: #3ea98e;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tylcU2XTAo .container {
    padding: 0 3rem;
  }
  .cid-tylcU2XTAo .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tylcU2XTAo .block-btn {
    justify-content: center;
  }
  .cid-tylcU2XTAo .text-block {
    text-align: center;
  }
  .cid-tylcU2XTAo .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tylcU2XTAo .block-btn {
    justify-content: flex-end;
  }
  .cid-tylcU2XTAo .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tylcU2XTAo .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tylcU2XTAo .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tyjMmutlsk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111120;
  overflow: hidden;
}
.cid-tyjMmutlsk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tyjMmutlsk li {
  padding-bottom: 0.6rem;
}
.cid-tyjMmutlsk .container {
  background-color: #111120;
  padding: 6rem 5rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .container {
    padding: 4rem 2rem;
  }
}
.cid-tyjMmutlsk .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tyjMmutlsk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #f3f3f3;
}
.cid-tyjMmutlsk .soc-item:hover {
  background: #3ea98e;
}
.cid-tyjMmutlsk .soc-item .mbr-iconfont {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-tyjMmutlsk .row {
    text-align: center;
  }
  .cid-tyjMmutlsk .social-row {
    justify-content: center;
  }
}
.cid-tyjMmutlsk .list {
  list-style: none;
  padding-left: 0;
}
.cid-tyjMmutlsk .mbr-text {
  color: #efefef;
}
.cid-tyjMmutlsk H5 {
  color: #ffffff;
}
.cid-typ3TPJ7sO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0c0c19;
  overflow: hidden;
}
.cid-tyijFWr71f .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .nav-item:focus,
.cid-tyijFWr71f .nav-link:focus {
  outline: none;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyijFWr71f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyijFWr71f .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tyijFWr71f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #111120;
  background: none;
}
.cid-tyijFWr71f .navbar.opened {
  transition: all 0.3s;
  background: #111120 !important;
}
.cid-tyijFWr71f .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tyijFWr71f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyijFWr71f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyijFWr71f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyijFWr71f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyijFWr71f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyijFWr71f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyijFWr71f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyijFWr71f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tyijFWr71f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyijFWr71f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tyijFWr71f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyijFWr71f .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-short {
  background: #111120 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyijFWr71f .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tyijFWr71f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyijFWr71f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyijFWr71f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyijFWr71f .dropdown-item.active,
.cid-tyijFWr71f .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111120;
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyijFWr71f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyijFWr71f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyijFWr71f .navbar-buttons {
  text-align: center;
}
.cid-tyijFWr71f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tyijFWr71f a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tyijFWr71f .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tyijFWr71f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyijFWr71f .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyijFWr71f .navbar {
    height: 77px;
  }
  .cid-tyijFWr71f .navbar.opened {
    height: auto;
  }
  .cid-tyijFWr71f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyijFWr71f a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tyijFWr71f a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #3ea98e;
}
.cid-tyijFWr71f .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tyijFWr71f .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tylaoE4JCU {
  padding-top: 225px;
  padding-bottom: 135px;
  background-color: #111120;
}
.cid-tylaoE4JCU .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tylaoE4JCU .align-center {
    text-align: center;
  }
}
.cid-tylbiod6FH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111120;
}
.cid-tylbiod6FH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tylbiod6FH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tylbiod6FH .row {
    padding: 0 13px;
  }
}
.cid-tylbiod6FH .row {
  justify-content: center;
}
.cid-tylbiod6FH .item {
  position: relative;
  margin-bottom: 25px;
  padding: 0 25px;
}
.cid-tylbiod6FH .item .item-link {
  width: 100%;
  height: 100%;
}
.cid-tylbiod6FH .item .item-link .item-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  overflow: hidden;
}
.cid-tylbiod6FH .item .item-link .item-wrapper:hover img {
  transform: scale(1.03);
}
.cid-tylbiod6FH .item .item-link .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.cid-tylbiod6FH .item .item-link .item-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: .5;
  transition: all 0.3s ease-out;
  z-index: 1;
  pointer-events: none;
}
.cid-tylbiod6FH .item .item-link .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-tylbiod6FH .item .item-link .item-wrapper .item-content .card-title {
  margin-bottom: 0;
  position: relative;
}
.cid-tylbiod6FH .card-title {
  color: #ffffff;
}
.cid-tyjMmutlsk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111120;
  overflow: hidden;
}
.cid-tyjMmutlsk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tyjMmutlsk li {
  padding-bottom: 0.6rem;
}
.cid-tyjMmutlsk .container {
  background-color: #111120;
  padding: 6rem 5rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .container {
    padding: 4rem 2rem;
  }
}
.cid-tyjMmutlsk .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tyjMmutlsk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #f3f3f3;
}
.cid-tyjMmutlsk .soc-item:hover {
  background: #3ea98e;
}
.cid-tyjMmutlsk .soc-item .mbr-iconfont {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-tyjMmutlsk .row {
    text-align: center;
  }
  .cid-tyjMmutlsk .social-row {
    justify-content: center;
  }
}
.cid-tyjMmutlsk .list {
  list-style: none;
  padding-left: 0;
}
.cid-tyjMmutlsk .mbr-text {
  color: #efefef;
}
.cid-tyjMmutlsk H5 {
  color: #ffffff;
}
.cid-typ3PqO8R1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0c0c19;
  overflow: hidden;
}
.cid-tyijFWr71f .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .nav-item:focus,
.cid-tyijFWr71f .nav-link:focus {
  outline: none;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyijFWr71f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyijFWr71f .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tyijFWr71f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #111120;
  background: none;
}
.cid-tyijFWr71f .navbar.opened {
  transition: all 0.3s;
  background: #111120 !important;
}
.cid-tyijFWr71f .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tyijFWr71f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyijFWr71f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyijFWr71f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyijFWr71f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyijFWr71f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyijFWr71f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyijFWr71f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyijFWr71f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tyijFWr71f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyijFWr71f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tyijFWr71f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyijFWr71f .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-short {
  background: #111120 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyijFWr71f .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tyijFWr71f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyijFWr71f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyijFWr71f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyijFWr71f .dropdown-item.active,
.cid-tyijFWr71f .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111120;
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyijFWr71f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyijFWr71f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyijFWr71f .navbar-buttons {
  text-align: center;
}
.cid-tyijFWr71f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tyijFWr71f a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tyijFWr71f .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tyijFWr71f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyijFWr71f .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyijFWr71f .navbar {
    height: 77px;
  }
  .cid-tyijFWr71f .navbar.opened {
    height: auto;
  }
  .cid-tyijFWr71f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyijFWr71f a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tyijFWr71f a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #3ea98e;
}
.cid-tyijFWr71f .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tyijFWr71f .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tyldSguR7f {
  background-color: #111120;
}
.cid-tyldSguR7f .box {
  background-image: url("../../../assets/images/nrf2023-2000x1500.webp");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tyldSguR7f .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-tyldSguR7f .icon-wrap span {
  padding-left: 8px;
}
.cid-tyldSguR7f .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-tyldSguR7f .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tyldSguR7f .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyldSguR7f .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyldSguR7f .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyldSguR7f a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tyldSguR7f a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tyldSguR7f .box {
    height: 250px;
  }
}
@media (min-width: 767px) {
  .cid-tyldSguR7f .row {
    margin: 0;
  }
}
.cid-tyleHctwfF {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tyleHctwfF {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .cid-tyleHctwfF .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-tyleHctwfF .box {
  background-size: cover;
  background-position: center;
  height: 350px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tyleHctwfF .bg1 {
  background-image: url("../../../assets/images/nrf2023-2000x1500.webp");
}
.cid-tyleHctwfF .bg2 {
  background-image: url("../../../assets/images/new-york-times-square-terabass-1192x795.webp");
}
.cid-tyleHctwfF .icon-wrap {
  background-color: #ffffff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-tyleHctwfF .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-tyleHctwfF .icon-wrap span {
  padding-left: 8px;
}
.cid-tyleHctwfF .mbr-media span {
  font-size: 38px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #3ea98e !important;
}
.cid-tyleHctwfF .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tyleHctwfF .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyleHctwfF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyleHctwfF .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyleHctwfF a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tyleHctwfF a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tyleHctwfF {
    padding-top: 21px;
    padding-bottom: 35px;
  }
  .cid-tyleHctwfF .box {
    height: 250px;
  }
}
.cid-tyleHctwfF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyleHctwfF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyleJQYefP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tyleJQYefP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyleJQYefP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyleJQYefP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyleJQYefP .mbr-gallery-item {
  width: 33.3%;
}
.cid-tyleJQYefP .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cid-tyleJQYefP .mbr-gallery-item {
    width: 100%;
  }
}
.cid-tyleJQYefP .container {
  padding-right: 6px;
  padding-left: 6px;
}
.cid-tyleJQYefP .mbr-gallery-row {
  justify-content: center;
}
.cid-tyleJQYefP .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tyleJQYefP .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tyleJQYefP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tyleJQYefP .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tyleJQYefP .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tyleJQYefP .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tyleJQYefP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyleJQYefP .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tyleJQYefP img {
  transition: all 2s !important;
}
.cid-tyleJQYefP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tyleJQYefP .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tyleJQYefP .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tylegQCthr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #111120;
}
.cid-tylegQCthr .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tylegQCthr .align-center {
    text-align: center;
  }
  .cid-tylegQCthr .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tylegQCthr .block-btn {
  display: flex;
}
.cid-tylegQCthr .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tylegQCthr h1 {
  margin-bottom: 0;
}
.cid-tylegQCthr .wrapper {
  background-color: #3ea98e;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tylegQCthr .container {
    padding: 0 3rem;
  }
  .cid-tylegQCthr .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tylegQCthr .block-btn {
    justify-content: center;
  }
  .cid-tylegQCthr .text-block {
    text-align: center;
  }
  .cid-tylegQCthr .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tylegQCthr .block-btn {
    justify-content: flex-end;
  }
  .cid-tylegQCthr .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tylegQCthr .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tylegQCthr .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tyjMmutlsk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111120;
  overflow: hidden;
}
.cid-tyjMmutlsk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tyjMmutlsk li {
  padding-bottom: 0.6rem;
}
.cid-tyjMmutlsk .container {
  background-color: #111120;
  padding: 6rem 5rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .container {
    padding: 4rem 2rem;
  }
}
.cid-tyjMmutlsk .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tyjMmutlsk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #f3f3f3;
}
.cid-tyjMmutlsk .soc-item:hover {
  background: #3ea98e;
}
.cid-tyjMmutlsk .soc-item .mbr-iconfont {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-tyjMmutlsk .row {
    text-align: center;
  }
  .cid-tyjMmutlsk .social-row {
    justify-content: center;
  }
}
.cid-tyjMmutlsk .list {
  list-style: none;
  padding-left: 0;
}
.cid-tyjMmutlsk .mbr-text {
  color: #efefef;
}
.cid-tyjMmutlsk H5 {
  color: #ffffff;
}
.cid-typ3LwO3X9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0c0c19;
  overflow: hidden;
}
.cid-tyijFWr71f .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .nav-item:focus,
.cid-tyijFWr71f .nav-link:focus {
  outline: none;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyijFWr71f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyijFWr71f .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tyijFWr71f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #111120;
  background: none;
}
.cid-tyijFWr71f .navbar.opened {
  transition: all 0.3s;
  background: #111120 !important;
}
.cid-tyijFWr71f .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tyijFWr71f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyijFWr71f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyijFWr71f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyijFWr71f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyijFWr71f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyijFWr71f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyijFWr71f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyijFWr71f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tyijFWr71f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyijFWr71f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tyijFWr71f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyijFWr71f .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-short {
  background: #111120 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyijFWr71f .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tyijFWr71f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyijFWr71f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyijFWr71f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyijFWr71f .dropdown-item.active,
.cid-tyijFWr71f .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111120;
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyijFWr71f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyijFWr71f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyijFWr71f .navbar-buttons {
  text-align: center;
}
.cid-tyijFWr71f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tyijFWr71f a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tyijFWr71f .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tyijFWr71f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyijFWr71f .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyijFWr71f .navbar {
    height: 77px;
  }
  .cid-tyijFWr71f .navbar.opened {
    height: auto;
  }
  .cid-tyijFWr71f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyijFWr71f a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tyijFWr71f a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #3ea98e;
}
.cid-tyijFWr71f .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tyijFWr71f .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-tyosZrzVuu {
  padding-top: 225px;
  padding-bottom: 15px;
  background-color: #111120;
}
.cid-tyosZrzVuu .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tyosZrzVuu .align-center {
    text-align: center;
  }
}
.cid-tyov9KQbFe {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #111120;
}
@media (max-width: 992px) {
  .cid-tyov9KQbFe {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .cid-tyov9KQbFe .box {
    margin-top: 2.5rem;
  }
}
.cid-tyov9KQbFe .box {
  background-image: url("../../../assets/images/sobreomnibiz-1280x800.webp");
  background-size: cover;
  background-position: center;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 3px 20px 0px rgba(25, 0, 7, 0.25);
}
.cid-tyov9KQbFe .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cid-tyov9KQbFe .icon-wrap span {
  padding-left: 8px;
}
.cid-tyov9KQbFe .mbr-media span {
  font-size: 28px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-tyov9KQbFe .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tyov9KQbFe .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyov9KQbFe .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyov9KQbFe .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyov9KQbFe a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tyov9KQbFe a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tyov9KQbFe {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-tyov9KQbFe .box {
    height: 250px;
  }
}
.cid-tyov9KQbFe .mbr-text {
  color: #747474;
  margin-bottom: 2rem;
}
.cid-tyov9KQbFe .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-tyov9KQbFe .left-block {
  padding-right: 4rem;
}
@media (min-width: 767px) {
  .cid-tyov9KQbFe .row {
    padding: 0 1rem;
  }
}
.cid-tyov9KQbFe .btn {
  margin-left: 0rem;
}
.cid-tyov9KQbFe H1 {
  color: #ffffff;
}
.cid-tyov9KQbFe .mbr-text,
.cid-tyov9KQbFe .mbr-section-btn {
  color: #f3f3f3;
}
.cid-tyovyCGti0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #111120;
}
.cid-tyovyCGti0 .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tyovyCGti0 .align-center {
    text-align: center;
  }
  .cid-tyovyCGti0 .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tyovyCGti0 .block-btn {
  display: flex;
}
.cid-tyovyCGti0 .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tyovyCGti0 h1 {
  margin-bottom: 0;
}
.cid-tyovyCGti0 .wrapper {
  background-color: #3ea98e;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tyovyCGti0 .container {
    padding: 0 3rem;
  }
  .cid-tyovyCGti0 .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tyovyCGti0 .block-btn {
    justify-content: center;
  }
  .cid-tyovyCGti0 .text-block {
    text-align: center;
  }
  .cid-tyovyCGti0 .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tyovyCGti0 .block-btn {
    justify-content: flex-end;
  }
  .cid-tyovyCGti0 .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tyovyCGti0 .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tyovyCGti0 .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-tyjMmutlsk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111120;
  overflow: hidden;
}
.cid-tyjMmutlsk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tyjMmutlsk li {
  padding-bottom: 0.6rem;
}
.cid-tyjMmutlsk .container {
  background-color: #111120;
  padding: 6rem 5rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .container {
    padding: 4rem 2rem;
  }
}
.cid-tyjMmutlsk .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tyjMmutlsk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #f3f3f3;
}
.cid-tyjMmutlsk .soc-item:hover {
  background: #3ea98e;
}
.cid-tyjMmutlsk .soc-item .mbr-iconfont {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-tyjMmutlsk .row {
    text-align: center;
  }
  .cid-tyjMmutlsk .social-row {
    justify-content: center;
  }
}
.cid-tyjMmutlsk .list {
  list-style: none;
  padding-left: 0;
}
.cid-tyjMmutlsk .mbr-text {
  color: #efefef;
}
.cid-tyjMmutlsk H5 {
  color: #ffffff;
}
.cid-typ3HnFZ1l {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0c0c19;
  overflow: hidden;
}
.cid-tyijFWr71f .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .nav-item:focus,
.cid-tyijFWr71f .nav-link:focus {
  outline: none;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-tyijFWr71f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tyijFWr71f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyijFWr71f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyijFWr71f .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-tyijFWr71f .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #111120;
  background: none;
}
.cid-tyijFWr71f .navbar.opened {
  transition: all 0.3s;
  background: #111120 !important;
}
.cid-tyijFWr71f .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tyijFWr71f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyijFWr71f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyijFWr71f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tyijFWr71f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyijFWr71f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tyijFWr71f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tyijFWr71f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyijFWr71f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tyijFWr71f .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-tyijFWr71f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyijFWr71f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyijFWr71f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tyijFWr71f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tyijFWr71f .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-short {
  background: #111120 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyijFWr71f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyijFWr71f .navbar-short {
  padding: 1rem 0 !important;
}
.cid-tyijFWr71f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyijFWr71f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyijFWr71f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyijFWr71f .dropdown-item.active,
.cid-tyijFWr71f .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-tyijFWr71f .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-tyijFWr71f .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-tyijFWr71f .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111120;
}
.cid-tyijFWr71f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyijFWr71f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyijFWr71f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tyijFWr71f .navbar-buttons {
  text-align: center;
}
.cid-tyijFWr71f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tyijFWr71f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tyijFWr71f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tyijFWr71f .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-tyijFWr71f a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-tyijFWr71f .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-tyijFWr71f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tyijFWr71f .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyijFWr71f .navbar {
    height: 77px;
  }
  .cid-tyijFWr71f .navbar.opened {
    height: auto;
  }
  .cid-tyijFWr71f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyijFWr71f a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-tyijFWr71f a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #3ea98e;
}
.cid-tyijFWr71f .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-tyijFWr71f .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-typ0hd0Q8o {
  padding-top: 225px;
  padding-bottom: 15px;
  background-color: #111120;
}
.cid-typ0hd0Q8o .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-typ0hd0Q8o .align-center {
    text-align: center;
  }
}
.cid-typ0irwg0N {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111120;
}
.cid-typ0irwg0N .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-typ0irwg0N .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-typ0irwg0N .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-typ0irwg0N .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-typ0irwg0N .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-typ0irwg0N .mbr-text {
  color: #ffffff;
}
.cid-tyjMmutlsk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111120;
  overflow: hidden;
}
.cid-tyjMmutlsk .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tyjMmutlsk li {
  padding-bottom: 0.6rem;
}
.cid-tyjMmutlsk .container {
  background-color: #111120;
  padding: 6rem 5rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .container {
    padding: 4rem 2rem;
  }
}
.cid-tyjMmutlsk .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-tyjMmutlsk .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tyjMmutlsk .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #f3f3f3;
}
.cid-tyjMmutlsk .soc-item:hover {
  background: #3ea98e;
}
.cid-tyjMmutlsk .soc-item .mbr-iconfont {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-tyjMmutlsk .row {
    text-align: center;
  }
  .cid-tyjMmutlsk .social-row {
    justify-content: center;
  }
}
.cid-tyjMmutlsk .list {
  list-style: none;
  padding-left: 0;
}
.cid-tyjMmutlsk .mbr-text {
  color: #efefef;
}
.cid-tyjMmutlsk H5 {
  color: #ffffff;
}
.cid-typ3ApDXVg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0c0c19;
  overflow: hidden;
}
.cid-typ1G1TfjD .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-typ1G1TfjD .nav-item:focus,
.cid-typ1G1TfjD .nav-link:focus {
  outline: none;
}
.cid-typ1G1TfjD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-typ1G1TfjD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-typ1G1TfjD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  font-size: inherit;
}
.cid-typ1G1TfjD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-typ1G1TfjD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-typ1G1TfjD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-typ1G1TfjD .collapsed .mbr-iconfont {
  padding-left: 0rem !important;
}
.cid-typ1G1TfjD .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #111120;
  background: none;
}
.cid-typ1G1TfjD .navbar.opened {
  transition: all 0.3s;
  background: #111120 !important;
}
.cid-typ1G1TfjD .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-typ1G1TfjD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ1G1TfjD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-typ1G1TfjD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-typ1G1TfjD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-typ1G1TfjD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ1G1TfjD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ1G1TfjD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ1G1TfjD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ1G1TfjD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ1G1TfjD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-typ1G1TfjD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-typ1G1TfjD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-typ1G1TfjD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ1G1TfjD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ1G1TfjD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ1G1TfjD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ1G1TfjD .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ1G1TfjD .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-typ1G1TfjD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ1G1TfjD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-typ1G1TfjD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-typ1G1TfjD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-typ1G1TfjD .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-typ1G1TfjD .navbar.navbar-short {
  background: #111120 !important;
  min-height: 60px;
  opacity: 0.9;
}
.cid-typ1G1TfjD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ1G1TfjD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ1G1TfjD .navbar-short {
  padding: 1rem 0 !important;
}
.cid-typ1G1TfjD .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ1G1TfjD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ1G1TfjD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ1G1TfjD .dropdown-item.active,
.cid-typ1G1TfjD .dropdown-item:active {
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-typ1G1TfjD .nav-dropdown .link.dropdown-toggle {
    margin: 0rem 1rem !important;
  }
  .cid-typ1G1TfjD .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-typ1G1TfjD .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-typ1G1TfjD .nav-link {
    margin: 0rem 1.25rem;
  }
  .cid-typ1G1TfjD .mbr-iconfont {
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-typ1G1TfjD .nav-dropdown .link.dropdown-toggle {
    margin: 1rem 1rem !important;
  }
  .cid-typ1G1TfjD .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
    margin-right: 0;
    padding: 0.667em 1.25em;
  }
  .cid-typ1G1TfjD .nav-link {
    margin: 1rem 1.25rem !important;
  }
  .cid-typ1G1TfjD .mbr-iconfont {
    padding-left: 1rem;
  }
}
.cid-typ1G1TfjD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #111120;
}
.cid-typ1G1TfjD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ1G1TfjD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ1G1TfjD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ1G1TfjD .navbar-buttons {
  text-align: center;
}
.cid-typ1G1TfjD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ1G1TfjD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ1G1TfjD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-typ1G1TfjD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-typ1G1TfjD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-typ1G1TfjD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-typ1G1TfjD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-typ1G1TfjD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-typ1G1TfjD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-typ1G1TfjD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-typ1G1TfjD .navbar-dropdown {
  padding: 3rem 0rem;
  position: fixed;
}
.cid-typ1G1TfjD a.nav-link {
  font-weight: 800;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.cid-typ1G1TfjD .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-typ1G1TfjD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-typ1G1TfjD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ1G1TfjD .navbar {
    height: 77px;
  }
  .cid-typ1G1TfjD .navbar.opened {
    height: auto;
  }
  .cid-typ1G1TfjD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-typ1G1TfjD a.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 0;
  height: 2px;
  -webkit-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  -o-transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  box-sizing: border-box;
}
.cid-typ1G1TfjD a.nav-link:hover::before {
  height: 2px;
  width: 20px;
  background-color: #3ea98e;
}
.cid-typ1G1TfjD .nav-link {
  padding: 0.5rem 0rem !important;
}
@media (min-width: 767px) {
  .cid-typ1G1TfjD .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cid-typ1G2iFRm {
  padding-top: 225px;
  padding-bottom: 15px;
  background-color: #111120;
}
.cid-typ1G2iFRm .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-typ1G2iFRm .align-center {
    text-align: center;
  }
}
.cid-typ1G2wlKU {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111120;
}
.cid-typ1G2wlKU .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-typ1G2wlKU .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-typ1G2wlKU .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-typ1G2wlKU .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-typ1G2wlKU .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-typ1G2wlKU .mbr-text {
  color: #ffffff;
}
.cid-typ1G2Rw3o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #111120;
  overflow: hidden;
}
.cid-typ1G2Rw3o .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-typ1G2Rw3o li {
  padding-bottom: 0.6rem;
}
.cid-typ1G2Rw3o .container {
  background-color: #111120;
  padding: 6rem 5rem;
}
@media (max-width: 992px) {
  .cid-typ1G2Rw3o .container {
    padding: 4rem 2rem;
  }
}
.cid-typ1G2Rw3o .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-typ1G2Rw3o .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-typ1G2Rw3o .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #f3f3f3;
}
.cid-typ1G2Rw3o .soc-item:hover {
  background: #3ea98e;
}
.cid-typ1G2Rw3o .soc-item .mbr-iconfont {
  color: #f3f3f3;
}
@media (max-width: 767px) {
  .cid-typ1G2Rw3o .row {
    text-align: center;
  }
  .cid-typ1G2Rw3o .social-row {
    justify-content: center;
  }
}
.cid-typ1G2Rw3o .list {
  list-style: none;
  padding-left: 0;
}
.cid-typ1G2Rw3o .mbr-text {
  color: #efefef;
}
.cid-typ1G2Rw3o H5 {
  color: #ffffff;
}
.cid-typ3DKZh1K {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #0c0c19;
  overflow: hidden;
}
