body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #aeaeae !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #aeaeae !important;
  border-color: #aeaeae !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #838383 !important;
  border-color: #838383 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #838383 !important;
  border-color: #838383 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #aeaeae;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #838383 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #aeaeae !important;
  border-color: #aeaeae !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #aeaeae !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #7b7b7b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #aeaeae;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #eeeeee;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-ttfZEBiPZL {
  z-index: 1000;
  width: 100%;
}
.cid-ttfZEBiPZL nav.navbar {
  position: fixed;
}
.cid-ttfZEBiPZL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttfZEBiPZL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttfZEBiPZL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttfZEBiPZL .dropdown-item:hover,
.cid-ttfZEBiPZL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ttfZEBiPZL .dropdown-item:hover span {
  color: white;
}
.cid-ttfZEBiPZL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttfZEBiPZL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttfZEBiPZL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttfZEBiPZL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttfZEBiPZL .nav-link {
  position: relative;
}
.cid-ttfZEBiPZL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttfZEBiPZL .container {
    flex-wrap: nowrap;
  }
}
.cid-ttfZEBiPZL .iconfont-wrapper {
  color: #ff014e !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttfZEBiPZL .navbar-nav .nav-item {
  margin: 10px 14px !important;
}
.cid-ttfZEBiPZL .navbar-nav .nav-item .nav-link {
  margin: 5px 10px !important;
  padding: 0 !important;
  transition: 0.3s all;
  opacity: 0.5;
}
.cid-ttfZEBiPZL .navbar-nav .nav-item .nav-link:hover,
.cid-ttfZEBiPZL .navbar-nav .nav-item .nav-link:focus,
.cid-ttfZEBiPZL .navbar-nav .nav-item .nav-link:active {
  opacity: 1;
  color: #FFFFFF !important;
}
.cid-ttfZEBiPZL .dropdown-menu,
.cid-ttfZEBiPZL .navbar.opened {
  background: #353535 !important;
}
.cid-ttfZEBiPZL .nav-item:focus,
.cid-ttfZEBiPZL .nav-link:focus {
  outline: none;
}
.cid-ttfZEBiPZL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttfZEBiPZL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttfZEBiPZL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttfZEBiPZL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttfZEBiPZL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttfZEBiPZL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttfZEBiPZL .navbar {
  min-height: 122px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(53, 53, 53, 0.9);
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent;
}
.cid-ttfZEBiPZL .navbar:not(.navbar-short) {
  border-bottom: none;
}
.cid-ttfZEBiPZL .navbar.opened {
  transition: all 0.3s;
}
.cid-ttfZEBiPZL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttfZEBiPZL .navbar .navbar-logo img {
  width: auto;
}
.cid-ttfZEBiPZL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttfZEBiPZL .navbar.collapsed {
  justify-content: center;
}
.cid-ttfZEBiPZL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttfZEBiPZL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttfZEBiPZL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-ttfZEBiPZL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttfZEBiPZL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttfZEBiPZL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ttfZEBiPZL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttfZEBiPZL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttfZEBiPZL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttfZEBiPZL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttfZEBiPZL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttfZEBiPZL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttfZEBiPZL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttfZEBiPZL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ttfZEBiPZL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttfZEBiPZL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttfZEBiPZL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttfZEBiPZL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttfZEBiPZL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttfZEBiPZL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttfZEBiPZL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttfZEBiPZL .navbar.navbar-short {
  min-height: 90px;
}
.cid-ttfZEBiPZL .navbar.navbar-short .navbar-logo img {
  height: 4.2rem !important;
}
.cid-ttfZEBiPZL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-ttfZEBiPZL .navbar {
    min-height: 80px;
  }
}
.cid-ttfZEBiPZL .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 15px;
  padding-left: 15px;
}
.cid-ttfZEBiPZL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttfZEBiPZL .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 575px) {
  .cid-ttfZEBiPZL .navbar-brand {
    min-height: 69px;
  }
}
.cid-ttfZEBiPZL .dropdown-item.active,
.cid-ttfZEBiPZL .dropdown-item:active {
  background-color: transparent;
}
.cid-ttfZEBiPZL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttfZEBiPZL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttfZEBiPZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttfZEBiPZL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-ttfZEBiPZL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttfZEBiPZL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttfZEBiPZL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttfZEBiPZL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttfZEBiPZL button.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
  background: linear-gradient(145deg, #4479d9, #23272b);
  outline: none;
  cursor: pointer;
  position: relative;
  align-self: center;
}
.cid-ttfZEBiPZL button.navbar-toggler:hover {
  transform: scale(1.1);
}
.cid-ttfZEBiPZL button.navbar-toggler .hamburger {
  position: relative;
  width: 23px;
  height: 24px;
  transition: all 0.3s;
}
.cid-ttfZEBiPZL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 2px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-ttfZEBiPZL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 6px;
  transition: all 0.2s;
}
.cid-ttfZEBiPZL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 11px;
  transition: all 0.15s;
}
.cid-ttfZEBiPZL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 11px;
  transition: all 0.15s;
}
.cid-ttfZEBiPZL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttfZEBiPZL nav.opened .hamburger span:nth-child(1) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttfZEBiPZL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttfZEBiPZL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttfZEBiPZL nav.opened .hamburger span:nth-child(4) {
  top: 6px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttfZEBiPZL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttfZEBiPZL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttfZEBiPZL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttfZEBiPZL .navbar {
    height: 70px;
  }
  .cid-ttfZEBiPZL .navbar.opened {
    height: auto;
  }
  .cid-ttfZEBiPZL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttfZEBiPZL .navbar-short {
  min-height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #353535;
  background: rgba(53, 53, 53, 0.9);
}
@media (max-width: 575px) {
  .cid-ttfZEBiPZL .navbar-short {
    min-height: 70px;
  }
}
.cid-ttfZEBiPZL .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1599px) {
  .cid-ttfZEBiPZL .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .cid-ttfZEBiPZL .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .cid-ttfZEBiPZL .container-fluid {
    padding: 0 3px;
  }
}
.cid-ttfZEBiPZL .navbar-collapse {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-ttfZEBiPZL .mbr-section-btn .btn {
  padding: 15px 35px;
}
@media (min-width: 992px) {
  .cid-ttfZEBiPZL .container-fluid {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-ttfZEBiPZL .container-fluid {
    flex-wrap: wrap;
  }
  .cid-ttfZEBiPZL button.navbar-toggler {
    display: flex;
  }
  .cid-ttfZEBiPZL .navbar-brand {
    width: auto !important;
  }
  .cid-ttfZEBiPZL .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .cid-ttfZEBiPZL .navbar-collapse .nav-item {
    margin: 8px 0 !important;
  }
  .cid-ttfZEBiPZL .navbar-collapse .nav-item .nav-link {
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s all;
    opacity: 1;
    justify-content: left;
  }
  .cid-ttfZEBiPZL .navbar-collapse .nav-item .nav-link:hover {
    opacity: 1;
    color: #FFFFFF !important;
  }
  .cid-ttfZEBiPZL .icons-menu {
    margin-top: 10px;
    justify-content: left;
  }
  .cid-ttfZEBiPZL .navbar-buttons {
    margin-top: 20px;
    text-align: left;
    margin-left: -0.6rem;
    margin-right: -0.6rem;
  }
}
.cid-ttfWr9s1LJ {
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/conference27-1920.jpg");
}
.cid-ttfWr9s1LJ .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-ttfWr9s1LJ .wrap {
  padding: 0 25px;
}
.cid-ttfWr9s1LJ .wrap:before {
  content: '';
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #4479d9;
  top: 0px;
  right: 0px;
}
.cid-ttfWr9s1LJ .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-ttfWr9s1LJ .mbr-text {
  margin-bottom: 20px;
}
.cid-ttfWr9s1LJ .mbr-section-btn {
  margin-top: 10px;
}
.cid-ttfWr9s1LJ .mbr-media {
  display: inline-block;
}
.cid-ttfWr9s1LJ .mbr-figure {
  align-self: flex-start;
  margin-bottom: 20px;
  width: 100%;
}
.cid-ttfWr9s1LJ .anim {
  width: 62px;
  height: 62px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  position: relative;
  background-color: rgba(0, 0, 0, 0.95);
  border-radius: 50%;
}
.cid-ttfWr9s1LJ .anim span {
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  width: 62px;
  height: 62px;
  line-height: 62px;
  position: relative;
  display: inline-block;
  margin-left: 2px;
}
.cid-ttfWr9s1LJ .anim span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-ttfWr9s1LJ .anim:before {
  content: '';
  border-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-duration: 1.2s;
  animation-name: popup__video;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.cid-ttfWr9s1LJ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: #191f23;
  width: 100%;
  height: 100%;
}
.cid-ttfWr9s1LJ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ttfWr9s1LJ .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-ttfWr9s1LJ a.close {
  position: absolute;
  right: 100px;
  top: 50px;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  padding: 10px;
  transition: all 0.2s;
}
.cid-ttfWr9s1LJ a.close:hover {
  color: #ffffff;
}
@keyframes popup__video {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  .cid-ttfWr9s1LJ .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-ttfWr9s1LJ .container,
  .cid-ttfWr9s1LJ .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ttfWr9s1LJ .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-ttfWr9s1LJ a.close {
    right: 50px;
    top: 25px;
  }
  .cid-ttfWr9s1LJ .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-ttfRFqlcT1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-ttfRFqlcT1 .title__block {
  padding: 50px 15px;
}
.cid-ttfRFqlcT1 .image {
  display: block;
  position: relative;
}
.cid-ttfRFqlcT1 .image img {
  height: 100%;
  object-fit: cover;
}
.cid-ttfRFqlcT1 .widget {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: 87px;
  width: 100%;
  overflow: hidden;
}
.cid-ttfRFqlcT1 .widget .widget__item {
  padding: 40px 10px 10px 40px;
  background-color: rgba(187, 187, 187, 0.98);
}
.cid-ttfRFqlcT1 .widget .widget__item:hover .mbr-iconfont {
  color: #6592e6;
}
.cid-ttfRFqlcT1 .widget .widget__item:nth-child(2) {
  background-color: rgba(68, 121, 217, 0.98);
}
.cid-ttfRFqlcT1 .widget .mbr-iconfont {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  margin-right: 10px;
}
.cid-ttfRFqlcT1 .widget .widget__text {
  margin: 5px 0;
}
.cid-ttfRFqlcT1 .mbr-section-btn {
  margin-top: 20px;
}
.cid-ttfRFqlcT1 .btn {
  margin-top: 0;
}
.cid-ttfRFqlcT1 .popup__text {
  display: inline-block;
  margin-left: 10px;
  color: #4479d9;
}
.cid-ttfRFqlcT1 .mbr-media {
  display: inline-block;
}
.cid-ttfRFqlcT1 .mbr-figure {
  align-self: flex-start;
  margin-bottom: 30px;
  width: 100%;
}
.cid-ttfRFqlcT1 .anim {
  width: 62px;
  height: 62px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  position: relative;
  background-color: rgba(68, 121, 217, 0.95);
  border-radius: 50%;
}
.cid-ttfRFqlcT1 .anim span {
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  width: 62px;
  height: 62px;
  line-height: 62px;
  position: relative;
  display: inline-block;
  margin-left: 2px;
}
.cid-ttfRFqlcT1 .anim span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-ttfRFqlcT1 .anim:before {
  content: '';
  border-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: rgba(68, 121, 217, 0.5);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-duration: 1.2s;
  animation-name: popup__video;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
.cid-ttfRFqlcT1 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: #191f23;
  width: 100%;
  height: 100%;
}
.cid-ttfRFqlcT1 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ttfRFqlcT1 .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-ttfRFqlcT1 a.close {
  position: absolute;
  right: 100px;
  top: 50px;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  padding: 10px;
  transition: all 0.2s;
}
.cid-ttfRFqlcT1 a.close:hover {
  color: #ffffff;
}
@keyframes popup__video {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .cid-ttfRFqlcT1 .push__left {
    margin-left: 8.33333%;
  }
}
@media (max-width: 991px) {
  .cid-ttfRFqlcT1 .image {
    padding: 0;
  }
  .cid-ttfRFqlcT1 .container,
  .cid-ttfRFqlcT1 .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ttfRFqlcT1 .widget {
    margin-left: 0;
  }
  .cid-ttfRFqlcT1 .widget .widget__item {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .cid-ttfRFqlcT1 a.close {
    right: 50px;
    top: 25px;
  }
  .cid-ttfRFqlcT1 .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
  .cid-ttfRFqlcT1 .image img {
    max-height: 400px;
  }
}
.cid-ttfRFqlcT1 .mbr-section-title,
.cid-ttfRFqlcT1 .mbr-figure {
  color: #4479d9;
}
.cid-ttfWfN6S24 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttfWfN6S24 .title__block {
  margin-bottom: 30px;
}
.cid-ttfWfN6S24 .mbr-section-subtitle,
.cid-ttfWfN6S24 .card__subtitle {
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-ttfWfN6S24 .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  opacity: 0.6;
}
.cid-ttfWfN6S24 .card__wrap {
  margin-bottom: 50px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .cid-ttfWfN6S24 .card__wrap {
    margin-bottom: 30px;
    padding: 0 15px;
  }
}
.cid-ttfWfN6S24 .card__title {
  margin-bottom: 20px;
  color: #4479d9;
}
.cid-ttfWfN6S24 .mbr-text {
  margin-bottom: 0;
}
.cid-ttfWfN6S24 .mbr-section-title,
.cid-ttfWfN6S24 .mbr-section-btn {
  color: #4479d9;
}
.cid-ubwWb5dHcC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ubwWb5dHcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubwWb5dHcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubwWb5dHcC .btn {
  padding: 1.5rem 5rem;
  border: 0 !important;
}
@media (max-width: 767px) {
  .cid-ubwWb5dHcC .btn {
    padding: 1.5rem 3rem;
  }
}
.cid-ubwWb5dHcC .row {
  align-items: center;
}
.cid-ubwWb5dHcC img {
  border-radius: 2rem;
}
.cid-ubwWb5dHcC .image-wrapper {
  background: #807777;
  padding: 4rem 5rem;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-ubwWb5dHcC .image-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ubwWb5dHcC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ubwWb5dHcC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ubwWb5dHcC .mbr-section-title {
  color: #4479d9;
}
.cid-ubwWb5dHcC .mbr-text,
.cid-ubwWb5dHcC .mbr-section-btn {
  color: #ffffff;
}
.cid-ttfRGNntrL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ttfRGNntrL .content__block {
  padding: 50px 15px;
}
.cid-ttfRGNntrL .circle:after {
  content: '•';
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-top: -2px;
  color: #6592e6;
  margin-left: 4px;
  margin-right: 4px;
}
.cid-ttfRGNntrL .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-ttfRGNntrL .mbr-text {
  opacity: 0.6;
  margin-bottom: 25px;
}
.cid-ttfRGNntrL .image {
  perspective: 3500px;
  position: relative;
}
.cid-ttfRGNntrL .image:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  right: -1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  z-index: 1;
  pointer-events: none;
}
.cid-ttfRGNntrL .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ttfRGNntrL .mbr-section-btn .btn-white-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-ttfRGNntrL .mbr-section-btn .btn-white-outline:hover {
  color: #6592e6 !important;
}
@media (max-width: 991px) {
  .cid-ttfRGNntrL .content__block {
    padding: 30px 15px;
  }
  .cid-ttfRGNntrL .mbr-figure {
    padding: 0;
  }
  .cid-ttfRGNntrL .image:before {
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.99));
  }
}
@media (min-width: 992px) {
  .cid-ttfRGNntrL .lg-push {
    right: 13%;
  }
  .cid-ttfRGNntrL .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cid-ttfRGNntrL .row:hover .image img {
    transform: rotateY(8deg);
  }
}
.cid-ttfRGNntrL .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-ttfRGNntrL .mbr-section-title {
  color: #4479d9;
}
.cid-ttfRJZwc22 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-ttfRJZwc22 .item__text {
  border-radius: 4px;
  padding: 0 10px;
  background: #4479d9;
  max-height: 30px;
}
.cid-ttfRJZwc22 .content__block {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-ttfRJZwc22 .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}
.cid-ttfRJZwc22 .bot {
  display: flex;
  align-items: center;
  padding-top: 15px;
}
.cid-ttfRJZwc22 .border__radius {
  margin-right: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  max-width: 60px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttfRJZwc22 .bot__content {
  margin: 10px 0;
  width: 100%;
}
.cid-ttfRJZwc22 .bot__descr {
  color: #888888;
}
@media (max-width: 767px) {
  .cid-ttfRJZwc22 .content__block {
    margin-bottom: 50px;
  }
}
.cid-ttfWh1L7nU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ttfWh1L7nU .image img {
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-ttfWh1L7nU .image {
    margin-bottom: 30px;
  }
}
.cid-ttfWh1L7nU .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-ttfWh1L7nU .mbr-text {
  margin-bottom: 20px;
}
.cid-ttfWh1L7nU .mbr-section-btn {
  margin-bottom: 30px;
}
.cid-ttfWh1L7nU .progress {
  width: 100%;
  border-radius: 4px;
}
.cid-ttfWh1L7nU progress {
  height: 8px;
}
.cid-ttfWh1L7nU .progress_value {
  position: absolute;
  color: #ffffff;
  background-color: #17161a;
  padding: 0 8px;
  border-radius: 4px;
  border-bottom-right-radius: 0px;
  height: 24px;
  line-height: 24px;
  right: 0%;
  font-weight: 600;
  width: 45px;
  font-size: 11px;
}
.cid-ttfWh1L7nU .progress_value::before {
  content: '';
  border-top: 6px solid #17161a;
  border-left: 8px solid transparent;
  position: absolute;
  right: 0;
  bottom: -5px;
}
.cid-ttfWh1L7nU .progress_value .progressbar-number,
.cid-ttfWh1L7nU .progress_value span {
  font-weight: 600;
}
.cid-ttfWh1L7nU .progress_value span {
  padding-left: 0;
  vertical-align: bottom;
  right: 8px;
  position: absolute;
  line-height: inherit;
}
.cid-ttfWh1L7nU .progress_elements {
  margin: 0 auto;
}
.cid-ttfWh1L7nU .progressbar-title p {
  margin: 5px 0;
  font-weight: 600;
}
.cid-ttfWh1L7nU .title-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.cid-ttfWh1L7nU .progress1 .progressbar-number:before {
  position: absolute;
  right: 20px;
  top: 0;
  content: '100';
}
.cid-ttfWh1L7nU progress[value]::-webkit-progress-bar {
  background-color: rgba(136, 136, 136, 0.1) !important;
}
.cid-ttfWh1L7nU progress::-webkit-progress-value {
  background: #4479d9;
  border-radius: 4px;
}
.cid-ttfWh1L7nU progress[value]::-moz-progress-bar {
  background: #4479d9;
  border-radius: 4px;
}
.cid-ttfWh1L7nU progress::-ms-fill {
  background: #4479d9;
  border-radius: 4px;
}
.cid-ttfWh1L7nU .progress-primary {
  background-color: rgba(136, 136, 136, 0.1) !important;
  border: none;
  outline: none;
}
.cid-ttfWh1L7nU .progress-primary::-webkit-progress-bar {
  background-color: rgba(136, 136, 136, 0.1) !important;
}
.cid-ttfWh1L7nU .mbr-section-title {
  color: #4479d9;
}
.cid-ttfRLYDTZA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttfRLYDTZA .mbr-section-subtitle {
  margin-top: 30px;
}
.cid-ttfRLYDTZA .title__block {
  padding-bottom: 40px;
}
.cid-ttfRLYDTZA .image {
  width: 100%;
  perspective: 700px;
}
.cid-ttfRLYDTZA .image img {
  transition: transform 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.cid-ttfRLYDTZA .image img:hover {
  transform: rotateX(-10deg);
}
.cid-ttfRLYDTZA .text__block {
  margin-top: 25px;
}
.cid-ttfRLYDTZA .card__text {
  display: block;
  color: #444345;
  line-height: 1.25;
  margin-bottom: 0;
}
.cid-ttfRLYDTZA .content__block {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ttfRLYDTZA .title__block {
    padding-bottom: 30px;
  }
}
.cid-ttfRLYDTZA .mbr-section-title {
  color: #4479d9;
}
.cid-ttfRLYDTZA .card__title {
  color: #4479d9;
}
.cid-ttfRPSSQ2e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttfRPSSQ2e .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-ttfRPSSQ2e .block__left,
.cid-ttfRPSSQ2e .block__right {
  padding: 80px;
  height: 100%;
}
@media (max-width: 575px) {
  .cid-ttfRPSSQ2e .block__left,
  .cid-ttfRPSSQ2e .block__right {
    padding: 30px;
  }
}
.cid-ttfRPSSQ2e .title__block {
  position: relative;
  z-index: 2;
}
.cid-ttfRPSSQ2e .left__image {
  background-image: url("../../../assets/images/conference21.jpg");
}
.cid-ttfRPSSQ2e .block__left > .mbr-overlay {
  background-color: #191f23;
  opacity: 0.5;
  z-index: 1;
}
.cid-ttfRPSSQ2e .block__right > .mbr-overlay {
  background-color: #4479d9;
  opacity: 0.8;
  z-index: 1;
}
.cid-ttfRPSSQ2e .right__image {
  background-image: url("../../../assets/images/conference22.jpg");
}
.cid-ttfRPSSQ2e .left__image,
.cid-ttfRPSSQ2e .right__image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 991px) {
  .cid-ttfRPSSQ2e .container,
  .cid-ttfRPSSQ2e .container-fluid,
  .cid-ttfRPSSQ2e .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
  .cid-ttfRPSSQ2e .wrap_left,
  .cid-ttfRPSSQ2e .wrap_right {
    padding: 0;
  }
}
.cid-ttfRUcF85p {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ttfRUcF85p .image img {
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-ttfRUcF85p .image {
    margin-bottom: 30px;
  }
}
.cid-ttfRUcF85p .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-ttfRUcF85p .mbr-text {
  margin-bottom: 30px;
}
.cid-ttfRUcF85p .mbr-section-btn {
  margin-bottom: 30px;
}
.cid-ttfRUcF85p .wrap {
  width: 110px;
  height: 110px;
}
.cid-ttfRUcF85p .card__block {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-ttfRUcF85p ellipse {
  stroke: rgba(35, 34, 38, 0.03);
}
.cid-ttfRUcF85p path {
  stroke: #4479d9;
}
.cid-ttfRUcF85p .pie_progress__number {
  letter-spacing: -0.3px;
  margin: 0;
}
.cid-ttfRUcF85p .card-title {
  padding-left: 20px;
  margin: 5px 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ttfRUcF85p .card {
    flex-basis: 33%;
  }
}
.cid-ttfRUcF85p .mbr-section-title {
  color: #4479d9;
}
.cid-ttfS9XTmhH {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ttfS9XTmhH .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-ttfS9XTmhH .clients__block .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-ttfS9XTmhH .mbr-text {
  margin: 10px 0 30px;
}
.cid-ttfS9XTmhH .wrap {
  overflow: hidden;
  padding: 20px 0;
}
.cid-ttfS9XTmhH .wrap:hover .image {
  animation: clientsAnim cubic-bezier(0.4, 0, 0.2, 1) 0.75s 1;
}
.cid-ttfS9XTmhH .image {
  padding-right: 35%;
  border-radius: 4px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-ttfS9XTmhH .image img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ttfS9XTmhH .mbr-text {
    margin: 10px 0;
  }
}
@keyframes clientsAnim {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(calc(-125%));
    opacity: 1;
  }
  51% {
    transform: translateY(calc(-125%));
    opacity: 0;
  }
  52% {
    transform: translateY(calc(125%));
  }
  86% {
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
  }
}
.cid-ttfS9XTmhH .mbr-section-title {
  color: #4479d9;
}
.cid-tEXyorcbO8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tEXyorcbO8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEXyorcbO8 .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-tEXyorcbO8 .container {
    padding: 0 16px;
  }
}
.cid-tEXyorcbO8 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tEXyorcbO8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-tEXyorcbO8 .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tEXyorcbO8 .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tEXyorcbO8 .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tEXyorcbO8 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tEXyorcbO8 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tEXyorcbO8 .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-tEXyorcbO8 .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-tEXyorcbO8 .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-tEXyorcbO8 .mbr-section-title {
  color: #4479d9;
}
.cid-tEXyorcbO8 .mbr-desc {
  color: #08323C;
}
.cid-tEXyorcbO8 .mbr-text {
  color: #08323C;
}
.cid-tEKZU5PA0p {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-tEKZU5PA0p .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tEKZU5PA0p textarea {
  min-height: 160px;
}
@media (min-width: 992px) {
  .cid-tEKZU5PA0p .text {
    max-width: 360px;
  }
}
.cid-tEKZU5PA0p .align-right {
  width: 100%;
}
.cid-tEKZU5PA0p .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-tEKZU5PA0p .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #bababa !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-tEKZU5PA0p .form-control,
.cid-tEKZU5PA0p .field-input {
  padding: 0.5rem;
  background-color: transparent;
  border-radius: 0px;
  border: 0px !important;
  border-bottom: 2px solid #555555 !important;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tEKZU5PA0p .form-control::-webkit-input-placeholder,
.cid-tEKZU5PA0p .field-input::-webkit-input-placeholder,
.cid-tEKZU5PA0p .form-control::-webkit-input-placeholder,
.cid-tEKZU5PA0p .field-input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tEKZU5PA0p .form-control:-moz-placeholder,
.cid-tEKZU5PA0p .field-input:-moz-placeholder,
.cid-tEKZU5PA0p .form-control:-moz-placeholder,
.cid-tEKZU5PA0p .field-input:-moz-placeholder {
  color: #ffffff;
}
.cid-tEKZU5PA0p .form-control:hover,
.cid-tEKZU5PA0p .field-input:hover,
.cid-tEKZU5PA0p .form-control:focus,
.cid-tEKZU5PA0p .field-input:focus {
  border-color: #ffffff !important;
  color: #ffffff;
  box-shadow: none !important;
  outline: none !important;
}
.cid-tEKZU5PA0p .form-control:hover::-webkit-input-placeholder,
.cid-tEKZU5PA0p .field-input:hover::-webkit-input-placeholder,
.cid-tEKZU5PA0p .form-control:focus::-webkit-input-placeholder,
.cid-tEKZU5PA0p .field-input:focus::-webkit-input-placeholder,
.cid-tEKZU5PA0p .form-control:hover::-webkit-input-placeholder,
.cid-tEKZU5PA0p .field-input:hover::-webkit-input-placeholder,
.cid-tEKZU5PA0p .form-control:focus::-webkit-input-placeholder,
.cid-tEKZU5PA0p .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tEKZU5PA0p .form-control:hover:-moz-placeholder,
.cid-tEKZU5PA0p .field-input:hover:-moz-placeholder,
.cid-tEKZU5PA0p .form-control:focus:-moz-placeholder,
.cid-tEKZU5PA0p .field-input:focus:-moz-placeholder,
.cid-tEKZU5PA0p .form-control:hover:-moz-placeholder,
.cid-tEKZU5PA0p .field-input:hover:-moz-placeholder,
.cid-tEKZU5PA0p .form-control:focus:-moz-placeholder,
.cid-tEKZU5PA0p .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-tEKZU5PA0p .jq-number__spin:hover,
.cid-tEKZU5PA0p .jq-number__spin:focus {
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tEKZU5PA0p .jq-number__spin {
  border-color: #555555;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tEKZU5PA0p input::-webkit-clear-button {
  display: none;
}
.cid-tEKZU5PA0p input::-webkit-inner-spin-button {
  display: none;
}
.cid-tEKZU5PA0p input::-webkit-outer-spin-button {
  display: none;
}
.cid-tEKZU5PA0p input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tEKZU5PA0p .title {
  color: #4479d9;
}
@media (max-width: 767px) {
  .cid-tEKZU5PA0p .socicon-wrap {
    margin: auto;
  }
}
.cid-tEKZU5PA0p .mbr-text {
  color: #999999;
}
.cid-ttfSwIV0ZT {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-ttfSwIV0ZT .row {
  position: relative;
}
.cid-ttfSwIV0ZT .row .blur-circle {
  position: absolute;
  bottom: -4rem;
  left: auto;
  width: 250px;
  height: 250px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #4479d9 50%, #ca41ec);
  backdrop-filter: blur(10px);
  filter: blur(32px) blur(32px);
}
.cid-ttfSwIV0ZT .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ttfSwIV0ZT .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-ttfSwIV0ZT .row {
    padding: 0 24px;
  }
}
.cid-ttfSwIV0ZT .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-ttfSwIV0ZT .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ttfSwIV0ZT .title-wrapper img {
  display: inline-block;
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 6px;
}
.cid-ttfSwIV0ZT .title-wrapper .mbr-section-title {
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-ttfSwIV0ZT .title-wrapper .mbr-section-title {
    margin-bottom: 26px;
  }
}
@media (max-width: 425px) {
  .cid-ttfSwIV0ZT .title-wrapper .mbr-section-title {
    color: #47b5ed;
  }
}
.cid-ttfSwIV0ZT .title-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 425px) {
  .cid-ttfSwIV0ZT .title-wrapper .mbr-text {
    color: #47b5ed;
  }
}
.cid-ttfSwIV0ZT .list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: #f4efe8;
}
@media (max-width: 425px) {
  .cid-ttfSwIV0ZT .list {
    justify-content: flex-start;
  }
}
.cid-ttfSwIV0ZT .list .mbr-list {
  margin: 5px 0 5px 30px;
}
@media (max-width: 425px) {
  .cid-ttfSwIV0ZT .list .mbr-list {
    margin: 5px 30px 5px 0;
  }
}
.cid-ttfSwIV0ZT .footer1 {
  overflow: hidden;
}
.cid-ttfSwIV0ZT .mbr-section-title {
  color: #111111;
}
.cid-ttfSwIV0ZT .mbr-text {
  color: #000000;
}
.cid-ttfSwIV0ZT .mbr-section-title,
.cid-ttfSwIV0ZT .image-wrapper {
  color: #000000;
}
.cid-ttfSJz7WDE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ttfSJz7WDE .media-container-row .mbr-text {
  color: #4479d9;
}
