body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
/* ---- 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.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #0091ea !important;
}
.bg-info {
  background-color: #050a30 !important;
}
.bg-warning {
  background-color: #fc59f2 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary:before {
  background-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #9cb8da !important;
  border-color: #9cb8da !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #9cb8da !important;
  border-color: #9cb8da !important;
}
.btn-secondary:before {
  background-color: #6490c5 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6490c5 !important;
  border-color: #6490c5 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #050a30 !important;
  border-color: #050a30 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #050a30 !important;
  border-color: #050a30 !important;
}
.btn-info:before {
  background-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,
.btn-success.active {
  background-color: #0091ea !important;
  border-color: #0091ea !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0091ea !important;
  border-color: #0091ea !important;
}
.btn-success:before {
  background-color: #00629e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00629e !important;
  border-color: #00629e !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fc59f2 !important;
  border-color: #fc59f2 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #fc59f2 !important;
  border-color: #fc59f2 !important;
}
.btn-warning:before {
  background-color: #fb0eec !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #fb0eec !important;
  border-color: #fb0eec !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:before {
  background-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-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,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080;
  border-color: #ffffff;
}
.btn-primary-outline:before {
  background-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #5283be;
  color: #5283be;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #9cb8da;
}
.btn-secondary-outline:before {
  background-color: #9cb8da;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #9cb8da !important;
  border-color: #9cb8da !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #050a30;
}
.btn-info-outline:before {
  background-color: #050a30;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #050a30 !important;
  border-color: #050a30 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #005284;
  color: #005284;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #0091ea;
}
.btn-success-outline:before {
  background-color: #0091ea;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0091ea !important;
  border-color: #0091ea !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #eb04dd;
  color: #eb04dd;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #fc59f2;
}
.btn-warning-outline:before {
  background-color: #fc59f2;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #fc59f2 !important;
  border-color: #fc59f2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080;
  border-color: #ffffff;
}
.btn-danger-outline:before {
  background-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-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;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #9cb8da !important;
}
.text-success {
  color: #0091ea !important;
}
.text-info {
  color: #050a30 !important;
}
.text-warning {
  color: #fc59f2 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #5283be !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #005284 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #eb04dd !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #050a30;
}
.alert-warning {
  background-color: #fc59f2;
}
.alert-danger {
  background-color: #ffffff;
}
.abz-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.abz-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.abz-plan-header.bg-primary .abz-plan-subtitle,
.abz-plan-header.bg-primary .abz-plan-price-desc {
  color: #ffffff;
}
.abz-plan-header.bg-success .abz-plan-subtitle,
.abz-plan-header.bg-success .abz-plan-price-desc {
  color: #b7e4ff;
}
.abz-plan-header.bg-info .abz-plan-subtitle,
.abz-plan-header.bg-info .abz-plan-price-desc {
  color: #a4aef6;
}
.abz-plan-header.bg-warning .abz-plan-subtitle,
.abz-plan-header.bg-warning .abz-plan-price-desc {
  color: #ffffff;
}
.abz-plan-header.bg-danger .abz-plan-subtitle,
.abz-plan-header.bg-danger .abz-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
blockquote {
  border-color: #ffffff;
}
/* Forms */
.abz-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .abz-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.abz-footer-content li::before,
.abz-footer .abz-contacts li::before {
  background: #ffffff;
}
.abz-footer-content li a:hover,
.abz-footer .abz-contacts li a:hover {
  color: #ffffff;
}
/*Menu*/
.display-1 > .abz-iconfont {
  font-size: 6.08rem;
}
.display-2 > .abz-iconfont {
  font-size: 4.8rem;
}
.display-4 > .abz-iconfont {
  font-size: 1.28rem;
}
.display-5 > .abz-iconfont {
  font-size: 2.08rem;
}
.display-7 > .abz-iconfont {
  font-size: 1.44rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !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: #9cb8da !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%;
}
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='%23ffffff' %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;
}
.cid-tp6LnfTsep .navbar {
  padding: .5rem 0;
  background: #050a30;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-tp6LnfTsep .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-tp6LnfTsep .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-tp6LnfTsep .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tp6LnfTsep .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tp6LnfTsep .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tp6LnfTsep .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tp6LnfTsep .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tp6LnfTsep .menu-logo .navbar-brand .navbar-logo .abz-iconfont {
  transition: font-size 0.25s;
}
.cid-tp6LnfTsep .navbar-dropdown.bg-color.transparent.opened {
  background: #050a30;
}
.cid-tp6LnfTsep a {
  font-style: normal;
}
.cid-tp6LnfTsep .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-tp6LnfTsep .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-tp6LnfTsep .dropdown-item:before {
  font-family: BenzaIcons !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-tp6LnfTsep .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-tp6LnfTsep .content-text {
  margin-bottom: 0;
}
.cid-tp6LnfTsep .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tp6LnfTsep .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tp6LnfTsep .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-tp6LnfTsep .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tp6LnfTsep .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-tp6LnfTsep .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-tp6LnfTsep .display-4 > .abz-iconfont {
  font-size: 1.43em;
}
.cid-tp6LnfTsep .display-4 > .btn > .abz-iconfont {
  font-size: 1.43em;
}
.cid-tp6LnfTsep .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tp6LnfTsep .navbar-buttons.abz-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tp6LnfTsep .nav-dropdown .link {
  font-weight: 400;
}
.cid-tp6LnfTsep .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tp6LnfTsep .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tp6LnfTsep .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-tp6LnfTsep .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tp6LnfTsep .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-tp6LnfTsep .menu-content-top.show {
  display: block;
}
.cid-tp6LnfTsep .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-tp6LnfTsep .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-tp6LnfTsep .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-tp6LnfTsep .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-tp6LnfTsep .dropdown-item:before {
    display: none;
  }
  .cid-tp6LnfTsep .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-tp6LnfTsep .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-tp6LnfTsep img {
    height: 3.8rem !important;
  }
  .cid-tp6LnfTsep .btn {
    display: flex;
  }
  .cid-tp6LnfTsep button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tp6LnfTsep .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tp6LnfTsep .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tp6LnfTsep .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tp6LnfTsep .navbar-collapse.collapsing,
  .cid-tp6LnfTsep .navbar-collapse.show {
    display: block !important;
  }
  .cid-tp6LnfTsep .navbar-collapse.collapsing .navbar-nav,
  .cid-tp6LnfTsep .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tp6LnfTsep .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tp6LnfTsep .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-tp6LnfTsep .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tp6LnfTsep .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tp6LnfTsep .navbar-collapse.collapsing .navbar-buttons,
  .cid-tp6LnfTsep .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tp6LnfTsep .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tp6LnfTsep .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tp6LnfTsep .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tp6LnfTsep .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tp6LnfTsep .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tp6LnfTsep .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-tp6LnfTsep .navbar .menu-content-top {
    display: block;
  }
  .cid-tp6LnfTsep .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-tp6LnfTsep .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-tp6LnfTsep .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-tp6LnfTsep .menu-bottom {
    display: flex;
  }
  .cid-tp6LnfTsep .navbar {
    display: block;
    padding: 0;
  }
  .cid-tp6LnfTsep .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tp6LnfTsep .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-tp6LnfTsep .navbar-toggler {
    display: none;
  }
}
.cid-tp6LnfTsep .navbar-short .menu-content-top {
  border: none;
}
.cid-tp6LnfTsep .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tp6LnfTsep .btn .abz-iconfont {
  font-size: 1.2em;
}
.cid-tp6LnfTsep .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-tp6LnfTsep .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tp6LnfTsep .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tp6LnfTsep .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tp6LnfTsep .dropdown .dropdown-menu {
  background: #050a30;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tp6LnfTsep .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tp6LnfTsep .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tp6LnfTsep .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tp6LnfTsep .dropdown .dropdown-menu .dropdown-item:hover .abz-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tp6LnfTsep .dropdown .dropdown-menu .dropdown-item .abz-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tp6LnfTsep .dropdown .dropdown-menu .dropdown-item .abz-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-tp6LnfTsep .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tp6LnfTsep .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tp6LnfTsep .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tp6LnfTsep .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tp6LnfTsep .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tp6LnfTsep .navbar.navbar-short .navbar-logo a .abz-iconfont {
  font-size: 2.5rem !important;
}
.cid-tp6LnfTsep .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tp6LnfTsep .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tp6LnfTsep button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-tp6LnfTsep button.navbar-toggler:focus {
  outline: none;
}
.cid-tp6LnfTsep button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a0d0fd;
}
.cid-tp6LnfTsep button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tp6LnfTsep button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tp6LnfTsep button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tp6LnfTsep button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tp6LnfTsep nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tp6LnfTsep nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tp6LnfTsep nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tp6LnfTsep nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tp6LnfTsep .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tp6LnfTsep .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tp6LnfTsep .collapsed .menu-logo {
  margin-right: 0;
}
.cid-tp6LnfTsep .collapsed .btn {
  display: flex;
}
.cid-tp6LnfTsep .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tp6LnfTsep .collapsed .navbar-collapse.collapsing,
.cid-tp6LnfTsep .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tp6LnfTsep .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tp6LnfTsep .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tp6LnfTsep .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tp6LnfTsep .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tp6LnfTsep .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tp6LnfTsep .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tp6LnfTsep .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tp6LnfTsep .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tp6LnfTsep .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tp6LnfTsep .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tp6LnfTsep .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 1rem);
  }
  .cid-tp6LnfTsep .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tp6LnfTsep .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tp6LnfTsep .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tp6LnfTsep .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tp6LnfTsep .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-tp6LnfTsep .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tp6LnfTsep .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tp6LnfTsep .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tp6LnfTsep .collapsed .dropdown-item:before {
  display: none;
}
.cid-tp6LnfTsep .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tp6LnfTsep .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tp6LnfTsep .nav-link:focus {
  outline: none;
}
.cid-tp6LnfTsep .navbar-toggler {
  position: relative;
}
.cid-tp6LnfTsep .dropdown-item.active,
.cid-tp6LnfTsep .dropdown-item:active {
  background-color: #050a30;
  color: auto;
}
.cid-tp6LnfTsep .nav-link:hover,
.cid-tp6LnfTsep .dropdown-item:hover {
  color: #4284df;
}
.cid-v4EnEHpB9x {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #050a30;
}
.cid-v4EnEHpB9x .block-text {
  color: #000000;
}
.cid-v4JMwqcavm {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v4EnzoOdY8 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v4EnzoOdY8 .block-title {
  color: #4284df;
  text-align: center;
}
.cid-v5zg2kGWwE {
  background: #050a30;
}
.cid-v5zg2kGWwE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v5zg2kGWwE figcaption {
  position: relative;
}
.cid-v5zg2kGWwE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v5zg2kGWwE .image-block {
    width: 100% !important;
  }
}
.cid-v4JRUYw4Zm {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #050a30;
}
.cid-v5zh3njVfp {
  background: #050a30;
}
.cid-v5zh3njVfp .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v5zh3njVfp figcaption {
  position: relative;
}
.cid-v5zh3njVfp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v5zh3njVfp .image-block {
    width: 100% !important;
  }
}
.cid-v4JJ36mIKT {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-v4JJ36mIKT h3 {
  text-align: center;
}
.cid-v4JJ36mIKT .abz-section-subtitle {
  font-weight: 300;
  color: #ffffff;
}
.cid-v4JJ36mIKT .card {
  word-wrap: break-word;
}
.cid-v4JJ36mIKT .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #ffffff;
}
.cid-v4JJ36mIKT .abz-iconfont {
  font-size: 5rem;
  color: #ffffff;
}
.cid-v4JJ36mIKT .abz-section-title {
  color: #4284df;
}
.cid-v4JJ36mIKT .count,
.cid-v4JJ36mIKT .card-img {
  color: #4284df;
}
.cid-v4JJ36mIKT H4 {
  color: #ffffff;
}
.cid-v4JMuVooXJ {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v4EjmSPnL0 {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v4EjmSPnL0 .block-title {
  color: #4284df;
  text-align: left;
}
.cid-rloMusoMPQ {
  background-image: url("../../../assets/images/02-1920x1439.webp");
}
.cid-rloMusoMPQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-rloMusoMPQ .abz-section-text {
  word-break: break-word;
}
.cid-rloMusoMPQ .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-rloMusoMPQ .abz-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-rloMusoMPQ .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rloMusoMPQ .abz-text {
    text-align: center;
  }
}
.cid-rloMusoMPQ .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-tuF1TbhB6I {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-rloOdciFy1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-rloOdciFy1 h3 {
  text-align: center;
}
.cid-rloOdciFy1 .abz-section-subtitle {
  font-weight: 300;
  color: #ffffff;
}
.cid-rloOdciFy1 .card {
  word-wrap: break-word;
}
.cid-rloOdciFy1 .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #ffffff;
}
.cid-rloOdciFy1 .abz-iconfont {
  font-size: 5rem;
  color: #ffffff;
}
.cid-rloOdciFy1 .abz-section-title {
  color: #ffffff;
}
.cid-rloOdciFy1 .count,
.cid-rloOdciFy1 .card-img {
  color: #ffffff;
}
.cid-rloOdciFy1 H4 {
  color: #ffffff;
}
.cid-rqSoNBk6xU {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-rqSoNBk6xU .block-title {
  color: #ffffff;
}
.cid-rqSoNBk6xU .block-title B {
  color: #ffffff;
}
.cid-tp2AyznLHr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-tp2AyznLHr .block-title {
  color: #4284df;
}
.cid-rqSoP60TKH {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-rqSoP60TKH .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-rqSoP60TKH .card-img {
  padding: 0 0 2rem;
}
.cid-rqSoP60TKH .abz-section-btn {
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-rqSoP60TKH .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .cid-rqSoP60TKH .card-title {
    text-align: center;
  }
  .cid-rqSoP60TKH p.abz-text {
    text-align: center;
  }
}
.cid-rqSoP60TKH .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-rqSoP60TKH .card-title B {
  color: #ffffff;
}
.cid-rqSoP60TKH .abz-text,
.cid-rqSoP60TKH .abz-section-btn {
  color: #ffffff;
}
.cid-v4EirHYMjO {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v4EirHYMjO .block-title {
  color: #4284df;
  text-align: left;
}
.cid-v5zhp7CBtK {
  background: #050a30;
}
.cid-v5zhp7CBtK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v5zhp7CBtK figcaption {
  position: relative;
}
.cid-v5zhp7CBtK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v5zhp7CBtK .image-block {
    width: 100% !important;
  }
}
.cid-tuF1EaYUsh {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-tuF1EaYUsh .block-title {
  color: #4284df;
}
.cid-tuF1Fc5Phs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-tuF1Fc5Phs h4,
.cid-tuF1Fc5Phs h5 {
  text-align: center;
}
.cid-tuF1Fc5Phs h5 {
  font-weight: 400;
}
.cid-tuF1Fc5Phs p {
  text-align: center;
}
.cid-tuF1Fc5Phs .img-icon {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.cid-tuF1Fc5Phs .card-box {
  text-align: center;
}
.cid-tuF1Fc5Phs .card-box:after {
  content: "";
  display: inline-block;
  width: 150px;
  height: 3px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tuF1Fc5Phs .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tuF1Fc5Phs .abz-fallback-image.disabled {
  display: none;
}
.cid-tuF1Fc5Phs .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Kxcxunfh {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #050a30;
}
.cid-v4Kxcxunfh .media-content .btn-bgr {
  z-index: 0;
}
.cid-v4Kxcxunfh .abz-section-text {
  word-break: break-word;
}
.cid-v4Kxcxunfh .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-v4Kxcxunfh .abz-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v4Kxcxunfh .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v4Kxcxunfh .abz-text {
    text-align: center;
  }
}
.cid-v4Kxcxunfh .abz-fallback-image.disabled {
  display: none;
}
.cid-v4Kxcxunfh .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Kxcxunfh H1 {
  color: #4284df;
}
.cid-rqSkRVFI7E {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-rqSkRVFI7E .abz-text {
  color: #ffffff;
}
.cid-rqSkRVFI7E h4 {
  font-weight: 500;
}
.cid-rqSkRVFI7E h4,
.cid-rqSkRVFI7E h5 {
  text-align: center;
}
.cid-rqSkRVFI7E p {
  text-align: center;
}
.cid-rqSkRVFI7E .card-box {
  text-align: center;
}
.cid-rqSkRVFI7E .card-img {
  font-size: 3rem;
}
.cid-rqSkRVFI7E .abz-iconfont {
  color: #ffffff;
}
.cid-rqSkRVFI7E H2 {
  color: #ffffff;
}
.cid-rqSkRVFI7E .card-title,
.cid-rqSkRVFI7E .card-img {
  color: #a0d0fd;
}
.cid-rsbqjPhjHP {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-rsbqjPhjHP .block-title {
  color: #4284df;
}
.cid-rsbpFqVpl7 {
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-rsbpFqVpl7 .media-content .btn-bgr {
  z-index: 0;
}
.cid-rsbpFqVpl7 .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-rsbpFqVpl7 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-rsbpFqVpl7 p {
  color: #464646;
}
.cid-rsbpFqVpl7 h2 {
  color: #000000;
}
.cid-rsbpFqVpl7 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-rsbpFqVpl7 .abz-section-btn {
  margin-left: -0.8rem;
}
.cid-rsbpFqVpl7 .abz-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-rsbpFqVpl7 .abz-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-rsbpFqVpl7 .abz-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-rsbpFqVpl7 .abz-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-rsbpFqVpl7 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-rsbpFqVpl7 .abz-text {
    text-align: center;
  }
}
.cid-rsbpFqVpl7 .abz-section-subtitle {
  color: #ffffff;
}
.cid-rsbpFqVpl7 .abz-section-title,
.cid-rsbpFqVpl7 .abz-section-btn {
  color: #ffffff;
}
.cid-rsbqsVkwxJ {
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-rsbqsVkwxJ .media-content .btn-bgr {
  z-index: 0;
}
.cid-rsbqsVkwxJ .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-rsbqsVkwxJ h3 {
  color: #000000;
  font-weight: 300;
}
.cid-rsbqsVkwxJ p {
  color: #464646;
}
.cid-rsbqsVkwxJ h2 {
  color: #000000;
}
.cid-rsbqsVkwxJ .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-rsbqsVkwxJ .abz-section-btn {
  margin-left: -0.8rem;
}
.cid-rsbqsVkwxJ .abz-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-rsbqsVkwxJ .abz-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-rsbqsVkwxJ .abz-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-rsbqsVkwxJ .abz-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-rsbqsVkwxJ .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-rsbqsVkwxJ .abz-text {
    text-align: center;
  }
}
.cid-rsbqsVkwxJ .abz-section-subtitle {
  color: #ffffff;
}
.cid-rsbqsVkwxJ .abz-section-title,
.cid-rsbqsVkwxJ .abz-section-btn {
  color: #ffffff;
}
.cid-rtU4UY1PZI {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #050a30;
}
.cid-v5zhEdLNbx {
  background: #050a30;
}
.cid-v5zhEdLNbx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v5zhEdLNbx figcaption {
  position: relative;
}
.cid-v5zhEdLNbx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v5zhEdLNbx .image-block {
    width: 100% !important;
  }
}
.cid-stco1KZxFE {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/big334-1920x1079.webp");
}
.cid-stco1KZxFE .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-stco1KZxFE .abz-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #000000;
}
.cid-stco1KZxFE .abz-media span.abzi-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-stco1KZxFE .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-stco1KZxFE .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-stco1KZxFE .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-stco1KZxFE a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-stco1KZxFE a.close:hover {
  color: #ffffff;
}
.cid-stco1KZxFE H1 {
  text-align: justify;
}
.cid-stco1KZxFE P {
  text-align: justify;
}
.cid-tp2C9zbJlA {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-tp2C9zbJlA .block-title {
  color: #ffffff;
  text-align: left;
}
.cid-rqSCi4h40N {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #050a30;
}
.cid-rqSCi4h40N .media-content .btn-bgr {
  z-index: 0;
}
.cid-rqSCi4h40N .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-rqSCi4h40N h3 {
  color: #000000;
  font-weight: 300;
}
.cid-rqSCi4h40N p {
  color: #464646;
}
.cid-rqSCi4h40N h2 {
  color: #000000;
}
.cid-rqSCi4h40N .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-rqSCi4h40N .abz-section-btn {
  margin-left: -0.8rem;
}
.cid-rqSCi4h40N .abz-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-rqSCi4h40N .abz-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-rqSCi4h40N .abz-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-rqSCi4h40N .abz-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-rqSCi4h40N .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-rqSCi4h40N .abz-text {
    text-align: center;
  }
}
.cid-rqSCi4h40N .abz-section-title,
.cid-rqSCi4h40N .abz-section-btn B {
  color: #0c57bf;
}
.cid-rqSCi4h40N .abz-section-subtitle {
  color: #ffffff;
}
.cid-rqSCi4h40N .abz-section-title,
.cid-rqSCi4h40N .abz-section-btn {
  color: #4284df;
  text-align: left;
}
.cid-rqSCi4h40N .abz-section-subtitle B {
  color: #0c57bf;
}
.cid-rqSCi4h40N P {
  color: #4284df;
}
.cid-rlGKJWk11p {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-rlGKJWk11p .block-title {
  color: #ffffff;
}
.cid-rtuXGAViW2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-rtuXGAViW2 .block-title {
  color: #ffffff;
}
.cid-rtuXGAViW2 .block-title DIV {
  text-align: left;
}
.cid-v4EruGR4yD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #050a30;
}
@media (max-width: 767px) {
  .cid-v4EruGR4yD .content {
    text-align: center;
  }
  .cid-v4EruGR4yD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v4EruGR4yD .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-v4EruGR4yD .form-control {
  margin-bottom: 1rem;
  padding: 1.07em 1.07em;
}
.cid-v4EruGR4yD textarea.form-control {
  resize: none;
}
.cid-v4EruGR4yD .input-group-btn {
  display: inline-block;
}
.cid-v4EruGR4yD .input-group-btn .btn {
  margin: 0 !important;
  padding: .75rem 1.5625rem !important;
  text-transform: none;
}
.cid-v4EruGR4yD .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v4EruGR4yD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v4EruGR4yD .social-list .abz-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v4EruGR4yD .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v4EruGR4yD .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v4EruGR4yD .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v4EruGR4yD .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-v4EruGR4yD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v4EruGR4yD .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-v4EruGR4yD .form-control,
.cid-v4EruGR4yD .input-group-btn .btn {
  border-radius: 3px;
}
.cid-v4EruGR4yD P {
  color: #4284df;
}
.cid-to8B3rYqQn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-v51Rh8O1vp .navbar {
  padding: .5rem 0;
  background: #050a30;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-v51Rh8O1vp .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-v51Rh8O1vp .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-v51Rh8O1vp .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v51Rh8O1vp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v51Rh8O1vp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v51Rh8O1vp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v51Rh8O1vp .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v51Rh8O1vp .menu-logo .navbar-brand .navbar-logo .abz-iconfont {
  transition: font-size 0.25s;
}
.cid-v51Rh8O1vp .navbar-dropdown.bg-color.transparent.opened {
  background: #050a30;
}
.cid-v51Rh8O1vp a {
  font-style: normal;
}
.cid-v51Rh8O1vp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-v51Rh8O1vp .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-v51Rh8O1vp .dropdown-item:before {
  font-family: BenzaIcons !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-v51Rh8O1vp .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-v51Rh8O1vp .content-text {
  margin-bottom: 0;
}
.cid-v51Rh8O1vp .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v51Rh8O1vp .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v51Rh8O1vp .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-v51Rh8O1vp .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v51Rh8O1vp .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-v51Rh8O1vp .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-v51Rh8O1vp .display-4 > .abz-iconfont {
  font-size: 1.43em;
}
.cid-v51Rh8O1vp .display-4 > .btn > .abz-iconfont {
  font-size: 1.43em;
}
.cid-v51Rh8O1vp .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-v51Rh8O1vp .navbar-buttons.abz-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v51Rh8O1vp .nav-dropdown .link {
  font-weight: 400;
}
.cid-v51Rh8O1vp .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v51Rh8O1vp .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v51Rh8O1vp .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-v51Rh8O1vp .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-v51Rh8O1vp .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-v51Rh8O1vp .menu-content-top.show {
  display: block;
}
.cid-v51Rh8O1vp .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-v51Rh8O1vp .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-v51Rh8O1vp .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-v51Rh8O1vp .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-v51Rh8O1vp .dropdown-item:before {
    display: none;
  }
  .cid-v51Rh8O1vp .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-v51Rh8O1vp .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-v51Rh8O1vp img {
    height: 3.8rem !important;
  }
  .cid-v51Rh8O1vp .btn {
    display: flex;
  }
  .cid-v51Rh8O1vp button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-v51Rh8O1vp .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-v51Rh8O1vp .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-v51Rh8O1vp .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v51Rh8O1vp .navbar-collapse.collapsing,
  .cid-v51Rh8O1vp .navbar-collapse.show {
    display: block !important;
  }
  .cid-v51Rh8O1vp .navbar-collapse.collapsing .navbar-nav,
  .cid-v51Rh8O1vp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v51Rh8O1vp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v51Rh8O1vp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-v51Rh8O1vp .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-v51Rh8O1vp .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-v51Rh8O1vp .navbar-collapse.collapsing .navbar-buttons,
  .cid-v51Rh8O1vp .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v51Rh8O1vp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v51Rh8O1vp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v51Rh8O1vp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v51Rh8O1vp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v51Rh8O1vp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v51Rh8O1vp .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-v51Rh8O1vp .navbar .menu-content-top {
    display: block;
  }
  .cid-v51Rh8O1vp .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-v51Rh8O1vp .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-v51Rh8O1vp .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-v51Rh8O1vp .menu-bottom {
    display: flex;
  }
  .cid-v51Rh8O1vp .navbar {
    display: block;
    padding: 0;
  }
  .cid-v51Rh8O1vp .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v51Rh8O1vp .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-v51Rh8O1vp .navbar-toggler {
    display: none;
  }
}
.cid-v51Rh8O1vp .navbar-short .menu-content-top {
  border: none;
}
.cid-v51Rh8O1vp .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v51Rh8O1vp .btn .abz-iconfont {
  font-size: 1.2em;
}
.cid-v51Rh8O1vp .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-v51Rh8O1vp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v51Rh8O1vp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v51Rh8O1vp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v51Rh8O1vp .dropdown .dropdown-menu {
  background: #050a30;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v51Rh8O1vp .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v51Rh8O1vp .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v51Rh8O1vp .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-v51Rh8O1vp .dropdown .dropdown-menu .dropdown-item:hover .abz-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v51Rh8O1vp .dropdown .dropdown-menu .dropdown-item .abz-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v51Rh8O1vp .dropdown .dropdown-menu .dropdown-item .abz-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-v51Rh8O1vp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v51Rh8O1vp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v51Rh8O1vp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-v51Rh8O1vp .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v51Rh8O1vp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v51Rh8O1vp .navbar.navbar-short .navbar-logo a .abz-iconfont {
  font-size: 2.5rem !important;
}
.cid-v51Rh8O1vp .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v51Rh8O1vp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v51Rh8O1vp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-v51Rh8O1vp button.navbar-toggler:focus {
  outline: none;
}
.cid-v51Rh8O1vp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a0d0fd;
}
.cid-v51Rh8O1vp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v51Rh8O1vp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v51Rh8O1vp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v51Rh8O1vp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v51Rh8O1vp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v51Rh8O1vp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v51Rh8O1vp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v51Rh8O1vp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v51Rh8O1vp .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v51Rh8O1vp .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v51Rh8O1vp .collapsed .menu-logo {
  margin-right: 0;
}
.cid-v51Rh8O1vp .collapsed .btn {
  display: flex;
}
.cid-v51Rh8O1vp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v51Rh8O1vp .collapsed .navbar-collapse.collapsing,
.cid-v51Rh8O1vp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v51Rh8O1vp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v51Rh8O1vp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v51Rh8O1vp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v51Rh8O1vp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v51Rh8O1vp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-v51Rh8O1vp .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-v51Rh8O1vp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v51Rh8O1vp .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v51Rh8O1vp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v51Rh8O1vp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v51Rh8O1vp .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem  - 1rem);
  }
  .cid-v51Rh8O1vp .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v51Rh8O1vp .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v51Rh8O1vp .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-v51Rh8O1vp .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-v51Rh8O1vp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-v51Rh8O1vp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v51Rh8O1vp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v51Rh8O1vp .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-v51Rh8O1vp .collapsed .dropdown-item:before {
  display: none;
}
.cid-v51Rh8O1vp .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-v51Rh8O1vp .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-v51Rh8O1vp .nav-link:focus {
  outline: none;
}
.cid-v51Rh8O1vp .navbar-toggler {
  position: relative;
}
.cid-v51Rh8O1vp .dropdown-item.active,
.cid-v51Rh8O1vp .dropdown-item:active {
  background-color: #050a30;
  color: auto;
}
.cid-v51Rh8O1vp .nav-link:hover,
.cid-v51Rh8O1vp .dropdown-item:hover {
  color: #4284df;
}
.cid-v51Rh9x3fp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #050a30;
}
.cid-v51Rh9x3fp .block-text {
  color: #000000;
}
.cid-v51Rh9G5Xe {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v51RhaBLLw {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v51RhaBLLw .block-title {
  color: #0091ea;
  text-align: left;
}
.cid-v5zfpcrCMO {
  background: #050a30;
}
.cid-v5zfpcrCMO .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v5zfpcrCMO figcaption {
  position: relative;
}
.cid-v5zfpcrCMO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v5zfpcrCMO .image-block {
    width: 100% !important;
  }
}
.cid-v57OSV7uNJ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v57OSV7uNJ .block-title {
  color: #0091ea;
  text-align: left;
}
.cid-v57ArNAKoR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v57ArNAKoR .media-content .btn-bgr {
  z-index: 0;
}
.cid-v57ArNAKoR .abz-section-text {
  word-break: break-word;
}
.cid-v57ArNAKoR .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-v57ArNAKoR .abz-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v57ArNAKoR .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v57ArNAKoR .abz-text {
    text-align: center;
  }
}
.cid-v57ArNAKoR .abz-fallback-image.disabled {
  display: none;
}
.cid-v57ArNAKoR .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v57ArNAKoR H1 {
  color: #4284df;
}
.cid-v57OfbEEvQ {
  padding-top: 20px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v57OfbEEvQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-v57OfbEEvQ .abz-section-text {
  word-break: break-word;
}
.cid-v57OfbEEvQ .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-v57OfbEEvQ .abz-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v57OfbEEvQ .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v57OfbEEvQ .abz-text {
    text-align: center;
  }
}
.cid-v57OfbEEvQ .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-v57OfbEEvQ .abz-fallback-image.disabled {
  display: none;
}
.cid-v57OfbEEvQ .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v57OfbEEvQ H1 {
  color: #4284df;
}
.cid-v57OKi4aeB {
  padding-top: 20px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v57OKi4aeB .media-content .btn-bgr {
  z-index: 0;
}
.cid-v57OKi4aeB .abz-section-text {
  word-break: break-word;
}
.cid-v57OKi4aeB .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-v57OKi4aeB .abz-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v57OKi4aeB .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v57OKi4aeB .abz-text {
    text-align: center;
  }
}
.cid-v57OKi4aeB .abz-fallback-image.disabled {
  display: none;
}
.cid-v57OKi4aeB .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v57OKi4aeB H1 {
  color: #0091ea;
}
.cid-v57PgjhDGo {
  padding-top: 20px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v57PgjhDGo .media-content .btn-bgr {
  z-index: 0;
}
.cid-v57PgjhDGo .abz-section-text {
  word-break: break-word;
}
.cid-v57PgjhDGo .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-v57PgjhDGo .abz-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v57PgjhDGo .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v57PgjhDGo .abz-text {
    text-align: center;
  }
}
.cid-v57PgjhDGo .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-v57PgjhDGo .abz-fallback-image.disabled {
  display: none;
}
.cid-v57PgjhDGo .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v57PgjhDGo H1 {
  color: #0091ea;
}
.cid-v57QGbIW5x {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #050a30;
}
.cid-v57QGbIW5x .row {
  position: relative;
}
.cid-v57QGbIW5x .row .blur-circle {
  position: absolute;
  top: 0;
  left: 10%;
  width: 30%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #004093 50%, #004093);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-v57QGbIW5x .row .blur-circle {
    display: none;
  }
}
.cid-v57QGbIW5x .abz-fallback-image.disabled {
  display: none;
}
.cid-v57QGbIW5x .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v57QGbIW5x .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-v57QGbIW5x .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-v57QGbIW5x .row {
    padding: 0 24px;
  }
}
.cid-v57QGbIW5x .title {
  display: flex;
  align-items: center;
}
.cid-v57QGbIW5x .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-v57QGbIW5x .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v57QGbIW5x .title-wrapper .abz-section-title {
  margin-bottom: 32px;
}
.cid-v57QGbIW5x .title-wrapper .abz-section-title span {
  position: relative;
  z-index: 1;
}
.cid-v57QGbIW5x .title-wrapper .abz-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ff10f0;
  z-index: -1;
}
.cid-v57QGbIW5x .title-wrapper .abz-text {
  margin: 0;
}
.cid-v57QGbIW5x .image-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-v57QGbIW5x .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v57QGbIW5x .image-wrapper img {
  max-height: 500px;
  width: 70%;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .cid-v57QGbIW5x .image-wrapper img {
    width: 100%;
  }
}
.cid-v57QGbIW5x .abz-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-v57QGbIW5x .abz-text {
  color: #ffffff;
  text-align: right;
}
.cid-v5dFFSWLoA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-v5dFFSWLoA .block-title {
  color: #ff10f0;
  text-align: left;
}
.cid-v5dGD3qxWT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-v5dGD3qxWT span {
  color: #c1c1c1;
}
.cid-v5dGD3qxWT .flex-block {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-v5dGD3qxWT .flex-block span {
  font-size: 3rem;
  margin-right: 3rem;
}
@media (min-width: 577px) {
  .cid-v5dGD3qxWT .flex-block span {
    margin-left: 2rem;
  }
}
.cid-v5dGD3qxWT .block-quote {
  color: #0091ea;
}
.cid-v5dGFsawmZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-v5dGFsawmZ h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-v5dGFsawmZ .abz-section-subtitle {
  color: #767676;
}
.cid-v5dGFsawmZ .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-v5dGFsawmZ .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-v5dGFsawmZ .article-title-right {
  color: #ff10f0;
}
.cid-v5dGFsawmZ .abz-text-right {
  color: #ffffff;
}
.cid-v5dGFsawmZ .article-title-left {
  color: #ff10f0;
}
.cid-v5dGFsawmZ .abz-text-left {
  color: #ffffff;
}
.cid-v57PE9OVbV {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #050a30;
}
.cid-v5dDHy0OK0 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ff10f0;
}
.cid-v5dDHy0OK0 .block-title {
  color: #ffffff;
  text-align: left;
}
.cid-v5igSZo20O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff10f0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-v5igSZo20O .abz-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v5igSZo20O .abz-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5igSZo20O .abz-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5igSZo20O .abz-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v5igSZo20O .abz-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ff10f0;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v5igSZo20O .abz-gallery-item > div:hover .abz-gallery-title::before {
  background: transparent !important;
}
.cid-v5igSZo20O .abz-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-v5igSZo20O .abz-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v5igSZo20O .abz-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #ff10f0 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v5igSZo20O ul {
  font-size: 0;
}
.cid-v5igSZo20O .abz-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #ff10f0;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-v5igSZo20O .abz-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #ff10f0 solid;
  border-radius: 0 !important;
}
.cid-v5igSZo20O .abz-gallery-filter ul li {
  padding: 0;
}
.cid-v5ohzQqyjo {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ff10f0;
}
.cid-v5ohzQqyjo .media-content .btn-bgr {
  z-index: 0;
}
.cid-v5ohzQqyjo .abz-section-text {
  word-break: break-word;
}
.cid-v5ohzQqyjo .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-v5ohzQqyjo .abz-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v5ohzQqyjo .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v5ohzQqyjo .abz-text {
    text-align: center;
  }
}
.cid-v5ohzQqyjo .abz-fallback-image.disabled {
  display: none;
}
.cid-v5ohzQqyjo .abz-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ohzQqyjo H1 {
  color: #ffffff;
}
.cid-v5dtl1MG4J .abz-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-v5dtl1MG4J .number-wrap {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 5px 13px 5px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-v5dtl1MG4J .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #050a30;
}
.cid-v5dtl1MG4J .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-v5dtl1MG4J .dot {
  position: absolute;
  top: -10px;
  right: -0.8em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #050a30;
}
.cid-v5dtl1MG4J .countdown-cont {
  margin: 0 auto;
}
.cid-v5dtl1MG4J .full-count-container {
  background: #ff10f0;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v5dtl1MG4J .dot {
    right: -0.6em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v5dtl1MG4J .dot {
    right: -1em;
  }
}
@media (max-width: 768px) {
  .cid-v5dtl1MG4J .dot {
    display: none;
  }
  .cid-v5dtl1MG4J .number {
    white-space: nowrap;
  }
}
@media (max-width: 550px) {
  .cid-v5dtl1MG4J .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-v5dtl1MG4J .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-v5dtl1MG4J .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-v5dtl1MG4J .number {
    font-size: 25px;
  }
  .cid-v5dtl1MG4J .period {
    font-size: 0.7rem;
  }
}
.cid-v5dtl1MG4J H2 {
  color: #050a30;
}
.cid-v57PEZAM8v {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ff10f0;
}
.cid-v51RhbjEzI {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #050a30;
}
.cid-v51RhbY47E {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v51Rhc7S42 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-v51Rhc7S42 .block-title {
  color: #0091ea;
  text-align: left;
}
.cid-v51Rhcc0Jh {
  background-image: url("../../../assets/images/02-1920x1439.webp");
}
.cid-v51Rhcc0Jh .media-content .btn-bgr {
  z-index: 0;
}
.cid-v51Rhcc0Jh .abz-section-text {
  word-break: break-word;
}
.cid-v51Rhcc0Jh .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-v51Rhcc0Jh .abz-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v51Rhcc0Jh .abz-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v51Rhcc0Jh .abz-text {
    text-align: center;
  }
}
.cid-v51Rhcc0Jh .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-v51RhcpRzO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v51RhcuBSl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v51RhcuBSl h3 {
  text-align: center;
}
.cid-v51RhcuBSl .abz-section-subtitle {
  font-weight: 300;
  color: #ffffff;
}
.cid-v51RhcuBSl .card {
  word-wrap: break-word;
}
.cid-v51RhcuBSl .card:after {
  content: "";
  display: block;
  width: 150px;
  height: 3px;
  margin: 0 auto;
  background-color: #ffffff;
}
.cid-v51RhcuBSl .abz-iconfont {
  font-size: 5rem;
  color: #ffffff;
}
.cid-v51RhcuBSl .abz-section-title {
  color: #ffffff;
}
.cid-v51RhcuBSl .count,
.cid-v51RhcuBSl .card-img {
  color: #ffffff;
}
.cid-v51RhcuBSl H4 {
  color: #ffffff;
}
.cid-v51RhcKFQw {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-v51RhcKFQw .block-title {
  color: #ffffff;
}
.cid-v51RhcKFQw .block-title B {
  color: #ffffff;
}
.cid-v51RhcR56A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v51RhcR56A .block-title {
  color: #4284df;
}
.cid-v51RhcWDna {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #050a30;
}
.cid-v51RhcWDna .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-v51RhcWDna .card-img {
  padding: 0 0 2rem;
}
.cid-v51RhcWDna .abz-section-btn {
  margin-left: 0;
}
@media (min-width: 992px) {
  .cid-v51RhcWDna .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .cid-v51RhcWDna .card-title {
    text-align: center;
  }
  .cid-v51RhcWDna p.abz-text {
    text-align: center;
  }
}
.cid-v51RhcWDna .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-v51RhcWDna .card-title B {
  color: #ffffff;
}
.cid-v51RhcWDna .abz-text,
.cid-v51RhcWDna .abz-section-btn {
  color: #ffffff;
}
.cid-v51RhdWZxo {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-v51RhdWZxo .abz-text {
  color: #ffffff;
}
.cid-v51RhdWZxo h4 {
  font-weight: 500;
}
.cid-v51RhdWZxo h4,
.cid-v51RhdWZxo h5 {
  text-align: center;
}
.cid-v51RhdWZxo p {
  text-align: center;
}
.cid-v51RhdWZxo .card-box {
  text-align: center;
}
.cid-v51RhdWZxo .card-img {
  font-size: 3rem;
}
.cid-v51RhdWZxo .abz-iconfont {
  color: #ffffff;
}
.cid-v51RhdWZxo H2 {
  color: #ffffff;
}
.cid-v51RhdWZxo .card-title,
.cid-v51RhdWZxo .card-img {
  color: #a0d0fd;
}
.cid-v51Rheez1S {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #050a30;
}
.cid-v51Rheez1S .block-title {
  color: #4284df;
}
.cid-v51RhekC3O {
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-v51RhekC3O .media-content .btn-bgr {
  z-index: 0;
}
.cid-v51RhekC3O .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-v51RhekC3O h3 {
  color: #000000;
  font-weight: 300;
}
.cid-v51RhekC3O p {
  color: #464646;
}
.cid-v51RhekC3O h2 {
  color: #000000;
}
.cid-v51RhekC3O .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-v51RhekC3O .abz-section-btn {
  margin-left: -0.8rem;
}
.cid-v51RhekC3O .abz-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-v51RhekC3O .abz-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-v51RhekC3O .abz-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v51RhekC3O .abz-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v51RhekC3O .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-v51RhekC3O .abz-text {
    text-align: center;
  }
}
.cid-v51RhekC3O .abz-section-subtitle {
  color: #ffffff;
}
.cid-v51RhekC3O .abz-section-title,
.cid-v51RhekC3O .abz-section-btn {
  color: #ffffff;
}
.cid-v51RheurM5 {
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-v51RheurM5 .media-content .btn-bgr {
  z-index: 0;
}
.cid-v51RheurM5 .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-v51RheurM5 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-v51RheurM5 p {
  color: #464646;
}
.cid-v51RheurM5 h2 {
  color: #000000;
}
.cid-v51RheurM5 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-v51RheurM5 .abz-section-btn {
  margin-left: -0.8rem;
}
.cid-v51RheurM5 .abz-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-v51RheurM5 .abz-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-v51RheurM5 .abz-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v51RheurM5 .abz-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v51RheurM5 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-v51RheurM5 .abz-text {
    text-align: center;
  }
}
.cid-v51RheurM5 .abz-section-subtitle {
  color: #ffffff;
}
.cid-v51RheurM5 .abz-section-title,
.cid-v51RheurM5 .abz-section-btn {
  color: #ffffff;
}
.cid-v51RheN5B4 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #050a30;
}
.cid-v51RheTMEo {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/big334-1920x1079.webp");
}
.cid-v51RheTMEo .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v51RheTMEo .abz-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #000000;
}
.cid-v51RheTMEo .abz-media span.abzi-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-v51RheTMEo .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v51RheTMEo .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-v51RheTMEo .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-v51RheTMEo a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-v51RheTMEo a.close:hover {
  color: #ffffff;
}
.cid-v51RheTMEo H1 {
  text-align: justify;
}
.cid-v51RheTMEo P {
  text-align: justify;
}
.cid-v51RhfQDQk {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #050a30;
}
.cid-v51RhfQDQk .block-title {
  color: #ffffff;
  text-align: left;
}
.cid-v51RhfXnYd {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #050a30;
}
.cid-v51RhfXnYd .media-content .btn-bgr {
  z-index: 0;
}
.cid-v51RhfXnYd .abz-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-v51RhfXnYd h3 {
  color: #000000;
  font-weight: 300;
}
.cid-v51RhfXnYd p {
  color: #464646;
}
.cid-v51RhfXnYd h2 {
  color: #000000;
}
.cid-v51RhfXnYd .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-v51RhfXnYd .abz-section-btn {
  margin-left: -0.8rem;
}
.cid-v51RhfXnYd .abz-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-v51RhfXnYd .abz-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-v51RhfXnYd .abz-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v51RhfXnYd .abz-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v51RhfXnYd .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-v51RhfXnYd .abz-text {
    text-align: center;
  }
}
.cid-v51RhfXnYd .abz-section-title,
.cid-v51RhfXnYd .abz-section-btn B {
  color: #0c57bf;
}
.cid-v51RhfXnYd .abz-section-subtitle {
  color: #ffffff;
}
.cid-v51RhfXnYd .abz-section-title,
.cid-v51RhfXnYd .abz-section-btn {
  color: #4284df;
  text-align: left;
}
.cid-v51RhfXnYd .abz-section-subtitle B {
  color: #0c57bf;
}
.cid-v51RhfXnYd P {
  color: #4284df;
}
.cid-v51Rhga6ry {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-v51Rhga6ry .block-title {
  color: #ffffff;
}
.cid-v51RhgmEIC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #050a30;
}
.cid-v51RhgmEIC .block-title {
  color: #ffffff;
}
.cid-v51RhgmEIC .block-title DIV {
  text-align: left;
}
.cid-v51Rhgu1xC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #050a30;
}
@media (max-width: 767px) {
  .cid-v51Rhgu1xC .content {
    text-align: center;
  }
  .cid-v51Rhgu1xC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v51Rhgu1xC .img-logo img {
  height: 6rem;
  width: auto;
}
.cid-v51Rhgu1xC .form-control {
  margin-bottom: 1rem;
  padding: 1.07em 1.07em;
}
.cid-v51Rhgu1xC textarea.form-control {
  resize: none;
}
.cid-v51Rhgu1xC .input-group-btn {
  display: inline-block;
}
.cid-v51Rhgu1xC .input-group-btn .btn {
  margin: 0 !important;
  padding: .75rem 1.5625rem !important;
  text-transform: none;
}
.cid-v51Rhgu1xC .form-group {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v51Rhgu1xC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v51Rhgu1xC .social-list .abz-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v51Rhgu1xC .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v51Rhgu1xC .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v51Rhgu1xC .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v51Rhgu1xC .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-v51Rhgu1xC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v51Rhgu1xC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-v51Rhgu1xC .form-control,
.cid-v51Rhgu1xC .input-group-btn .btn {
  border-radius: 3px;
}
.cid-v51Rhgu1xC P {
  color: #4284df;
}
.cid-v51RhgHfXg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #050a30;
}
