.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'ProductSans-Regular';
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'ProductSans-Regular';
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'ProductSans-Medium';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'ProductSans-Medium';
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #2dd5f5 !important;
}
.bg-success {
  background-color: #afafaf !important;
}
.bg-info {
  background-color: #f2b040 !important;
}
.bg-warning {
  background-color: #cb3333 !important;
}
.bg-danger {
  background-color: #22a5e5 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2dd5f5 !important;
  border-color: #2dd5f5 !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: #09a4c2 !important;
  border-color: #09a4c2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #09a4c2 !important;
  border-color: #09a4c2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000e2f !important;
  border-color: #000e2f !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f2b040 !important;
  border-color: #f2b040 !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: #cd860e !important;
  border-color: #cd860e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #cd860e !important;
  border-color: #cd860e !important;
}
.btn-success,
.btn-success:active {
  background-color: #afafaf !important;
  border-color: #afafaf !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: #848484 !important;
  border-color: #848484 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #848484 !important;
  border-color: #848484 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cb3333 !important;
  border-color: #cb3333 !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: #862222 !important;
  border-color: #862222 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #862222 !important;
  border-color: #862222 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !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: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !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: #2dd5f5;
  color: #2dd5f5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #09a4c2 !important;
  background-color: transparent!important;
  border-color: #09a4c2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2dd5f5 !important;
  border-color: #2dd5f5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #000e2f;
  color: #000e2f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000e2f !important;
  border-color: #000e2f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #f2b040;
  color: #f2b040;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #cd860e !important;
  background-color: transparent!important;
  border-color: #cd860e !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f2b040 !important;
  border-color: #f2b040 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #afafaf;
  color: #afafaf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #848484 !important;
  background-color: transparent!important;
  border-color: #848484 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #afafaf !important;
  border-color: #afafaf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #cb3333;
  color: #cb3333;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #862222 !important;
  background-color: transparent!important;
  border-color: #862222 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cb3333 !important;
  border-color: #cb3333 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #22a5e5;
  color: #22a5e5;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: #13709e !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #2dd5f5 !important;
}
.text-secondary {
  color: #000e2f !important;
}
.text-success {
  color: #afafaf !important;
}
.text-info {
  color: #f2b040 !important;
}
.text-warning {
  color: #cb3333 !important;
}
.text-danger {
  color: #22a5e5 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0998b3 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #7c7c7c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #bf7d0d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #791f1f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #116690 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #2dd5f5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f2b040;
}
.alert-warning {
  background-color: #cb3333;
}
.alert-danger {
  background-color: #22a5e5;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2dd5f5;
  border-color: #2dd5f5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2dd5f5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0fcfe;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #efefef;
}
.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: #f5d5d5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d9effa;
}
/* Scroll to top button*/
.form-control {
  font-family: 'ProductSans-Medium';
  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: #2dd5f5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'ProductSans-Medium';
  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: #2dd5f5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2dd5f5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2dd5f5;
}
.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: #2dd5f5;
  border-bottom-color: #2dd5f5;
}
.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: #2dd5f5 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000e2f !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='%232dd5f5' %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-twGLQyFfTX .navbar-dropdown {
  position: relative !important;
}
.cid-twGLQyFfTX .navbar-dropdown {
  position: absolute !important;
}
.cid-twGLQyFfTX nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .nav-item {
    margin: 0 !important;
  }
}
.cid-twGLQyFfTX .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-twGLQyFfTX .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-twGLQyFfTX .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-twGLQyFfTX .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twGLQyFfTX .nav-link {
  position: relative;
}
.cid-twGLQyFfTX .container {
  display: flex;
  margin: auto;
}
.cid-twGLQyFfTX .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown-menu,
.cid-twGLQyFfTX .navbar.opened {
  background: #000000 !important;
}
.cid-twGLQyFfTX .nav-item:focus,
.cid-twGLQyFfTX .nav-link:focus {
  outline: none;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twGLQyFfTX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twGLQyFfTX .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-twGLQyFfTX .navbar.opened {
  transition: all 0.3s;
}
.cid-twGLQyFfTX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twGLQyFfTX .navbar .navbar-logo img {
  width: auto;
}
.cid-twGLQyFfTX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar.collapsed {
  justify-content: center;
}
.cid-twGLQyFfTX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twGLQyFfTX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twGLQyFfTX .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-twGLQyFfTX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-twGLQyFfTX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twGLQyFfTX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twGLQyFfTX .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-twGLQyFfTX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twGLQyFfTX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twGLQyFfTX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twGLQyFfTX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-twGLQyFfTX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twGLQyFfTX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twGLQyFfTX .dropdown-item.active,
.cid-twGLQyFfTX .dropdown-item:active {
  background-color: transparent;
}
.cid-twGLQyFfTX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twGLQyFfTX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twGLQyFfTX ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-twGLQyFfTX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twGLQyFfTX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-twGLQyFfTX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar {
    height: 70px;
  }
  .cid-twGLQyFfTX .navbar.opened {
    height: auto;
  }
  .cid-twGLQyFfTX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twGRqpXZfp {
  position: relative;
  overflow: hidden;
}
.cid-twGRqpXZfp svg {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%) scale(1.9, 1.6);
}
.cid-twGRqpXZfp #e2_shape {
  fill: #000000 !important;
}
.cid-twGRqpXZfp .main-text {
  color: #606060;
}
.cid-twGRqpXZfp .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 50rem;
}
.cid-twGRqpXZfp .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: brightness(40%);
}
.cid-twGRqpXZfp .content-block {
  padding: 0.75rem 1rem;
  top: -50%;
  position: relative;
  z-index: 1;
  transform: translateY(50%);
}
.cid-twGRqpXZfp .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-twGRqpXZfp .btn.display-4 {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 16px 24px;
}
.cid-twGRqpXZfp .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twGRqpXZfp .carousel-item.active,
.cid-twGRqpXZfp .carousel-item-next,
.cid-twGRqpXZfp .carousel-item-prev {
  display: flex;
}
.cid-twGRqpXZfp .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: 50px;
}
.cid-twGRqpXZfp .carousel-indicators .active {
  transform: scale(1);
  border: 0;
  background-color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-twGRqpXZfp .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  border-width: 0px;
  transform: scale(0.6);
  opacity: 1;
}
.cid-twGRqpXZfp .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-twGRqpXZfp .carousel-controls {
    display: block;
  }
  .cid-twGRqpXZfp .carousel-controls a {
    transition: opacity 0.5s;
    font-size: 2rem;
  }
  .cid-twGRqpXZfp .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: 0.9;
  }
  .cid-twGRqpXZfp .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-twGRqpXZfp .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-twGRqpXZfp .text-element {
    padding: 1rem;
  }
  .cid-twGRqpXZfp .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-twGRqpXZfp .image-element {
    min-width: 50%;
  }
  .cid-twGRqpXZfp .media-container-row {
    width: 100%;
  }
}
.cid-tzIxpcrSHA {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #000000;
}
.cid-tzIxpcrSHA .filter-tab {
  display: inline-block;
  color: #ffffff;
  background-color: rgba(34, 165, 229, 0);
  border: 0px solid #ffffff;
  cursor: pointer;
  border-radius: 11px;
  padding: 10px 16px;
  transition: all 0.4s ease-out;
  margin-right: 20px;
  font-size: 0.8em;
}
.cid-tzIxpcrSHA #load-more-button {
  border-radius: 100%;
  width: 4em;
  height: 4em;
  background-color: #6f7fad;
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0.6;
  transition: all 0.2s ease-out;
  animation: MoveUpDown 2s ease-in-out infinite;
}
@-webkit-keyframes MoveUpDown {
  0%,
  100% {
    bottom: 0;
  }
  50% {
    bottom: 0.5em;
  }
}
.cid-tzIxpcrSHA #load-more-button > * {
  padding-top: 0.8em;
  font-size: 1.7em;
}
.cid-tzIxpcrSHA #load-more-button:hover {
  transform: scale(1.05, 1.05);
  opacity: 1;
}
.cid-tzIxpcrSHA .filter-tab:hover {
  background-color: rgba(34, 165, 229, 0.2);
  border-color: #ffffff;
}
.cid-tzIxpcrSHA .filter-tab-active {
  background-color: rgba(34, 165, 229, 0.5);
  border-color: #ffffff;
}
.cid-tzIxpcrSHA #filter-content-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.cid-tzIxpcrSHA #filter-content-section > div {
  min-width: 200px;
  vertical-align: top;
  margin: 0 24px 24px 0;
}
.cid-tzIxpcrSHA #filter-content-section * {
  color: #ffffff;
  font-size: 1em;
  margin: 0;
  padding: 0;
}
.cid-tzIxpcrSHA #filter-content-section p {
  padding: 0 0 8px 0;
}
.cid-tzIxpcrSHA #filter-content-section a {
  display: grid;
  aspect-ratio: 1.777;
  overflow: hidden;
  margin-bottom: 14px;
}
.cid-tzIxpcrSHA #filter-content-section img {
  width: 100%;
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1.777;
  transition: all 0.4s ease-out;
}
.cid-tzIxpcrSHA .hover-image-div {
  display: block;
  width: 100%;
  aspect-ratio: 1.777;
  grid-column: 1;
  grid-row: 1;
  background-color: #2689c6;
  opacity: 0;
  background: linear-gradient(180deg, #2689c6, #f7e4d6);
  transition: all 0.4s ease-out;
}
.cid-tzIxpcrSHA #filter-content-section a:hover img {
  transform: scale(1.1);
  aspect-ratio: 1.777;
}
.cid-tzIxpcrSHA #filter-content-section a:hover .hover-image-div {
  opacity: 0.2;
}
.cid-tzIxpcrSHA #filter-tabs-section {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 22px;
}
.cid-tzIxpcrSHA #filter-tabs-section > button {
  margin-bottom: 8px;
}
.cid-tzIxpcrSHA ul {
  font-size: 0;
}
.cid-tzIxpcrSHA .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tzIxpcrSHA .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tzIxpcrSHA .mbr-section-title b:last-child,
.cid-tzIxpcrSHA .mbr-section-title strong:last-child {
  color: #fafafa;
}
@media screen and (max-width: 768px) {
  .cid-tzIxpcrSHA #filter-content-section {
    grid-template-columns: 1fr;
  }
}
.cid-tzIxpcrSHA .mbr-section-title,
.cid-tzIxpcrSHA .mbr-gallery-filter ul {
  color: #2dd5f5;
}
.cid-tzIxpcrSHA ::-webkit-scrollbar {
  width: 10px;
}
.cid-tzIxpcrSHA ::-webkit-scrollbar-button {
  display: none;
}
.cid-tzIxpcrSHA ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}
.cid-tzIxpcrSHA ::-webkit-scrollbar-thumb {
  background: #2689c6;
  border-radius: 10px;
}
.cid-tzIxpcrSHA ::-webkit-scrollbar-thumb:hover {
  background: #47b5ed;
}
.cid-twLC4bUNBI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-twLC4bUNBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-twLC4bUNBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twLC4bUNBI .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-twLC4bUNBI .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li:hover {
  color: #2dd5f5 !important;
}
.cid-twLC4bUNBI .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-twLC4bUNBI .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-twLC4bUNBI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-twLC4bUNBI .soc-item {
    padding: 10px;
  }
}
.cid-twLC4bUNBI .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-twLC4bUNBI .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-twLC4bUNBI .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-twLC4bUNBI .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-twLC4bUNBI .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-twLC4bUNBI .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .copyright {
    text-align: center !important;
  }
}
.cid-twLC4bUNBI p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .row {
    justify-content: flex-start !important;
  }
}
.cid-twLC4bUNBI .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-container {
    margin-bottom: 2rem;
  }
}
.cid-twLC4bUNBI .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-twLC4bUNBI .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-twLC4bUNBI .card-title {
  color: #ffffff;
}
.cid-twLC4bUNBI P {
  color: #22a5e5;
}
.cid-tzHKb5cqpY .navbar-dropdown {
  position: relative !important;
}
.cid-tzHKb5cqpY .navbar-dropdown {
  position: absolute !important;
}
.cid-tzHKb5cqpY nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tzHKb5cqpY .nav-item {
    margin: 0 !important;
  }
}
.cid-tzHKb5cqpY .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-tzHKb5cqpY .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tzHKb5cqpY .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tzHKb5cqpY .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tzHKb5cqpY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzHKb5cqpY .nav-link {
  position: relative;
}
.cid-tzHKb5cqpY .container {
  display: flex;
  margin: auto;
}
.cid-tzHKb5cqpY .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzHKb5cqpY .dropdown-menu,
.cid-tzHKb5cqpY .navbar.opened {
  background: #000000 !important;
}
.cid-tzHKb5cqpY .nav-item:focus,
.cid-tzHKb5cqpY .nav-link:focus {
  outline: none;
}
.cid-tzHKb5cqpY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzHKb5cqpY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzHKb5cqpY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzHKb5cqpY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzHKb5cqpY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzHKb5cqpY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzHKb5cqpY .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tzHKb5cqpY .navbar.opened {
  transition: all 0.3s;
}
.cid-tzHKb5cqpY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzHKb5cqpY .navbar .navbar-logo img {
  width: auto;
}
.cid-tzHKb5cqpY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzHKb5cqpY .navbar.collapsed {
  justify-content: center;
}
.cid-tzHKb5cqpY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzHKb5cqpY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzHKb5cqpY .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tzHKb5cqpY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzHKb5cqpY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzHKb5cqpY .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-tzHKb5cqpY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzHKb5cqpY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzHKb5cqpY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzHKb5cqpY .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tzHKb5cqpY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzHKb5cqpY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzHKb5cqpY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzHKb5cqpY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzHKb5cqpY .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-tzHKb5cqpY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzHKb5cqpY .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tzHKb5cqpY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tzHKb5cqpY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzHKb5cqpY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzHKb5cqpY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzHKb5cqpY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzHKb5cqpY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzHKb5cqpY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzHKb5cqpY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzHKb5cqpY .dropdown-item.active,
.cid-tzHKb5cqpY .dropdown-item:active {
  background-color: transparent;
}
.cid-tzHKb5cqpY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzHKb5cqpY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzHKb5cqpY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzHKb5cqpY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzHKb5cqpY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzHKb5cqpY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzHKb5cqpY ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tzHKb5cqpY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzHKb5cqpY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tzHKb5cqpY button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tzHKb5cqpY button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tzHKb5cqpY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzHKb5cqpY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzHKb5cqpY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzHKb5cqpY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzHKb5cqpY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzHKb5cqpY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzHKb5cqpY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzHKb5cqpY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzHKb5cqpY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzHKb5cqpY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tzHKb5cqpY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzHKb5cqpY .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-tzHKb5cqpY .navbar {
    height: 70px;
  }
  .cid-tzHKb5cqpY .navbar.opened {
    height: auto;
  }
  .cid-tzHKb5cqpY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzHKb5Lm9w {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzHKb5Lm9w .link a {
  background-image: none !important;
}
.cid-tzHKb5Lm9w .item-wrapper {
  margin-bottom: 56px;
}
.cid-tzHKb5Lm9w .date {
  margin-bottom: 6px;
}
.cid-tzHKb5Lm9w .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tzHKb5Lm9w .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tzHKb5Lm9w a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tzHKb5Lm9w rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tzHKb5Lm9w .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tzHKb5Lm9w svg {
  margin-left: 15px;
}
.cid-tzHKb5Lm9w path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tzHKb5Lm9w .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tzHKb5Lm9w .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tzHKb5Lm9w .row {
  justify-content: center;
}
.cid-tzHKb5Lm9w .p,
.cid-tzHKb5Lm9w .link {
  color: #767676;
}
.cid-tzHKb6cYqR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tzHKb6cYqR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzHKb6cYqR .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-tzHKb6cYqR .container {
    padding: 0 30px;
  }
}
.cid-tzHKb6cYqR .row {
  justify-content: center;
}
.cid-tzHKb6cYqR .title-wrapper {
  margin-bottom: 55px;
}
.cid-tzHKb6cYqR .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzHKb6cYqR .card {
    margin-bottom: 30px;
  }
}
.cid-tzHKb6cYqR .card .card-wrapper {
  display: flex;
}
.cid-tzHKb6cYqR .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tzHKb6cYqR .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tzHKb6cYqR .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tzHKb6cYqR .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tzHKb6cYqR .mbr-section-title {
  color: #767676;
}
.cid-tzHKb6cYqR .mbr-number {
  color: #000000;
}
.cid-tzHKb6cYqR .mbr-card-title {
  color: #1070b9;
}
.cid-tzHKb6cYqR .mbr-text {
  color: #767676;
}
.cid-tzHKb6BeUX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzHKb6BeUX .mbr-section-title {
  color: #1070b9;
}
.cid-tzHKb6BeUX .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tzHKb6BeUX .row {
  justify-content: space-between;
}
.cid-tzHKb6BeUX .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tzHKb6BeUX .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tzHKb6BeUX .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tzHKb6BeUX .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tzHKb6BeUX .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tzHKb6BeUX .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tzHKb6BeUX .link-wrapper {
    justify-content: center;
  }
}
.cid-tzHKb6BeUX .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tzHKb6BeUX .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tzHKb6BeUX .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tzHKb6BeUX .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tzHKb6BeUX .link,
.cid-tzHKb6BeUX .link-icon {
  color: #000000;
}
.cid-tzHKb6BeUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzHKb6BeUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzHKb6BeUX .mbr-text,
.cid-tzHKb6BeUX .mbr-section-btn {
  color: #767676;
}
.cid-tzHKb6Zrey {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzHKb6Zrey .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tzHKb6Zrey .text-block {
  position: relative;
  z-index: 0;
}
.cid-tzHKb6Zrey .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tzHKb6Zrey .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tzHKb6Zrey .box {
  right: 20%;
}
.cid-tzHKb6Zrey .text-box {
  right: 0;
}
.cid-tzHKb6Zrey .mbr-section-title,
.cid-tzHKb6Zrey .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tzHKb6Zrey .text-box {
    display: none;
  }
  .cid-tzHKb6Zrey .mbr-section-title,
  .cid-tzHKb6Zrey .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tzHKb6Zrey .box {
    display: none;
  }
  .cid-tzHKb6Zrey .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tzHKb6Zrey .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzHKb6Zrey .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tzHKb6Zrey .mbr-section-text {
  color: #767676;
}
.cid-tzHKb6Zrey .mbr-section-title {
  color: #1070b9;
}
.cid-tzHKb7PlUm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tzHKb7PlUm .carousel {
    overflow: hidden;
  }
  .cid-tzHKb7PlUm .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tzHKb7PlUm .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tzHKb7PlUm .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tzHKb7PlUm .carousel,
.cid-tzHKb7PlUm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tzHKb7PlUm .item-wrapper {
  height: 100%;
  width: 100%;
}
.cid-tzHKb7PlUm .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tzHKb7PlUm .carousel-caption {
  bottom: 40px;
}
.cid-tzHKb7PlUm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tzHKb7PlUm .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tzHKb7PlUm .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tzHKb7PlUm .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tzHKb7PlUm .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tzHKb7PlUm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzHKb7PlUm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzHKb7PlUm .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzHKb7PlUm .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tzHKb7PlUm .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzHKb7PlUm .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tzHKb7PlUm .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tzHKb7PlUm .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tzHKb7PlUm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tzHKb7PlUm .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tzHKb7PlUm .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tzHKb7PlUm .soc-item::before,
.cid-tzHKb7PlUm .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tzHKb7PlUm .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tzHKb7PlUm .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tzHKb7PlUm .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tzHKb7PlUm .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tzHKb7PlUm .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tzHKb7PlUm .text {
  color: #ddc499;
}
.cid-tzHKb7PlUm .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB5apTvz8 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB5apTvz8 .carousel {
    overflow: hidden;
  }
  .cid-tGB5apTvz8 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB5apTvz8 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB5apTvz8 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB5apTvz8 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB5apTvz8 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB5apTvz8 .link-div {
  margin-left: 20px;
}
.cid-tGB5apTvz8 .link-div h3 {
  margin-left: 4px;
}
.cid-tGB5apTvz8 .mbr-card-title {
  color: #000e2f;
}
#custom-html-4j {
  /* Type valid CSS here */
}
#custom-html-4j .back-button {
  position: fixed;
}
.cid-tzHKb8OmwT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tzHKb8OmwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzHKb8OmwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzHKb8OmwT .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzHKb8OmwT .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tzHKb8OmwT .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tzHKb8OmwT .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tzHKb8OmwT .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tzHKb8OmwT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzHKb8OmwT .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tzHKb8OmwT .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzHKb8OmwT .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tzHKb8OmwT .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tzHKb8OmwT .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tzHKb8OmwT .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tzHKb8OmwT .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tzHKb8OmwT .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tzHKb8OmwT .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tzHKb8OmwT .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tzHKb8OmwT .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tzHKb8OmwT .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tzHKb8OmwT .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tzHKb8OmwT .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tzHKb8OmwT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tzHKb8OmwT .soc-item {
    padding: 10px;
  }
}
.cid-tzHKb8OmwT .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tzHKb8OmwT .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tzHKb8OmwT .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tzHKb8OmwT .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tzHKb8OmwT .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tzHKb8OmwT .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tzHKb8OmwT .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tzHKb8OmwT .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tzHKb8OmwT .copyright {
    text-align: center !important;
  }
}
.cid-tzHKb8OmwT p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tzHKb8OmwT .row {
    justify-content: flex-start !important;
  }
}
.cid-tzHKb8OmwT .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tzHKb8OmwT .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tzHKb8OmwT .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tzHKb8OmwT .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tzHKb8OmwT .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tzHKb8OmwT .card-title {
  color: #ffffff;
}
.cid-tzHKb8OmwT P {
  color: #22a5e5;
}
.cid-twGLQyFfTX .navbar-dropdown {
  position: relative !important;
}
.cid-twGLQyFfTX .navbar-dropdown {
  position: absolute !important;
}
.cid-twGLQyFfTX nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .nav-item {
    margin: 0 !important;
  }
}
.cid-twGLQyFfTX .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-twGLQyFfTX .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-twGLQyFfTX .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-twGLQyFfTX .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twGLQyFfTX .nav-link {
  position: relative;
}
.cid-twGLQyFfTX .container {
  display: flex;
  margin: auto;
}
.cid-twGLQyFfTX .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown-menu,
.cid-twGLQyFfTX .navbar.opened {
  background: #000000 !important;
}
.cid-twGLQyFfTX .nav-item:focus,
.cid-twGLQyFfTX .nav-link:focus {
  outline: none;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twGLQyFfTX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twGLQyFfTX .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-twGLQyFfTX .navbar.opened {
  transition: all 0.3s;
}
.cid-twGLQyFfTX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twGLQyFfTX .navbar .navbar-logo img {
  width: auto;
}
.cid-twGLQyFfTX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar.collapsed {
  justify-content: center;
}
.cid-twGLQyFfTX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twGLQyFfTX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twGLQyFfTX .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-twGLQyFfTX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-twGLQyFfTX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twGLQyFfTX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twGLQyFfTX .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-twGLQyFfTX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twGLQyFfTX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twGLQyFfTX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twGLQyFfTX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-twGLQyFfTX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twGLQyFfTX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twGLQyFfTX .dropdown-item.active,
.cid-twGLQyFfTX .dropdown-item:active {
  background-color: transparent;
}
.cid-twGLQyFfTX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twGLQyFfTX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twGLQyFfTX ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-twGLQyFfTX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twGLQyFfTX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-twGLQyFfTX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar {
    height: 70px;
  }
  .cid-twGLQyFfTX .navbar.opened {
    height: auto;
  }
  .cid-twGLQyFfTX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twHh0IUgjP {
  overflow: hidden;
  background-image: url("../../../assets/images/13-1920x1080.webp");
  padding-top: 45px;
  padding-bottom: 135px;
  height: 100vh;
}
.cid-twHh0IUgjP P {
  color: #767676;
}
.cid-twHh0IUgjP video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.cid-twHh0IUgjP .mbr-text,
.cid-twHh0IUgjP .mbr-section-btn {
  color: #ffffff;
}
.cid-twHh0IUgjP .mbr-overlay {
  z-index: 1;
}
.cid-twHh0IUgjP .container {
  z-index: 2;
}
.cid-twHh0IUgjP H1 {
  color: #ffffff;
}
@media (pointer: coarse) and (hover: none) {
  .cid-twHh0IUgjP video {
    display: none;
  }
}
.cid-twHh0IUgjP H3 {
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .cid-twHh0IUgjP {
    height: 70vh;
  }
  .cid-twHh0IUgjP .video-container {
    min-height: 70vh;
    max-height: 70vh;
  }
}
@media only screen and (max-width: 480px) {
  .cid-twHh0IUgjP {
    height: 50vh;
  }
  .cid-twHh0IUgjP .video-container {
    min-height: 50vh;
    max-height: 50vh;
  }
}
.cid-tzN1NgcNP6 {
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-tzN1NgcNP6 .form-title,
  .cid-tzN1NgcNP6 .form-wrapper {
    padding: 0;
  }
}
.cid-tzN1NgcNP6 .form-and-image > * {
  margin-bottom: 20px;
}
.cid-tzN1NgcNP6 .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-tzN1NgcNP6 .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-tzN1NgcNP6 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tzN1NgcNP6 .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tzN1NgcNP6 .mbr-form {
    margin: 0 30px;
  }
}
.cid-tzN1NgcNP6 .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tzN1NgcNP6 .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tzN1NgcNP6 .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-tzN1NgcNP6 .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-tzN1NgcNP6 .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #2dd5f5 !important;
  border-radius: 0;
}
.cid-tzN1NgcNP6 .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #ffffff !important;
}
.cid-tzN1NgcNP6 .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #ffffff !important;
}
.cid-tzN1NgcNP6 .mbr-section-title {
  color: #22a5e5;
}
.cid-tzN1NgcNP6 .mbr-section-subtitle {
  color: #2dd5f5;
}
.cid-tzN1NgcNP6 input:focus,
.cid-tzN1NgcNP6 input,
.cid-tzN1NgcNP6 textarea:focus,
.cid-tzN1NgcNP6 textarea {
  color: white;
}
.cid-tzHOBi4eGC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tzHOBi4eGC .contact-border {
  border-bottom: 2px solid #000000;
}
.cid-tzHOBi4eGC .contact-decoration {
  color: #e8ebe8;
  font-size: 150px;
  line-height: 180px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #babbbd, -1px 0 0 #babbbd, 1px 0 0 #babbbd, 0 -1px 0 #babbbd;
  text-align: center;
}
.cid-tzHOBi4eGC .contact-border {
  padding: 80px 0;
}
.cid-tzHOBi4eGC .contact-button {
  width: 150px;
  height: 50px;
  margin-top: 16px;
}
@media (max-width: 991px) {
  .cid-tzHOBi4eGC .contact-decoration {
    font-size: 90px;
    line-height: 150px;
  }
}
@media (max-width: 768px) {
  .cid-tzHOBi4eGC .contact-decoration {
    font-size: 68px;
    line-height: 90px;
  }
  .cid-tzHOBi4eGC .contact-button {
    width: 200px;
    height: 74px;
  }
  .cid-tzHOBi4eGC .contact-border {
    padding: 60px 0;
  }
}
@media (max-width: 425px) {
  .cid-tzHOBi4eGC .contact-decoration {
    font-size: 40px;
    line-height: 70px;
  }
  .cid-tzHOBi4eGC .contact-button {
    width: 250px;
    height: 64px;
  }
  .cid-tzHOBi4eGC .contact-border {
    padding: 40px 0;
  }
}
@media (max-width: 375px) {
  .cid-tzHOBi4eGC .contact-decoration {
    font-size: 35px;
  }
}
@media (max-width: 320px) {
  .cid-tzHOBi4eGC .contact-decoration {
    font-size: 28px;
  }
  .cid-tzHOBi4eGC .contact-button {
    width: 220px;
    height: 60px;
  }
  .cid-tzHOBi4eGC .contact-container {
    padding: 20px 0;
  }
}
.cid-tzHOBi4eGC .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tzHOBi4eGC .mbr-section-title {
  color: #2dd5f5;
}
.cid-tzHRi6jNLM {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #000000;
}
.cid-tzHRi6jNLM p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tzHRi6jNLM .row {
    justify-content: flex-start !important;
  }
}
.cid-tzHRi6jNLM .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-tzHRi6jNLM .mbr-section-title {
  text-align: center;
  color: #2dd5f5;
}
.cid-tzHRi6jNLM .mbr-section-subtitle {
  text-align: center;
}
.cid-tzHRi6jNLM .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tzHRi6jNLM .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tzHRi6jNLM .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tzHRi6jNLM .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tzHRi6jNLM .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tzHRi6jNLM .card-title {
  color: #ffffff;
}
.cid-tzHRi6jNLM P {
  color: #22a5e5;
}
.cid-tzHNuVaZ2H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #000000;
}
.cid-tzHNuVaZ2H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzHNuVaZ2H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzHNuVaZ2H .google-map {
  height: 30rem;
  position: relative;
}
.cid-tzHNuVaZ2H .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tzHNuVaZ2H .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tzHNuVaZ2H .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tzHNuVaZ2H .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tzHNuVaZ2H .mbr-section-title {
  color: #ffffff;
}
.cid-tzHNuVaZ2H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-twLC4bUNBI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-twLC4bUNBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-twLC4bUNBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twLC4bUNBI .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-twLC4bUNBI .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li:hover {
  color: #2dd5f5 !important;
}
.cid-twLC4bUNBI .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-twLC4bUNBI .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-twLC4bUNBI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-twLC4bUNBI .soc-item {
    padding: 10px;
  }
}
.cid-twLC4bUNBI .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-twLC4bUNBI .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-twLC4bUNBI .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-twLC4bUNBI .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-twLC4bUNBI .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-twLC4bUNBI .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .copyright {
    text-align: center !important;
  }
}
.cid-twLC4bUNBI p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .row {
    justify-content: flex-start !important;
  }
}
.cid-twLC4bUNBI .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-container {
    margin-bottom: 2rem;
  }
}
.cid-twLC4bUNBI .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-twLC4bUNBI .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-twLC4bUNBI .card-title {
  color: #ffffff;
}
.cid-twLC4bUNBI P {
  color: #22a5e5;
}
.cid-tzMrUs2bvW {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #161f2d;
}
.cid-tzMrUs2bvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzMrUs2bvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzMrUs2bvW .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzMrUs2bvW .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tzMrUs2bvW .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tzMrUs2bvW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tzMrUs2bvW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tzMrUs2bvW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzMrUs2bvW .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tzMrUs2bvW .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzMrUs2bvW .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tzMrUs2bvW .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tzMrUs2bvW .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tzMrUs2bvW .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tzMrUs2bvW .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tzMrUs2bvW .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tzMrUs2bvW .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tzMrUs2bvW .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tzMrUs2bvW .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tzMrUs2bvW .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tzMrUs2bvW .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tzMrUs2bvW .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tzMrUs2bvW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tzMrUs2bvW .soc-item {
    padding: 10px;
  }
}
.cid-tzMrUs2bvW .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tzMrUs2bvW .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
.cid-tzMrUs2bvW .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tzMrUs2bvW .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tzMrUs2bvW .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tzMrUs2bvW .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-tzMrUs2bvW .border-item {
    margin-top: 1.5rem;
  }
}
.cid-tzMrUs2bvW .copyright {
  color: #FFFFFF;
  font-size: 0.8em;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tzMrUs2bvW .copyright {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-tzMrUs2bvW .copyright {
    margin-top: 1.5rem;
  }
}
.cid-tzMrUs2bvW p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tzMrUs2bvW .row {
    justify-content: flex-start !important;
  }
}
.cid-tzMrUs2bvW .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tzMrUs2bvW .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tzMrUs2bvW .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tzMrUs2bvW .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tzMrUs2bvW .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tzMrUs2bvW .card-title {
  color: #ffffff;
}
.cid-tzMrUs2bvW P {
  color: #22a5e5;
}
.cid-txmVxbdOc8 .navbar-dropdown {
  position: relative !important;
}
.cid-txmVxbdOc8 .navbar-dropdown {
  position: absolute !important;
}
.cid-txmVxbdOc8 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-txmVxbdOc8 .nav-item {
    margin: 0 !important;
  }
}
.cid-txmVxbdOc8 .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-txmVxbdOc8 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-txmVxbdOc8 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-txmVxbdOc8 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-txmVxbdOc8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txmVxbdOc8 .nav-link {
  position: relative;
}
.cid-txmVxbdOc8 .container {
  display: flex;
  margin: auto;
}
.cid-txmVxbdOc8 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-txmVxbdOc8 .dropdown-menu,
.cid-txmVxbdOc8 .navbar.opened {
  background: #000000 !important;
}
.cid-txmVxbdOc8 .nav-item:focus,
.cid-txmVxbdOc8 .nav-link:focus {
  outline: none;
}
.cid-txmVxbdOc8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txmVxbdOc8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txmVxbdOc8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txmVxbdOc8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txmVxbdOc8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txmVxbdOc8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txmVxbdOc8 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-txmVxbdOc8 .navbar.opened {
  transition: all 0.3s;
}
.cid-txmVxbdOc8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txmVxbdOc8 .navbar .navbar-logo img {
  width: auto;
}
.cid-txmVxbdOc8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txmVxbdOc8 .navbar.collapsed {
  justify-content: center;
}
.cid-txmVxbdOc8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txmVxbdOc8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txmVxbdOc8 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txmVxbdOc8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txmVxbdOc8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txmVxbdOc8 .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-txmVxbdOc8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txmVxbdOc8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-txmVxbdOc8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-txmVxbdOc8 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-txmVxbdOc8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txmVxbdOc8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txmVxbdOc8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txmVxbdOc8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txmVxbdOc8 .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-txmVxbdOc8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txmVxbdOc8 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-txmVxbdOc8 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txmVxbdOc8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txmVxbdOc8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txmVxbdOc8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txmVxbdOc8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-txmVxbdOc8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txmVxbdOc8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txmVxbdOc8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txmVxbdOc8 .dropdown-item.active,
.cid-txmVxbdOc8 .dropdown-item:active {
  background-color: transparent;
}
.cid-txmVxbdOc8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txmVxbdOc8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txmVxbdOc8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txmVxbdOc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-txmVxbdOc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txmVxbdOc8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txmVxbdOc8 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-txmVxbdOc8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txmVxbdOc8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-txmVxbdOc8 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-txmVxbdOc8 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-txmVxbdOc8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txmVxbdOc8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txmVxbdOc8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txmVxbdOc8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txmVxbdOc8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txmVxbdOc8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txmVxbdOc8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txmVxbdOc8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txmVxbdOc8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txmVxbdOc8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-txmVxbdOc8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txmVxbdOc8 .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-txmVxbdOc8 .navbar {
    height: 70px;
  }
  .cid-txmVxbdOc8 .navbar.opened {
    height: auto;
  }
  .cid-txmVxbdOc8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txmVxbweXL {
  background-color: #000e2f;
}
.cid-txmVxbweXL #spline-iframe {
  position: absolute;
}
.cid-txmVxbweXL .mbr-text,
.cid-txmVxbweXL .typed-text,
.cid-txmVxbweXL .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-txmVxbweXL .row {
  backdrop-filter: blur(10px);
  border: 0px solid white;
  padding-left: 20px;
  padding-right: 20px;
  align: center;
}
.cid-txmVxbweXL .btn {
  margin-left: 4px !important;
}
.cid-txmVxbweXL .animated-element {
  color: #2dd5f5;
}
.cid-txmVxbweXL .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #2dd5f5;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-txmVxbweXL .mbr-section-subtitle {
  text-align: left;
}
.cid-txmVxbweXL .mbr-section-text,
.cid-txmVxbweXL .mbr-section-btn {
  text-align: left;
}
.cid-tJTm3aDuvo {
  background-image: url("../../../assets/images/color01.webp");
  background-position: center;
}
.cid-tJTm3aDuvo .wrapper {
  backdrop-filter: blur(5px);
  position: relative;
  border-top: 1px solid #1070b9;
  border-right: 1px solid #1070b9;
  border-left: 1px solid #1070b9;
  padding: 2.5rem 1.5rem;
}
.cid-tJTm3aDuvo .wrapper:before {
  content: "";
  background: #1070b9;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 1px;
  right: 0;
}
.cid-tJTm3aDuvo .wrapper:after {
  content: "";
  background: #1070b9;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 1px;
  left: 0;
}
.cid-tJTm3aDuvo img {
  position: absolute;
  left: 10%;
  bottom: -15px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tJTm3aDuvo .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tJTm3aDuvo .mbr-section-title {
  color: #2dd5f5;
}
.cid-tJTm3aDuvo .mbr-text,
.cid-tJTm3aDuvo .button-align,
.cid-tJTm3aDuvo .list {
  text-align: left;
}
.cid-tJTm88qn8H {
  background-image: url("../../../assets/images/comp01.webp");
  background-position: center;
}
.cid-tJTm88qn8H .wrapper {
  backdrop-filter: blur(4px);
  position: relative;
  border-top: 1px solid #062448;
  border-right: 1px solid #062448;
  border-left: 1px solid #062448;
  padding: 2.5rem 2.5rem;
}
.cid-tJTm88qn8H .wrapper:before {
  content: "";
  background: #062448;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 1px;
  right: 0;
}
.cid-tJTm88qn8H .wrapper:after {
  content: "";
  background: #062448;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 1px;
  left: 0;
}
.cid-tJTm88qn8H img {
  position: absolute;
  left: 10%;
  bottom: -15px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tJTm88qn8H .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tJTm88qn8H H1 {
  color: #2dd5f5;
  text-align: left;
}
.cid-tJTmc0fhiO {
  background-image: url("../../../assets/images/comp03.webp");
  background-position: center;
}
.cid-tJTmc0fhiO .wrapper {
  backdrop-filter: blur(10px);
  position: relative;
  border-top: 1px solid #ab4828;
  border-right: 1px solid #ab4828;
  border-left: 1px solid #ab4828;
  padding: 2.5rem 2.5rem;
}
.cid-tJTmc0fhiO .wrapper:before {
  content: "";
  background: #ab4828;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 1px;
  right: 0;
}
.cid-tJTmc0fhiO .wrapper:after {
  content: "";
  background: #ab4828;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 1px;
  left: 0;
}
.cid-tJTmc0fhiO img {
  position: absolute;
  left: 10%;
  bottom: -30px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tJTmc0fhiO .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tJTmc0fhiO H1 {
  color: #2dd5f5;
}
.cid-tJTmoyof8l {
  background-image: url("../../../assets/images/comp06.webp");
  background-position: center;
}
.cid-tJTmoyof8l .wrapper {
  backdrop-filter: blur(10px);
  position: relative;
  border-top: 1px solid #003056;
  border-right: 1px solid #003056;
  border-left: 1px solid #003056;
  padding: 2.5rem 2.5rem;
}
.cid-tJTmoyof8l .wrapper:before {
  content: "";
  background: #003056;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 1px;
  right: 0;
}
.cid-tJTmoyof8l .wrapper:after {
  content: "";
  background: #003056;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 1px;
  left: 0;
}
.cid-tJTmoyof8l img {
  position: absolute;
  left: 10%;
  bottom: -15px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tJTmoyof8l .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tJTmoyof8l H1 {
  color: #2dd5f5;
}
.cid-tJTmg28JRN {
  background-image: url("../../../assets/images/comp07.webp");
  background-position: center;
}
.cid-tJTmg28JRN .wrapper {
  backdrop-filter: blur(10px);
  position: relative;
  border-top: 1px solid #a78c17;
  border-right: 1px solid #a78c17;
  border-left: 1px solid #a78c17;
  padding: 2.5rem 2.5rem;
}
.cid-tJTmg28JRN .wrapper:before {
  content: "";
  background: #a78c17;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 1px;
  right: 0;
}
.cid-tJTmg28JRN .wrapper:after {
  content: "";
  background: #a78c17;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 1px;
  left: 0;
}
.cid-tJTmg28JRN img {
  position: absolute;
  left: 10%;
  bottom: -15px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tJTmg28JRN .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tJTmg28JRN H1 {
  color: #2dd5f5;
  text-align: left;
}
.cid-tJTml3gVuW {
  background-image: url("../../../assets/images/comp02.webp");
  background-position: center;
}
.cid-tJTml3gVuW .wrapper {
  backdrop-filter: blur(10px);
  position: relative;
  border-top: 1px solid #a32222;
  border-right: 1px solid #a32222;
  border-left: 1px solid #a32222;
  padding: 2.5rem 2.5rem;
}
.cid-tJTml3gVuW .wrapper:before {
  content: "";
  background: #a32222;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 1px;
  right: 0;
}
.cid-tJTml3gVuW .wrapper:after {
  content: "";
  background: #a32222;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 1px;
  left: 0;
}
.cid-tJTml3gVuW img {
  position: absolute;
  left: 10%;
  bottom: -15px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-tJTml3gVuW .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-tJTml3gVuW H1 {
  color: #2dd5f5;
  text-align: left;
}
.cid-txmVxdxIjf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-txmVxdxIjf .mbr-fallback-image.disabled {
  display: none;
}
.cid-txmVxdxIjf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txmVxdxIjf .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txmVxdxIjf .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-txmVxdxIjf .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-txmVxdxIjf .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-txmVxdxIjf .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-txmVxdxIjf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-txmVxdxIjf .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-txmVxdxIjf .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-txmVxdxIjf .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-txmVxdxIjf .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-txmVxdxIjf .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-txmVxdxIjf .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-txmVxdxIjf .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-txmVxdxIjf .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-txmVxdxIjf .list li:hover {
  color: #2dd5f5 !important;
}
.cid-txmVxdxIjf .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-txmVxdxIjf .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-txmVxdxIjf .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-txmVxdxIjf .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-txmVxdxIjf .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-txmVxdxIjf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-txmVxdxIjf .soc-item {
    padding: 10px;
  }
}
.cid-txmVxdxIjf .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-txmVxdxIjf .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-txmVxdxIjf .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-txmVxdxIjf .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-txmVxdxIjf .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-txmVxdxIjf .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-txmVxdxIjf .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-txmVxdxIjf .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txmVxdxIjf .copyright {
    text-align: center !important;
  }
}
.cid-txmVxdxIjf p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-txmVxdxIjf .row {
    justify-content: flex-start !important;
  }
}
.cid-txmVxdxIjf .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-txmVxdxIjf .card-container {
    margin-bottom: 2rem;
  }
}
.cid-txmVxdxIjf .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-txmVxdxIjf .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-txmVxdxIjf .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-txmVxdxIjf .card-title {
  color: #ffffff;
}
.cid-txmVxdxIjf P {
  color: #22a5e5;
}
.cid-tzIBcxd5Bg .navbar-dropdown {
  position: relative !important;
}
.cid-tzIBcxd5Bg .navbar-dropdown {
  position: absolute !important;
}
.cid-tzIBcxd5Bg nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tzIBcxd5Bg .nav-item {
    margin: 0 !important;
  }
}
.cid-tzIBcxd5Bg .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-tzIBcxd5Bg .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tzIBcxd5Bg .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tzIBcxd5Bg .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tzIBcxd5Bg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzIBcxd5Bg .nav-link {
  position: relative;
}
.cid-tzIBcxd5Bg .container {
  display: flex;
  margin: auto;
}
.cid-tzIBcxd5Bg .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzIBcxd5Bg .dropdown-menu,
.cid-tzIBcxd5Bg .navbar.opened {
  background: #000000 !important;
}
.cid-tzIBcxd5Bg .nav-item:focus,
.cid-tzIBcxd5Bg .nav-link:focus {
  outline: none;
}
.cid-tzIBcxd5Bg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzIBcxd5Bg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzIBcxd5Bg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzIBcxd5Bg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzIBcxd5Bg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzIBcxd5Bg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzIBcxd5Bg .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tzIBcxd5Bg .navbar.opened {
  transition: all 0.3s;
}
.cid-tzIBcxd5Bg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzIBcxd5Bg .navbar .navbar-logo img {
  width: auto;
}
.cid-tzIBcxd5Bg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzIBcxd5Bg .navbar.collapsed {
  justify-content: center;
}
.cid-tzIBcxd5Bg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzIBcxd5Bg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzIBcxd5Bg .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tzIBcxd5Bg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzIBcxd5Bg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzIBcxd5Bg .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-tzIBcxd5Bg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzIBcxd5Bg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzIBcxd5Bg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzIBcxd5Bg .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tzIBcxd5Bg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzIBcxd5Bg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzIBcxd5Bg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzIBcxd5Bg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzIBcxd5Bg .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-tzIBcxd5Bg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzIBcxd5Bg .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tzIBcxd5Bg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tzIBcxd5Bg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzIBcxd5Bg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzIBcxd5Bg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzIBcxd5Bg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzIBcxd5Bg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzIBcxd5Bg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzIBcxd5Bg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzIBcxd5Bg .dropdown-item.active,
.cid-tzIBcxd5Bg .dropdown-item:active {
  background-color: transparent;
}
.cid-tzIBcxd5Bg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzIBcxd5Bg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzIBcxd5Bg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzIBcxd5Bg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzIBcxd5Bg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzIBcxd5Bg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzIBcxd5Bg ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tzIBcxd5Bg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzIBcxd5Bg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tzIBcxd5Bg button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tzIBcxd5Bg button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tzIBcxd5Bg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzIBcxd5Bg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzIBcxd5Bg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzIBcxd5Bg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzIBcxd5Bg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzIBcxd5Bg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzIBcxd5Bg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzIBcxd5Bg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzIBcxd5Bg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzIBcxd5Bg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tzIBcxd5Bg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzIBcxd5Bg .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-tzIBcxd5Bg .navbar {
    height: 70px;
  }
  .cid-tzIBcxd5Bg .navbar.opened {
    height: auto;
  }
  .cid-tzIBcxd5Bg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzIBcxJAWD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzIBcxJAWD .link a {
  background-image: none !important;
}
.cid-tzIBcxJAWD .item-wrapper {
  margin-bottom: 56px;
}
.cid-tzIBcxJAWD .date {
  margin-bottom: 6px;
}
.cid-tzIBcxJAWD .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tzIBcxJAWD .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tzIBcxJAWD a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tzIBcxJAWD rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tzIBcxJAWD .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tzIBcxJAWD svg {
  margin-left: 15px;
}
.cid-tzIBcxJAWD path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tzIBcxJAWD .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tzIBcxJAWD .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tzIBcxJAWD .row {
  justify-content: center;
}
.cid-tzIBcxJAWD .p,
.cid-tzIBcxJAWD .link {
  color: #767676;
}
.cid-tzIBcyl8Lm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tzIBcyl8Lm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzIBcyl8Lm .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-tzIBcyl8Lm .container {
    padding: 0 30px;
  }
}
.cid-tzIBcyl8Lm .row {
  justify-content: center;
}
.cid-tzIBcyl8Lm .title-wrapper {
  margin-bottom: 55px;
}
.cid-tzIBcyl8Lm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzIBcyl8Lm .card {
    margin-bottom: 30px;
  }
}
.cid-tzIBcyl8Lm .card .card-wrapper {
  display: flex;
}
.cid-tzIBcyl8Lm .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tzIBcyl8Lm .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tzIBcyl8Lm .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tzIBcyl8Lm .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tzIBcyl8Lm .mbr-section-title {
  color: #767676;
}
.cid-tzIBcyl8Lm .mbr-number {
  color: #000000;
}
.cid-tzIBcyl8Lm .mbr-card-title {
  color: #1070b9;
}
.cid-tzIBcyl8Lm .mbr-text {
  color: #767676;
}
.cid-tzIBcyMd0V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzIBcyMd0V .mbr-section-title {
  color: #1070b9;
}
.cid-tzIBcyMd0V .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tzIBcyMd0V .row {
  justify-content: space-between;
}
.cid-tzIBcyMd0V .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tzIBcyMd0V .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tzIBcyMd0V .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tzIBcyMd0V .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tzIBcyMd0V .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tzIBcyMd0V .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tzIBcyMd0V .link-wrapper {
    justify-content: center;
  }
}
.cid-tzIBcyMd0V .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tzIBcyMd0V .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tzIBcyMd0V .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tzIBcyMd0V .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tzIBcyMd0V .link,
.cid-tzIBcyMd0V .link-icon {
  color: #000000;
}
.cid-tzIBcyMd0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzIBcyMd0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzIBcyMd0V .mbr-text,
.cid-tzIBcyMd0V .mbr-section-btn {
  color: #767676;
}
.cid-tzIBczeMmO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzIBczeMmO .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tzIBczeMmO .text-block {
  position: relative;
  z-index: 0;
}
.cid-tzIBczeMmO .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tzIBczeMmO .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tzIBczeMmO .box {
  right: 20%;
}
.cid-tzIBczeMmO .text-box {
  right: 0;
}
.cid-tzIBczeMmO .mbr-section-title,
.cid-tzIBczeMmO .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tzIBczeMmO .text-box {
    display: none;
  }
  .cid-tzIBczeMmO .mbr-section-title,
  .cid-tzIBczeMmO .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tzIBczeMmO .box {
    display: none;
  }
  .cid-tzIBczeMmO .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tzIBczeMmO .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzIBczeMmO .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tzIBczeMmO .mbr-section-text {
  color: #767676;
}
.cid-tzIBczeMmO .mbr-section-title {
  color: #1070b9;
}
.cid-tzIBczIOyt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzIBczIOyt .box {
  margin-bottom: 15px;
}
.cid-tzIBczIOyt .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tzIBczIOyt .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tzIBczIOyt .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tzIBczIOyt .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tzIBczIOyt .mbr-media {
    max-height: 432px;
  }
}
.cid-tzIBczIOyt .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tzIBczIOyt .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tzIBczIOyt .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tzIBczIOyt .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tzIBczIOyt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tzIBczIOyt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tzIBczIOyt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tzIBczIOyt .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tzIBczIOyt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tzIBczIOyt .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tzIBczIOyt .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tzIBczIOyt .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tzIBczIOyt .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tzIBczIOyt .item-img {
  overflow: hidden;
}
.cid-tzIBczIOyt .item-img img {
  width: 100%;
}
.cid-tzIBczIOyt .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tzIBczIOyt .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tzIBczIOyt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzIBczIOyt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzIBcArPlP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tzIBcArPlP .carousel {
    overflow: hidden;
  }
  .cid-tzIBcArPlP .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tzIBcArPlP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tzIBcArPlP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tzIBcArPlP .carousel,
.cid-tzIBcArPlP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tzIBcArPlP .item-wrapper {
  height: 100%;
  width: 100%;
}
.cid-tzIBcArPlP .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tzIBcArPlP .carousel-caption {
  bottom: 40px;
}
.cid-tzIBcArPlP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tzIBcArPlP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tzIBcArPlP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tzIBcArPlP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tzIBcArPlP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tzIBcArPlP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzIBcArPlP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzIBcArPlP .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzIBcArPlP .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tzIBcArPlP .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzIBcArPlP .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tzIBcArPlP .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tzIBcArPlP .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tzIBcArPlP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tzIBcArPlP .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tzIBcArPlP .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tzIBcArPlP .soc-item::before,
.cid-tzIBcArPlP .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tzIBcArPlP .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tzIBcArPlP .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tzIBcArPlP .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tzIBcArPlP .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tzIBcArPlP .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tzIBcArPlP .text {
  color: #ddc499;
}
.cid-tzIBcArPlP .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB5fOeqQY {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB5fOeqQY .carousel {
    overflow: hidden;
  }
  .cid-tGB5fOeqQY .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB5fOeqQY .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB5fOeqQY #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB5fOeqQY #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB5fOeqQY .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB5fOeqQY .link-div {
  margin-left: 20px;
}
.cid-tGB5fOeqQY .link-div h3 {
  margin-left: 4px;
}
.cid-tGB5fOeqQY .mbr-card-title {
  color: #000e2f;
}
#custom-html-50 {
  /* Type valid CSS here */
}
#custom-html-50 .back-button {
  position: fixed;
}
.cid-tzIBcBpQ8i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tzIBcBpQ8i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzIBcBpQ8i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzIBcBpQ8i .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzIBcBpQ8i .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tzIBcBpQ8i .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tzIBcBpQ8i .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tzIBcBpQ8i .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tzIBcBpQ8i .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzIBcBpQ8i .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tzIBcBpQ8i .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzIBcBpQ8i .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tzIBcBpQ8i .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tzIBcBpQ8i .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tzIBcBpQ8i .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tzIBcBpQ8i .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tzIBcBpQ8i .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tzIBcBpQ8i .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tzIBcBpQ8i .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tzIBcBpQ8i .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tzIBcBpQ8i .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tzIBcBpQ8i .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tzIBcBpQ8i .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tzIBcBpQ8i .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tzIBcBpQ8i .soc-item {
    padding: 10px;
  }
}
.cid-tzIBcBpQ8i .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tzIBcBpQ8i .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tzIBcBpQ8i .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tzIBcBpQ8i .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tzIBcBpQ8i .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tzIBcBpQ8i .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tzIBcBpQ8i .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tzIBcBpQ8i .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tzIBcBpQ8i .copyright {
    text-align: center !important;
  }
}
.cid-tzIBcBpQ8i p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tzIBcBpQ8i .row {
    justify-content: flex-start !important;
  }
}
.cid-tzIBcBpQ8i .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tzIBcBpQ8i .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tzIBcBpQ8i .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tzIBcBpQ8i .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tzIBcBpQ8i .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tzIBcBpQ8i .card-title {
  color: #ffffff;
}
.cid-tzIBcBpQ8i P {
  color: #22a5e5;
}
.cid-tzStMaBvRs .navbar-dropdown {
  position: relative !important;
}
.cid-tzStMaBvRs .navbar-dropdown {
  position: absolute !important;
}
.cid-tzStMaBvRs nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tzStMaBvRs .nav-item {
    margin: 0 !important;
  }
}
.cid-tzStMaBvRs .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-tzStMaBvRs .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tzStMaBvRs .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tzStMaBvRs .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tzStMaBvRs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzStMaBvRs .nav-link {
  position: relative;
}
.cid-tzStMaBvRs .container {
  display: flex;
  margin: auto;
}
.cid-tzStMaBvRs .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzStMaBvRs .dropdown-menu,
.cid-tzStMaBvRs .navbar.opened {
  background: #000000 !important;
}
.cid-tzStMaBvRs .nav-item:focus,
.cid-tzStMaBvRs .nav-link:focus {
  outline: none;
}
.cid-tzStMaBvRs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzStMaBvRs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzStMaBvRs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzStMaBvRs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzStMaBvRs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzStMaBvRs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzStMaBvRs .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tzStMaBvRs .navbar.opened {
  transition: all 0.3s;
}
.cid-tzStMaBvRs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzStMaBvRs .navbar .navbar-logo img {
  width: auto;
}
.cid-tzStMaBvRs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzStMaBvRs .navbar.collapsed {
  justify-content: center;
}
.cid-tzStMaBvRs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzStMaBvRs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzStMaBvRs .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tzStMaBvRs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzStMaBvRs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzStMaBvRs .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-tzStMaBvRs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzStMaBvRs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzStMaBvRs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzStMaBvRs .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tzStMaBvRs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzStMaBvRs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzStMaBvRs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzStMaBvRs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzStMaBvRs .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-tzStMaBvRs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzStMaBvRs .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tzStMaBvRs .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tzStMaBvRs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzStMaBvRs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzStMaBvRs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzStMaBvRs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzStMaBvRs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzStMaBvRs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzStMaBvRs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzStMaBvRs .dropdown-item.active,
.cid-tzStMaBvRs .dropdown-item:active {
  background-color: transparent;
}
.cid-tzStMaBvRs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzStMaBvRs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzStMaBvRs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzStMaBvRs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzStMaBvRs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzStMaBvRs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzStMaBvRs ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tzStMaBvRs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzStMaBvRs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tzStMaBvRs button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tzStMaBvRs button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tzStMaBvRs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzStMaBvRs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzStMaBvRs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzStMaBvRs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzStMaBvRs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzStMaBvRs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzStMaBvRs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzStMaBvRs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzStMaBvRs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzStMaBvRs .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tzStMaBvRs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzStMaBvRs .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-tzStMaBvRs .navbar {
    height: 70px;
  }
  .cid-tzStMaBvRs .navbar.opened {
    height: auto;
  }
  .cid-tzStMaBvRs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzStMb3QPM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzStMb3QPM .link a {
  background-image: none !important;
}
.cid-tzStMb3QPM .item-wrapper {
  margin-bottom: 56px;
}
.cid-tzStMb3QPM .date {
  margin-bottom: 6px;
}
.cid-tzStMb3QPM .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tzStMb3QPM .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tzStMb3QPM a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tzStMb3QPM rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tzStMb3QPM .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tzStMb3QPM svg {
  margin-left: 15px;
}
.cid-tzStMb3QPM path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tzStMb3QPM .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tzStMb3QPM .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tzStMb3QPM .row {
  justify-content: center;
}
.cid-tzStMb3QPM .p,
.cid-tzStMb3QPM .link {
  color: #767676;
}
.cid-tzStMblPnh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tzStMblPnh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzStMblPnh .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-tzStMblPnh .container {
    padding: 0 30px;
  }
}
.cid-tzStMblPnh .row {
  justify-content: center;
}
.cid-tzStMblPnh .title-wrapper {
  margin-bottom: 55px;
}
.cid-tzStMblPnh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzStMblPnh .card {
    margin-bottom: 30px;
  }
}
.cid-tzStMblPnh .card .card-wrapper {
  display: flex;
}
.cid-tzStMblPnh .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tzStMblPnh .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tzStMblPnh .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tzStMblPnh .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tzStMblPnh .mbr-section-title {
  color: #767676;
}
.cid-tzStMblPnh .mbr-number {
  color: #000000;
}
.cid-tzStMblPnh .mbr-card-title {
  color: #1070b9;
}
.cid-tzStMblPnh .mbr-text {
  color: #767676;
}
.cid-tzStMbIafU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzStMbIafU .mbr-section-title {
  color: #1070b9;
}
.cid-tzStMbIafU .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tzStMbIafU .row {
  justify-content: space-between;
}
.cid-tzStMbIafU .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tzStMbIafU .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tzStMbIafU .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tzStMbIafU .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tzStMbIafU .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tzStMbIafU .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tzStMbIafU .link-wrapper {
    justify-content: center;
  }
}
.cid-tzStMbIafU .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tzStMbIafU .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tzStMbIafU .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tzStMbIafU .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tzStMbIafU .link,
.cid-tzStMbIafU .link-icon {
  color: #000000;
}
.cid-tzStMbIafU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzStMbIafU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzStMbIafU .mbr-text,
.cid-tzStMbIafU .mbr-section-btn {
  color: #767676;
}
.cid-tzStMc1wtZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzStMc1wtZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tzStMc1wtZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-tzStMc1wtZ .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tzStMc1wtZ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tzStMc1wtZ .box {
  right: 20%;
}
.cid-tzStMc1wtZ .text-box {
  right: 0;
}
.cid-tzStMc1wtZ .mbr-section-title,
.cid-tzStMc1wtZ .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tzStMc1wtZ .text-box {
    display: none;
  }
  .cid-tzStMc1wtZ .mbr-section-title,
  .cid-tzStMc1wtZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tzStMc1wtZ .box {
    display: none;
  }
  .cid-tzStMc1wtZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tzStMc1wtZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzStMc1wtZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tzStMc1wtZ .mbr-section-text {
  color: #767676;
}
.cid-tzStMc1wtZ .mbr-section-title {
  color: #1070b9;
}
.cid-tzStMcmid9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzStMcmid9 .box {
  margin-bottom: 15px;
}
.cid-tzStMcmid9 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tzStMcmid9 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tzStMcmid9 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tzStMcmid9 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tzStMcmid9 .mbr-media {
    max-height: 432px;
  }
}
.cid-tzStMcmid9 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tzStMcmid9 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tzStMcmid9 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tzStMcmid9 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tzStMcmid9 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tzStMcmid9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tzStMcmid9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tzStMcmid9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tzStMcmid9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tzStMcmid9 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tzStMcmid9 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tzStMcmid9 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tzStMcmid9 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tzStMcmid9 .item-img {
  overflow: hidden;
}
.cid-tzStMcmid9 .item-img img {
  width: 100%;
}
.cid-tzStMcmid9 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tzStMcmid9 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tzStMcmid9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzStMcmid9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzStMcQyC4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tzStMcQyC4 .carousel {
    overflow: hidden;
  }
  .cid-tzStMcQyC4 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tzStMcQyC4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tzStMcQyC4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tzStMcQyC4 .carousel,
.cid-tzStMcQyC4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tzStMcQyC4 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tzStMcQyC4 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tzStMcQyC4 .item-wrapper {
    height: 215px;
  }
}
.cid-tzStMcQyC4 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tzStMcQyC4 .carousel-caption {
  bottom: 40px;
}
.cid-tzStMcQyC4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tzStMcQyC4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tzStMcQyC4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tzStMcQyC4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tzStMcQyC4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tzStMcQyC4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzStMcQyC4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzStMcQyC4 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzStMcQyC4 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tzStMcQyC4 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzStMcQyC4 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tzStMcQyC4 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tzStMcQyC4 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tzStMcQyC4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tzStMcQyC4 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tzStMcQyC4 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tzStMcQyC4 .soc-item::before,
.cid-tzStMcQyC4 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tzStMcQyC4 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tzStMcQyC4 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tzStMcQyC4 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tzStMcQyC4 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tzStMcQyC4 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tzStMcQyC4 .text {
  color: #ddc499;
}
.cid-tzStMcQyC4 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB60sU12x {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB60sU12x .carousel {
    overflow: hidden;
  }
  .cid-tGB60sU12x .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB60sU12x .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB60sU12x #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB60sU12x #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB60sU12x .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB60sU12x .link-div {
  margin-left: 20px;
}
.cid-tGB60sU12x .link-div h3 {
  margin-left: 4px;
}
.cid-tGB60sU12x .mbr-card-title {
  color: #000e2f;
}
#custom-html-5q {
  /* Type valid CSS here */
}
#custom-html-5q .back-button {
  position: fixed;
}
.cid-tzStMdwz2N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tzStMdwz2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzStMdwz2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzStMdwz2N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzStMdwz2N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tzStMdwz2N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tzStMdwz2N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tzStMdwz2N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tzStMdwz2N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzStMdwz2N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tzStMdwz2N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzStMdwz2N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tzStMdwz2N .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tzStMdwz2N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tzStMdwz2N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tzStMdwz2N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tzStMdwz2N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tzStMdwz2N .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tzStMdwz2N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tzStMdwz2N .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tzStMdwz2N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tzStMdwz2N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tzStMdwz2N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tzStMdwz2N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tzStMdwz2N .soc-item {
    padding: 10px;
  }
}
.cid-tzStMdwz2N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tzStMdwz2N .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tzStMdwz2N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tzStMdwz2N .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tzStMdwz2N .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tzStMdwz2N .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tzStMdwz2N .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tzStMdwz2N .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tzStMdwz2N .copyright {
    text-align: center !important;
  }
}
.cid-tzStMdwz2N p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tzStMdwz2N .row {
    justify-content: flex-start !important;
  }
}
.cid-tzStMdwz2N .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tzStMdwz2N .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tzStMdwz2N .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tzStMdwz2N .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tzStMdwz2N .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tzStMdwz2N .card-title {
  color: #ffffff;
}
.cid-tzStMdwz2N P {
  color: #22a5e5;
}
.cid-tFIRowVHf8 .navbar-dropdown {
  position: relative !important;
}
.cid-tFIRowVHf8 .navbar-dropdown {
  position: absolute !important;
}
.cid-tFIRowVHf8 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFIRowVHf8 .nav-item {
    margin: 0 !important;
  }
}
.cid-tFIRowVHf8 .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-tFIRowVHf8 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFIRowVHf8 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFIRowVHf8 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFIRowVHf8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFIRowVHf8 .nav-link {
  position: relative;
}
.cid-tFIRowVHf8 .container {
  display: flex;
  margin: auto;
}
.cid-tFIRowVHf8 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFIRowVHf8 .dropdown-menu,
.cid-tFIRowVHf8 .navbar.opened {
  background: #000000 !important;
}
.cid-tFIRowVHf8 .nav-item:focus,
.cid-tFIRowVHf8 .nav-link:focus {
  outline: none;
}
.cid-tFIRowVHf8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFIRowVHf8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFIRowVHf8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFIRowVHf8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFIRowVHf8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFIRowVHf8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFIRowVHf8 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFIRowVHf8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tFIRowVHf8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFIRowVHf8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFIRowVHf8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFIRowVHf8 .navbar.collapsed {
  justify-content: center;
}
.cid-tFIRowVHf8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFIRowVHf8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFIRowVHf8 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFIRowVHf8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFIRowVHf8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFIRowVHf8 .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-tFIRowVHf8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFIRowVHf8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFIRowVHf8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFIRowVHf8 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFIRowVHf8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFIRowVHf8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFIRowVHf8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFIRowVHf8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFIRowVHf8 .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-tFIRowVHf8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFIRowVHf8 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFIRowVHf8 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFIRowVHf8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFIRowVHf8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFIRowVHf8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFIRowVHf8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFIRowVHf8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFIRowVHf8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFIRowVHf8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFIRowVHf8 .dropdown-item.active,
.cid-tFIRowVHf8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFIRowVHf8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFIRowVHf8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFIRowVHf8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFIRowVHf8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFIRowVHf8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFIRowVHf8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFIRowVHf8 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFIRowVHf8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFIRowVHf8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFIRowVHf8 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFIRowVHf8 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFIRowVHf8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFIRowVHf8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFIRowVHf8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFIRowVHf8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFIRowVHf8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFIRowVHf8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFIRowVHf8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFIRowVHf8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFIRowVHf8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFIRowVHf8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFIRowVHf8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFIRowVHf8 .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-tFIRowVHf8 .navbar {
    height: 70px;
  }
  .cid-tFIRowVHf8 .navbar.opened {
    height: auto;
  }
  .cid-tFIRowVHf8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFIRoxtz7f {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFIRoxtz7f .link a {
  background-image: none !important;
}
.cid-tFIRoxtz7f .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFIRoxtz7f .date {
  margin-bottom: 6px;
}
.cid-tFIRoxtz7f .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFIRoxtz7f .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFIRoxtz7f a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFIRoxtz7f rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFIRoxtz7f .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFIRoxtz7f svg {
  margin-left: 15px;
}
.cid-tFIRoxtz7f path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFIRoxtz7f .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFIRoxtz7f .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFIRoxtz7f .row {
  justify-content: center;
}
.cid-tFIRoxtz7f .p,
.cid-tFIRoxtz7f .link {
  color: #767676;
}
.cid-tFIRoxWmSw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFIRoxWmSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIRoxWmSw .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-tFIRoxWmSw .container {
    padding: 0 30px;
  }
}
.cid-tFIRoxWmSw .row {
  justify-content: center;
}
.cid-tFIRoxWmSw .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFIRoxWmSw .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFIRoxWmSw .card {
    margin-bottom: 30px;
  }
}
.cid-tFIRoxWmSw .card .card-wrapper {
  display: flex;
}
.cid-tFIRoxWmSw .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFIRoxWmSw .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFIRoxWmSw .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFIRoxWmSw .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFIRoxWmSw .mbr-section-title {
  color: #767676;
}
.cid-tFIRoxWmSw .mbr-number {
  color: #000000;
}
.cid-tFIRoxWmSw .mbr-card-title {
  color: #1070b9;
  text-align: left;
}
.cid-tFIRoxWmSw .mbr-text {
  color: #767676;
}
.cid-tFIRoywS0q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFIRoywS0q .mbr-section-title {
  color: #1070b9;
}
.cid-tFIRoywS0q .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFIRoywS0q .row {
  justify-content: space-between;
}
.cid-tFIRoywS0q .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFIRoywS0q .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFIRoywS0q .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFIRoywS0q .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFIRoywS0q .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFIRoywS0q .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFIRoywS0q .link-wrapper {
    justify-content: center;
  }
}
.cid-tFIRoywS0q .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFIRoywS0q .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFIRoywS0q .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFIRoywS0q .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFIRoywS0q .link,
.cid-tFIRoywS0q .link-icon {
  color: #000000;
}
.cid-tFIRoywS0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIRoywS0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFIRoywS0q .mbr-text,
.cid-tFIRoywS0q .mbr-section-btn {
  color: #767676;
}
.cid-tFIRoyOaC3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFIRoyOaC3 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFIRoyOaC3 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFIRoyOaC3 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFIRoyOaC3 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFIRoyOaC3 .box {
  right: 20%;
}
.cid-tFIRoyOaC3 .text-box {
  right: 0;
}
.cid-tFIRoyOaC3 .mbr-section-title,
.cid-tFIRoyOaC3 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFIRoyOaC3 .text-box {
    display: none;
  }
  .cid-tFIRoyOaC3 .mbr-section-title,
  .cid-tFIRoyOaC3 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFIRoyOaC3 .box {
    display: none;
  }
  .cid-tFIRoyOaC3 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFIRoyOaC3 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFIRoyOaC3 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFIRoyOaC3 .mbr-section-text {
  color: #767676;
}
.cid-tFIRoyOaC3 .mbr-section-title {
  color: #1070b9;
}
.cid-tFIRozJ5Le {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFIRozJ5Le .carousel {
    overflow: hidden;
  }
  .cid-tFIRozJ5Le .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFIRozJ5Le .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFIRozJ5Le .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFIRozJ5Le .carousel,
.cid-tFIRozJ5Le .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFIRozJ5Le .item-wrapper {
  height: 100%;
  width: 100%;
}
.cid-tFIRozJ5Le .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFIRozJ5Le .carousel-caption {
  bottom: 40px;
}
.cid-tFIRozJ5Le .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFIRozJ5Le .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFIRozJ5Le .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFIRozJ5Le .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFIRozJ5Le .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFIRozJ5Le .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFIRozJ5Le .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFIRozJ5Le .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFIRozJ5Le .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFIRozJ5Le .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFIRozJ5Le .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFIRozJ5Le .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFIRozJ5Le .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFIRozJ5Le .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFIRozJ5Le .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFIRozJ5Le .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFIRozJ5Le .soc-item::before,
.cid-tFIRozJ5Le .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFIRozJ5Le .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFIRozJ5Le .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFIRozJ5Le .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFIRozJ5Le .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFIRozJ5Le .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFIRozJ5Le .text {
  color: #ddc499;
}
.cid-tFIRozJ5Le .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB55pycvj {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB55pycvj .carousel {
    overflow: hidden;
  }
  .cid-tGB55pycvj .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB55pycvj .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB55pycvj #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB55pycvj #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB55pycvj .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB55pycvj .link-div {
  margin-left: 20px;
}
.cid-tGB55pycvj .link-div h3 {
  margin-left: 4px;
}
.cid-tGB55pycvj .mbr-card-title {
  color: #000e2f;
}
#custom-html-6a {
  /* Type valid CSS here */
}
#custom-html-6a .back-button {
  position: fixed;
}
.cid-tFIRoAliz0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFIRoAliz0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFIRoAliz0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFIRoAliz0 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFIRoAliz0 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFIRoAliz0 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFIRoAliz0 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFIRoAliz0 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFIRoAliz0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFIRoAliz0 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFIRoAliz0 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFIRoAliz0 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFIRoAliz0 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFIRoAliz0 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFIRoAliz0 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFIRoAliz0 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFIRoAliz0 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFIRoAliz0 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFIRoAliz0 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFIRoAliz0 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFIRoAliz0 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFIRoAliz0 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFIRoAliz0 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFIRoAliz0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFIRoAliz0 .soc-item {
    padding: 10px;
  }
}
.cid-tFIRoAliz0 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFIRoAliz0 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFIRoAliz0 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFIRoAliz0 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFIRoAliz0 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFIRoAliz0 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFIRoAliz0 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFIRoAliz0 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFIRoAliz0 .copyright {
    text-align: center !important;
  }
}
.cid-tFIRoAliz0 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFIRoAliz0 .row {
    justify-content: flex-start !important;
  }
}
.cid-tFIRoAliz0 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFIRoAliz0 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFIRoAliz0 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFIRoAliz0 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFIRoAliz0 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFIRoAliz0 .card-title {
  color: #ffffff;
}
.cid-tFIRoAliz0 P {
  color: #22a5e5;
}
.cid-tFKgtfIL7c .navbar-dropdown {
  position: relative !important;
}
.cid-tFKgtfIL7c .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKgtfIL7c nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKgtfIL7c .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKgtfIL7c .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-tFKgtfIL7c .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKgtfIL7c .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKgtfIL7c .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKgtfIL7c .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKgtfIL7c .nav-link {
  position: relative;
}
.cid-tFKgtfIL7c .container {
  display: flex;
  margin: auto;
}
.cid-tFKgtfIL7c .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKgtfIL7c .dropdown-menu,
.cid-tFKgtfIL7c .navbar.opened {
  background: #000000 !important;
}
.cid-tFKgtfIL7c .nav-item:focus,
.cid-tFKgtfIL7c .nav-link:focus {
  outline: none;
}
.cid-tFKgtfIL7c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKgtfIL7c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKgtfIL7c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKgtfIL7c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKgtfIL7c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKgtfIL7c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKgtfIL7c .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKgtfIL7c .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKgtfIL7c .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKgtfIL7c .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKgtfIL7c .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKgtfIL7c .navbar.collapsed {
  justify-content: center;
}
.cid-tFKgtfIL7c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKgtfIL7c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKgtfIL7c .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKgtfIL7c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKgtfIL7c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKgtfIL7c .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-tFKgtfIL7c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKgtfIL7c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKgtfIL7c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKgtfIL7c .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKgtfIL7c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKgtfIL7c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKgtfIL7c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKgtfIL7c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKgtfIL7c .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-tFKgtfIL7c .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKgtfIL7c .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKgtfIL7c .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKgtfIL7c .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKgtfIL7c .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKgtfIL7c .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKgtfIL7c .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKgtfIL7c .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKgtfIL7c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKgtfIL7c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKgtfIL7c .dropdown-item.active,
.cid-tFKgtfIL7c .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKgtfIL7c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKgtfIL7c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKgtfIL7c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKgtfIL7c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKgtfIL7c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKgtfIL7c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKgtfIL7c ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKgtfIL7c .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKgtfIL7c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKgtfIL7c button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKgtfIL7c button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKgtfIL7c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKgtfIL7c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKgtfIL7c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgtfIL7c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgtfIL7c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKgtfIL7c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgtfIL7c nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKgtfIL7c nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKgtfIL7c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgtfIL7c .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKgtfIL7c a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKgtfIL7c .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-tFKgtfIL7c .navbar {
    height: 70px;
  }
  .cid-tFKgtfIL7c .navbar.opened {
    height: auto;
  }
  .cid-tFKgtfIL7c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKgtg7PWn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgtg7PWn .link a {
  background-image: none !important;
}
.cid-tFKgtg7PWn .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKgtg7PWn .date {
  margin-bottom: 6px;
}
.cid-tFKgtg7PWn .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKgtg7PWn .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKgtg7PWn a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKgtg7PWn rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKgtg7PWn .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKgtg7PWn svg {
  margin-left: 15px;
}
.cid-tFKgtg7PWn path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKgtg7PWn .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKgtg7PWn .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKgtg7PWn .row {
  justify-content: center;
}
.cid-tFKgtg7PWn .p,
.cid-tFKgtg7PWn .link {
  color: #767676;
}
.cid-tFKgtgq2Pn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKgtgq2Pn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgtgq2Pn .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-tFKgtgq2Pn .container {
    padding: 0 30px;
  }
}
.cid-tFKgtgq2Pn .row {
  justify-content: center;
}
.cid-tFKgtgq2Pn .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKgtgq2Pn .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKgtgq2Pn .card {
    margin-bottom: 30px;
  }
}
.cid-tFKgtgq2Pn .card .card-wrapper {
  display: flex;
}
.cid-tFKgtgq2Pn .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKgtgq2Pn .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKgtgq2Pn .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKgtgq2Pn .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKgtgq2Pn .mbr-section-title {
  color: #767676;
}
.cid-tFKgtgq2Pn .mbr-number {
  color: #000000;
}
.cid-tFKgtgq2Pn .mbr-card-title {
  color: #1070b9;
}
.cid-tFKgtgq2Pn .mbr-text {
  color: #767676;
}
.cid-tFKgtgIsp8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgtgIsp8 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKgtgIsp8 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKgtgIsp8 .row {
  justify-content: space-between;
}
.cid-tFKgtgIsp8 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKgtgIsp8 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKgtgIsp8 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKgtgIsp8 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKgtgIsp8 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKgtgIsp8 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKgtgIsp8 .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKgtgIsp8 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKgtgIsp8 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKgtgIsp8 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKgtgIsp8 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKgtgIsp8 .link,
.cid-tFKgtgIsp8 .link-icon {
  color: #000000;
}
.cid-tFKgtgIsp8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgtgIsp8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgtgIsp8 .mbr-text,
.cid-tFKgtgIsp8 .mbr-section-btn {
  color: #767676;
}
.cid-tFKgth0Zr2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKgth0Zr2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKgth0Zr2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKgth0Zr2 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKgth0Zr2 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKgth0Zr2 .box {
  right: 20%;
}
.cid-tFKgth0Zr2 .text-box {
  right: 0;
}
.cid-tFKgth0Zr2 .mbr-section-title,
.cid-tFKgth0Zr2 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKgth0Zr2 .text-box {
    display: none;
  }
  .cid-tFKgth0Zr2 .mbr-section-title,
  .cid-tFKgth0Zr2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKgth0Zr2 .box {
    display: none;
  }
  .cid-tFKgth0Zr2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKgth0Zr2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKgth0Zr2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKgth0Zr2 .mbr-section-text {
  color: #767676;
}
.cid-tFKgth0Zr2 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKgthkyeW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKgthkyeW .box {
  margin-bottom: 15px;
}
.cid-tFKgthkyeW .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKgthkyeW .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKgthkyeW .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKgthkyeW .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKgthkyeW .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKgthkyeW .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKgthkyeW .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKgthkyeW .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKgthkyeW .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKgthkyeW .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKgthkyeW .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKgthkyeW .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKgthkyeW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKgthkyeW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKgthkyeW .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKgthkyeW .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKgthkyeW .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKgthkyeW .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKgthkyeW .item-img {
  overflow: hidden;
}
.cid-tFKgthkyeW .item-img img {
  width: 100%;
}
.cid-tFKgthkyeW .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKgthkyeW .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKgthkyeW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgthkyeW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgthTOvI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKgthTOvI .carousel {
    overflow: hidden;
  }
  .cid-tFKgthTOvI .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKgthTOvI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKgthTOvI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKgthTOvI .carousel,
.cid-tFKgthTOvI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKgthTOvI .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKgthTOvI .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKgthTOvI .item-wrapper {
    height: 215px;
  }
}
.cid-tFKgthTOvI .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKgthTOvI .carousel-caption {
  bottom: 40px;
}
.cid-tFKgthTOvI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKgthTOvI .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKgthTOvI .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKgthTOvI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKgthTOvI .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKgthTOvI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKgthTOvI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKgthTOvI .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKgthTOvI .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKgthTOvI .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKgthTOvI .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKgthTOvI .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKgthTOvI .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKgthTOvI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKgthTOvI .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKgthTOvI .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKgthTOvI .soc-item::before,
.cid-tFKgthTOvI .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKgthTOvI .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKgthTOvI .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKgthTOvI .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKgthTOvI .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKgthTOvI .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKgthTOvI .text {
  color: #ddc499;
}
.cid-tFKgthTOvI .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB6cehBYh {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB6cehBYh .carousel {
    overflow: hidden;
  }
  .cid-tGB6cehBYh .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB6cehBYh .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB6cehBYh #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB6cehBYh #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB6cehBYh .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB6cehBYh .link-div {
  margin-left: 20px;
}
.cid-tGB6cehBYh .link-div h3 {
  margin-left: 4px;
}
.cid-tGB6cehBYh .mbr-card-title {
  color: #000e2f;
}
#custom-html-9m {
  /* Type valid CSS here */
}
#custom-html-9m .back-button {
  position: fixed;
}
.cid-tFKgtiwlIG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKgtiwlIG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgtiwlIG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgtiwlIG .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKgtiwlIG .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKgtiwlIG .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKgtiwlIG .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKgtiwlIG .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKgtiwlIG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgtiwlIG .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKgtiwlIG .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgtiwlIG .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKgtiwlIG .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKgtiwlIG .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKgtiwlIG .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKgtiwlIG .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKgtiwlIG .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKgtiwlIG .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKgtiwlIG .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKgtiwlIG .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKgtiwlIG .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKgtiwlIG .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKgtiwlIG .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKgtiwlIG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKgtiwlIG .soc-item {
    padding: 10px;
  }
}
.cid-tFKgtiwlIG .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKgtiwlIG .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKgtiwlIG .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKgtiwlIG .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKgtiwlIG .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKgtiwlIG .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgtiwlIG .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKgtiwlIG .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKgtiwlIG .copyright {
    text-align: center !important;
  }
}
.cid-tFKgtiwlIG p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKgtiwlIG .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKgtiwlIG .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKgtiwlIG .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKgtiwlIG .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgtiwlIG .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKgtiwlIG .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKgtiwlIG .card-title {
  color: #ffffff;
}
.cid-tFKgtiwlIG P {
  color: #22a5e5;
}
.cid-tFKgrla5FY .navbar-dropdown {
  position: relative !important;
}
.cid-tFKgrla5FY .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKgrla5FY nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKgrla5FY .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKgrla5FY .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-tFKgrla5FY .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKgrla5FY .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKgrla5FY .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKgrla5FY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKgrla5FY .nav-link {
  position: relative;
}
.cid-tFKgrla5FY .container {
  display: flex;
  margin: auto;
}
.cid-tFKgrla5FY .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKgrla5FY .dropdown-menu,
.cid-tFKgrla5FY .navbar.opened {
  background: #000000 !important;
}
.cid-tFKgrla5FY .nav-item:focus,
.cid-tFKgrla5FY .nav-link:focus {
  outline: none;
}
.cid-tFKgrla5FY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKgrla5FY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKgrla5FY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKgrla5FY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKgrla5FY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKgrla5FY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKgrla5FY .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKgrla5FY .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKgrla5FY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKgrla5FY .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKgrla5FY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKgrla5FY .navbar.collapsed {
  justify-content: center;
}
.cid-tFKgrla5FY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKgrla5FY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKgrla5FY .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKgrla5FY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKgrla5FY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKgrla5FY .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-tFKgrla5FY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKgrla5FY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKgrla5FY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKgrla5FY .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKgrla5FY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKgrla5FY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKgrla5FY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKgrla5FY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKgrla5FY .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-tFKgrla5FY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKgrla5FY .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKgrla5FY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKgrla5FY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKgrla5FY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKgrla5FY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKgrla5FY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKgrla5FY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKgrla5FY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKgrla5FY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKgrla5FY .dropdown-item.active,
.cid-tFKgrla5FY .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKgrla5FY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKgrla5FY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKgrla5FY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKgrla5FY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKgrla5FY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKgrla5FY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKgrla5FY ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKgrla5FY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKgrla5FY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKgrla5FY button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKgrla5FY button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKgrla5FY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKgrla5FY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKgrla5FY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgrla5FY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgrla5FY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKgrla5FY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgrla5FY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKgrla5FY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKgrla5FY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgrla5FY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKgrla5FY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKgrla5FY .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-tFKgrla5FY .navbar {
    height: 70px;
  }
  .cid-tFKgrla5FY .navbar.opened {
    height: auto;
  }
  .cid-tFKgrla5FY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKgrlA0dB {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgrlA0dB .link a {
  background-image: none !important;
}
.cid-tFKgrlA0dB .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKgrlA0dB .date {
  margin-bottom: 6px;
}
.cid-tFKgrlA0dB .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKgrlA0dB .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKgrlA0dB a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKgrlA0dB rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKgrlA0dB .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKgrlA0dB svg {
  margin-left: 15px;
}
.cid-tFKgrlA0dB path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKgrlA0dB .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKgrlA0dB .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKgrlA0dB .row {
  justify-content: center;
}
.cid-tFKgrlA0dB .p,
.cid-tFKgrlA0dB .link {
  color: #767676;
}
.cid-tFKgrlURis {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKgrlURis .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgrlURis .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-tFKgrlURis .container {
    padding: 0 30px;
  }
}
.cid-tFKgrlURis .row {
  justify-content: center;
}
.cid-tFKgrlURis .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKgrlURis .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKgrlURis .card {
    margin-bottom: 30px;
  }
}
.cid-tFKgrlURis .card .card-wrapper {
  display: flex;
}
.cid-tFKgrlURis .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKgrlURis .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKgrlURis .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKgrlURis .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKgrlURis .mbr-section-title {
  color: #767676;
}
.cid-tFKgrlURis .mbr-number {
  color: #000000;
}
.cid-tFKgrlURis .mbr-card-title {
  color: #1070b9;
}
.cid-tFKgrlURis .mbr-text {
  color: #767676;
}
.cid-tFKgrmcIAw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgrmcIAw .mbr-section-title {
  color: #1070b9;
}
.cid-tFKgrmcIAw .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKgrmcIAw .row {
  justify-content: space-between;
}
.cid-tFKgrmcIAw .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKgrmcIAw .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKgrmcIAw .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKgrmcIAw .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKgrmcIAw .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKgrmcIAw .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKgrmcIAw .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKgrmcIAw .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKgrmcIAw .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKgrmcIAw .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKgrmcIAw .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKgrmcIAw .link,
.cid-tFKgrmcIAw .link-icon {
  color: #000000;
}
.cid-tFKgrmcIAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgrmcIAw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgrmcIAw .mbr-text,
.cid-tFKgrmcIAw .mbr-section-btn {
  color: #767676;
}
.cid-tFKgrmv43V {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKgrmv43V .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKgrmv43V .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKgrmv43V .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKgrmv43V .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKgrmv43V .box {
  right: 20%;
}
.cid-tFKgrmv43V .text-box {
  right: 0;
}
.cid-tFKgrmv43V .mbr-section-title,
.cid-tFKgrmv43V .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKgrmv43V .text-box {
    display: none;
  }
  .cid-tFKgrmv43V .mbr-section-title,
  .cid-tFKgrmv43V .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKgrmv43V .box {
    display: none;
  }
  .cid-tFKgrmv43V .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKgrmv43V .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKgrmv43V .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKgrmv43V .mbr-section-text {
  color: #767676;
}
.cid-tFKgrmv43V .mbr-section-title {
  color: #1070b9;
}
.cid-tFKgrmQg7x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKgrmQg7x .box {
  margin-bottom: 15px;
}
.cid-tFKgrmQg7x .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKgrmQg7x .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKgrmQg7x .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKgrmQg7x .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKgrmQg7x .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKgrmQg7x .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKgrmQg7x .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKgrmQg7x .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKgrmQg7x .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKgrmQg7x .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKgrmQg7x .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKgrmQg7x .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKgrmQg7x .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKgrmQg7x .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKgrmQg7x .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKgrmQg7x .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKgrmQg7x .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKgrmQg7x .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKgrmQg7x .item-img {
  overflow: hidden;
}
.cid-tFKgrmQg7x .item-img img {
  width: 100%;
}
.cid-tFKgrmQg7x .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKgrmQg7x .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKgrmQg7x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgrmQg7x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgrnmJ3L {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKgrnmJ3L .carousel {
    overflow: hidden;
  }
  .cid-tFKgrnmJ3L .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKgrnmJ3L .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKgrnmJ3L .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKgrnmJ3L .carousel,
.cid-tFKgrnmJ3L .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKgrnmJ3L .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKgrnmJ3L .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKgrnmJ3L .item-wrapper {
    height: 215px;
  }
}
.cid-tFKgrnmJ3L .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKgrnmJ3L .carousel-caption {
  bottom: 40px;
}
.cid-tFKgrnmJ3L .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKgrnmJ3L .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKgrnmJ3L .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKgrnmJ3L .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKgrnmJ3L .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKgrnmJ3L .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKgrnmJ3L .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKgrnmJ3L .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKgrnmJ3L .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKgrnmJ3L .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKgrnmJ3L .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKgrnmJ3L .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKgrnmJ3L .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKgrnmJ3L .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKgrnmJ3L .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKgrnmJ3L .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKgrnmJ3L .soc-item::before,
.cid-tFKgrnmJ3L .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKgrnmJ3L .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKgrnmJ3L .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKgrnmJ3L .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKgrnmJ3L .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKgrnmJ3L .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKgrnmJ3L .text {
  color: #ddc499;
}
.cid-tFKgrnmJ3L .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB6fNrrGn {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB6fNrrGn .carousel {
    overflow: hidden;
  }
  .cid-tGB6fNrrGn .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB6fNrrGn .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB6fNrrGn #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB6fNrrGn #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB6fNrrGn .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB6fNrrGn .link-div {
  margin-left: 20px;
}
.cid-tGB6fNrrGn .link-div h3 {
  margin-left: 4px;
}
.cid-tGB6fNrrGn .mbr-card-title {
  color: #000e2f;
}
#custom-html-9c {
  /* Type valid CSS here */
}
#custom-html-9c .back-button {
  position: fixed;
}
.cid-tFKgro2XH2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKgro2XH2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgro2XH2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgro2XH2 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKgro2XH2 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKgro2XH2 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKgro2XH2 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKgro2XH2 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKgro2XH2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgro2XH2 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKgro2XH2 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgro2XH2 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKgro2XH2 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKgro2XH2 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKgro2XH2 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKgro2XH2 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKgro2XH2 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKgro2XH2 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKgro2XH2 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKgro2XH2 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKgro2XH2 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKgro2XH2 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKgro2XH2 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKgro2XH2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKgro2XH2 .soc-item {
    padding: 10px;
  }
}
.cid-tFKgro2XH2 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKgro2XH2 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKgro2XH2 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKgro2XH2 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKgro2XH2 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKgro2XH2 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgro2XH2 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKgro2XH2 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKgro2XH2 .copyright {
    text-align: center !important;
  }
}
.cid-tFKgro2XH2 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKgro2XH2 .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKgro2XH2 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKgro2XH2 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKgro2XH2 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgro2XH2 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKgro2XH2 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKgro2XH2 .card-title {
  color: #ffffff;
}
.cid-tFKgro2XH2 P {
  color: #22a5e5;
}
.cid-tFKivCKGol .navbar-dropdown {
  position: relative !important;
}
.cid-tFKivCKGol .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKivCKGol nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKivCKGol .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKivCKGol .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-tFKivCKGol .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKivCKGol .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKivCKGol .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKivCKGol .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKivCKGol .nav-link {
  position: relative;
}
.cid-tFKivCKGol .container {
  display: flex;
  margin: auto;
}
.cid-tFKivCKGol .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKivCKGol .dropdown-menu,
.cid-tFKivCKGol .navbar.opened {
  background: #000000 !important;
}
.cid-tFKivCKGol .nav-item:focus,
.cid-tFKivCKGol .nav-link:focus {
  outline: none;
}
.cid-tFKivCKGol .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKivCKGol .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKivCKGol .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKivCKGol .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKivCKGol .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKivCKGol .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKivCKGol .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKivCKGol .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKivCKGol .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKivCKGol .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKivCKGol .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKivCKGol .navbar.collapsed {
  justify-content: center;
}
.cid-tFKivCKGol .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKivCKGol .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKivCKGol .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKivCKGol .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKivCKGol .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKivCKGol .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-tFKivCKGol .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKivCKGol .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKivCKGol .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKivCKGol .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKivCKGol .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKivCKGol .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKivCKGol .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKivCKGol .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKivCKGol .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-tFKivCKGol .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKivCKGol .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKivCKGol .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKivCKGol .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKivCKGol .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKivCKGol .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKivCKGol .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKivCKGol .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKivCKGol .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKivCKGol .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKivCKGol .dropdown-item.active,
.cid-tFKivCKGol .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKivCKGol .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKivCKGol .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKivCKGol .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKivCKGol .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKivCKGol .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKivCKGol .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKivCKGol ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKivCKGol .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKivCKGol button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKivCKGol button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKivCKGol button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKivCKGol button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKivCKGol button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKivCKGol button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKivCKGol button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKivCKGol button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKivCKGol nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKivCKGol nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKivCKGol nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKivCKGol nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKivCKGol .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKivCKGol a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKivCKGol .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-tFKivCKGol .navbar {
    height: 70px;
  }
  .cid-tFKivCKGol .navbar.opened {
    height: auto;
  }
  .cid-tFKivCKGol .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKivDaUZO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKivDaUZO .link a {
  background-image: none !important;
}
.cid-tFKivDaUZO .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKivDaUZO .date {
  margin-bottom: 6px;
}
.cid-tFKivDaUZO .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKivDaUZO .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKivDaUZO a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKivDaUZO rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKivDaUZO .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKivDaUZO svg {
  margin-left: 15px;
}
.cid-tFKivDaUZO path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKivDaUZO .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKivDaUZO .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKivDaUZO .row {
  justify-content: center;
}
.cid-tFKivDaUZO .p,
.cid-tFKivDaUZO .link {
  color: #767676;
}
.cid-tFKivDrupp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKivDrupp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKivDrupp .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-tFKivDrupp .container {
    padding: 0 30px;
  }
}
.cid-tFKivDrupp .row {
  justify-content: center;
}
.cid-tFKivDrupp .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKivDrupp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKivDrupp .card {
    margin-bottom: 30px;
  }
}
.cid-tFKivDrupp .card .card-wrapper {
  display: flex;
}
.cid-tFKivDrupp .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKivDrupp .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKivDrupp .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKivDrupp .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKivDrupp .mbr-section-title {
  color: #767676;
}
.cid-tFKivDrupp .mbr-number {
  color: #000000;
}
.cid-tFKivDrupp .mbr-card-title {
  color: #1070b9;
}
.cid-tFKivDrupp .mbr-text {
  color: #767676;
}
.cid-tFKivDK7sp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKivDK7sp .mbr-section-title {
  color: #1070b9;
}
.cid-tFKivDK7sp .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKivDK7sp .row {
  justify-content: space-between;
}
.cid-tFKivDK7sp .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKivDK7sp .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKivDK7sp .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKivDK7sp .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKivDK7sp .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKivDK7sp .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKivDK7sp .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKivDK7sp .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKivDK7sp .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKivDK7sp .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKivDK7sp .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKivDK7sp .link,
.cid-tFKivDK7sp .link-icon {
  color: #000000;
}
.cid-tFKivDK7sp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKivDK7sp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKivDK7sp .mbr-text,
.cid-tFKivDK7sp .mbr-section-btn {
  color: #767676;
}
.cid-tFKivE2Sm8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKivE2Sm8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKivE2Sm8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKivE2Sm8 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKivE2Sm8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKivE2Sm8 .box {
  right: 20%;
}
.cid-tFKivE2Sm8 .text-box {
  right: 0;
}
.cid-tFKivE2Sm8 .mbr-section-title,
.cid-tFKivE2Sm8 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKivE2Sm8 .text-box {
    display: none;
  }
  .cid-tFKivE2Sm8 .mbr-section-title,
  .cid-tFKivE2Sm8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKivE2Sm8 .box {
    display: none;
  }
  .cid-tFKivE2Sm8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKivE2Sm8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKivE2Sm8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKivE2Sm8 .mbr-section-text {
  color: #767676;
}
.cid-tFKivE2Sm8 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKivEpH14 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKivEpH14 .box {
  margin-bottom: 15px;
}
.cid-tFKivEpH14 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKivEpH14 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKivEpH14 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKivEpH14 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKivEpH14 .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKivEpH14 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKivEpH14 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKivEpH14 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKivEpH14 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKivEpH14 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKivEpH14 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKivEpH14 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKivEpH14 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKivEpH14 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKivEpH14 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKivEpH14 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKivEpH14 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKivEpH14 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKivEpH14 .item-img {
  overflow: hidden;
}
.cid-tFKivEpH14 .item-img img {
  width: 100%;
}
.cid-tFKivEpH14 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKivEpH14 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKivEpH14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKivEpH14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKivEU7vn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKivEU7vn .carousel {
    overflow: hidden;
  }
  .cid-tFKivEU7vn .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKivEU7vn .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKivEU7vn .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKivEU7vn .carousel,
.cid-tFKivEU7vn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKivEU7vn .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKivEU7vn .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKivEU7vn .item-wrapper {
    height: 215px;
  }
}
.cid-tFKivEU7vn .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKivEU7vn .carousel-caption {
  bottom: 40px;
}
.cid-tFKivEU7vn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKivEU7vn .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKivEU7vn .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKivEU7vn .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKivEU7vn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKivEU7vn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKivEU7vn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKivEU7vn .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKivEU7vn .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKivEU7vn .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKivEU7vn .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKivEU7vn .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKivEU7vn .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKivEU7vn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKivEU7vn .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKivEU7vn .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKivEU7vn .soc-item::before,
.cid-tFKivEU7vn .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKivEU7vn .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKivEU7vn .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKivEU7vn .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKivEU7vn .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKivEU7vn .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKivEU7vn .text {
  color: #ddc499;
}
.cid-tFKivEU7vn .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u2to0OSarX {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u2to0OSarX .carousel {
    overflow: hidden;
  }
  .cid-u2to0OSarX .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u2to0OSarX .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2to0OSarX #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u2to0OSarX #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u2to0OSarX .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u2to0OSarX .link-div {
  margin-left: 20px;
}
.cid-u2to0OSarX .link-div h3 {
  margin-left: 4px;
}
.cid-u2to0OSarX .mbr-card-title {
  color: #000e2f;
}
#custom-html-aq {
  /* Type valid CSS here */
}
#custom-html-aq .back-button {
  position: fixed;
}
.cid-tFKivFw48I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKivFw48I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKivFw48I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKivFw48I .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKivFw48I .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKivFw48I .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKivFw48I .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKivFw48I .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKivFw48I .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKivFw48I .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKivFw48I .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKivFw48I .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKivFw48I .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKivFw48I .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKivFw48I .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKivFw48I .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKivFw48I .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKivFw48I .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKivFw48I .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKivFw48I .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKivFw48I .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKivFw48I .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKivFw48I .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKivFw48I .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKivFw48I .soc-item {
    padding: 10px;
  }
}
.cid-tFKivFw48I .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKivFw48I .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKivFw48I .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKivFw48I .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKivFw48I .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKivFw48I .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKivFw48I .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKivFw48I .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKivFw48I .copyright {
    text-align: center !important;
  }
}
.cid-tFKivFw48I p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKivFw48I .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKivFw48I .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKivFw48I .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKivFw48I .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKivFw48I .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKivFw48I .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKivFw48I .card-title {
  color: #ffffff;
}
.cid-tFKivFw48I P {
  color: #22a5e5;
}
.cid-tFKiWgIxaY .navbar-dropdown {
  position: relative !important;
}
.cid-tFKiWgIxaY .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKiWgIxaY nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKiWgIxaY .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKiWgIxaY .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-tFKiWgIxaY .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKiWgIxaY .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKiWgIxaY .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKiWgIxaY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKiWgIxaY .nav-link {
  position: relative;
}
.cid-tFKiWgIxaY .container {
  display: flex;
  margin: auto;
}
.cid-tFKiWgIxaY .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKiWgIxaY .dropdown-menu,
.cid-tFKiWgIxaY .navbar.opened {
  background: #000000 !important;
}
.cid-tFKiWgIxaY .nav-item:focus,
.cid-tFKiWgIxaY .nav-link:focus {
  outline: none;
}
.cid-tFKiWgIxaY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKiWgIxaY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKiWgIxaY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKiWgIxaY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKiWgIxaY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKiWgIxaY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKiWgIxaY .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKiWgIxaY .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKiWgIxaY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKiWgIxaY .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKiWgIxaY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKiWgIxaY .navbar.collapsed {
  justify-content: center;
}
.cid-tFKiWgIxaY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKiWgIxaY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKiWgIxaY .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKiWgIxaY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKiWgIxaY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKiWgIxaY .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-tFKiWgIxaY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKiWgIxaY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKiWgIxaY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKiWgIxaY .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKiWgIxaY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKiWgIxaY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKiWgIxaY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKiWgIxaY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKiWgIxaY .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-tFKiWgIxaY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKiWgIxaY .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKiWgIxaY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKiWgIxaY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKiWgIxaY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKiWgIxaY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKiWgIxaY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKiWgIxaY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKiWgIxaY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKiWgIxaY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKiWgIxaY .dropdown-item.active,
.cid-tFKiWgIxaY .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKiWgIxaY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKiWgIxaY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKiWgIxaY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKiWgIxaY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKiWgIxaY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKiWgIxaY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKiWgIxaY ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKiWgIxaY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKiWgIxaY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKiWgIxaY button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKiWgIxaY button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKiWgIxaY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKiWgIxaY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKiWgIxaY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiWgIxaY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiWgIxaY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKiWgIxaY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiWgIxaY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKiWgIxaY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKiWgIxaY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiWgIxaY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKiWgIxaY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKiWgIxaY .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-tFKiWgIxaY .navbar {
    height: 70px;
  }
  .cid-tFKiWgIxaY .navbar.opened {
    height: auto;
  }
  .cid-tFKiWgIxaY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKiWh7byf {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiWh7byf .link a {
  background-image: none !important;
}
.cid-tFKiWh7byf .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKiWh7byf .date {
  margin-bottom: 6px;
}
.cid-tFKiWh7byf .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKiWh7byf .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKiWh7byf a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKiWh7byf rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKiWh7byf .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKiWh7byf svg {
  margin-left: 15px;
}
.cid-tFKiWh7byf path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKiWh7byf .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKiWh7byf .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKiWh7byf .row {
  justify-content: center;
}
.cid-tFKiWh7byf .p,
.cid-tFKiWh7byf .link {
  color: #767676;
}
.cid-tFKiWholE3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKiWholE3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiWholE3 .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-tFKiWholE3 .container {
    padding: 0 30px;
  }
}
.cid-tFKiWholE3 .row {
  justify-content: center;
}
.cid-tFKiWholE3 .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKiWholE3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKiWholE3 .card {
    margin-bottom: 30px;
  }
}
.cid-tFKiWholE3 .card .card-wrapper {
  display: flex;
}
.cid-tFKiWholE3 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKiWholE3 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKiWholE3 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKiWholE3 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKiWholE3 .mbr-section-title {
  color: #767676;
}
.cid-tFKiWholE3 .mbr-number {
  color: #000000;
}
.cid-tFKiWholE3 .mbr-card-title {
  color: #1070b9;
}
.cid-tFKiWholE3 .mbr-text {
  color: #767676;
}
.cid-tFKiWhFOcH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiWhFOcH .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiWhFOcH .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKiWhFOcH .row {
  justify-content: space-between;
}
.cid-tFKiWhFOcH .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKiWhFOcH .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKiWhFOcH .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKiWhFOcH .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKiWhFOcH .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKiWhFOcH .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKiWhFOcH .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKiWhFOcH .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKiWhFOcH .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKiWhFOcH .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKiWhFOcH .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKiWhFOcH .link,
.cid-tFKiWhFOcH .link-icon {
  color: #000000;
}
.cid-tFKiWhFOcH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiWhFOcH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiWhFOcH .mbr-text,
.cid-tFKiWhFOcH .mbr-section-btn {
  color: #767676;
}
.cid-tFKiWhZxth {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKiWhZxth .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKiWhZxth .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKiWhZxth .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKiWhZxth .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKiWhZxth .box {
  right: 20%;
}
.cid-tFKiWhZxth .text-box {
  right: 0;
}
.cid-tFKiWhZxth .mbr-section-title,
.cid-tFKiWhZxth .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKiWhZxth .text-box {
    display: none;
  }
  .cid-tFKiWhZxth .mbr-section-title,
  .cid-tFKiWhZxth .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKiWhZxth .box {
    display: none;
  }
  .cid-tFKiWhZxth .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKiWhZxth .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKiWhZxth .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKiWhZxth .mbr-section-text {
  color: #767676;
}
.cid-tFKiWhZxth .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiWijbjr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKiWijbjr .box {
  margin-bottom: 15px;
}
.cid-tFKiWijbjr .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKiWijbjr .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKiWijbjr .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKiWijbjr .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKiWijbjr .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKiWijbjr .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKiWijbjr .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKiWijbjr .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKiWijbjr .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKiWijbjr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKiWijbjr .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKiWijbjr .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKiWijbjr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKiWijbjr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKiWijbjr .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKiWijbjr .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKiWijbjr .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKiWijbjr .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKiWijbjr .item-img {
  overflow: hidden;
}
.cid-tFKiWijbjr .item-img img {
  width: 100%;
}
.cid-tFKiWijbjr .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKiWijbjr .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKiWijbjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiWijbjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiWiOFRc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKiWiOFRc .carousel {
    overflow: hidden;
  }
  .cid-tFKiWiOFRc .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKiWiOFRc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKiWiOFRc .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKiWiOFRc .carousel,
.cid-tFKiWiOFRc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKiWiOFRc .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKiWiOFRc .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKiWiOFRc .item-wrapper {
    height: 215px;
  }
}
.cid-tFKiWiOFRc .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKiWiOFRc .carousel-caption {
  bottom: 40px;
}
.cid-tFKiWiOFRc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKiWiOFRc .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKiWiOFRc .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKiWiOFRc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKiWiOFRc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKiWiOFRc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKiWiOFRc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKiWiOFRc .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKiWiOFRc .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKiWiOFRc .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKiWiOFRc .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKiWiOFRc .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKiWiOFRc .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKiWiOFRc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKiWiOFRc .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKiWiOFRc .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKiWiOFRc .soc-item::before,
.cid-tFKiWiOFRc .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKiWiOFRc .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKiWiOFRc .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKiWiOFRc .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKiWiOFRc .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKiWiOFRc .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKiWiOFRc .text {
  color: #ddc499;
}
.cid-tFKiWiOFRc .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBcoIQqHL {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcoIQqHL .carousel {
    overflow: hidden;
  }
  .cid-tGBcoIQqHL .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcoIQqHL .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcoIQqHL #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcoIQqHL #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcoIQqHL .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcoIQqHL .link-div {
  margin-left: 20px;
}
.cid-tGBcoIQqHL .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcoIQqHL .mbr-card-title {
  color: #000e2f;
}
#custom-html-bu {
  /* Type valid CSS here */
}
#custom-html-bu .back-button {
  position: fixed;
}
.cid-tFKiWjp614 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKiWjp614 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiWjp614 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiWjp614 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKiWjp614 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKiWjp614 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKiWjp614 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKiWjp614 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKiWjp614 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiWjp614 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKiWjp614 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiWjp614 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKiWjp614 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKiWjp614 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKiWjp614 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKiWjp614 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKiWjp614 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKiWjp614 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKiWjp614 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKiWjp614 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKiWjp614 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKiWjp614 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKiWjp614 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKiWjp614 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKiWjp614 .soc-item {
    padding: 10px;
  }
}
.cid-tFKiWjp614 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKiWjp614 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKiWjp614 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKiWjp614 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKiWjp614 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKiWjp614 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiWjp614 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKiWjp614 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKiWjp614 .copyright {
    text-align: center !important;
  }
}
.cid-tFKiWjp614 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKiWjp614 .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKiWjp614 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKiWjp614 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKiWjp614 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiWjp614 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKiWjp614 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKiWjp614 .card-title {
  color: #ffffff;
}
.cid-tFKiWjp614 P {
  color: #22a5e5;
}
.cid-tFKiC4uU8B .navbar-dropdown {
  position: relative !important;
}
.cid-tFKiC4uU8B .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKiC4uU8B nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKiC4uU8B .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKiC4uU8B .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-tFKiC4uU8B .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKiC4uU8B .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKiC4uU8B .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKiC4uU8B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKiC4uU8B .nav-link {
  position: relative;
}
.cid-tFKiC4uU8B .container {
  display: flex;
  margin: auto;
}
.cid-tFKiC4uU8B .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKiC4uU8B .dropdown-menu,
.cid-tFKiC4uU8B .navbar.opened {
  background: #000000 !important;
}
.cid-tFKiC4uU8B .nav-item:focus,
.cid-tFKiC4uU8B .nav-link:focus {
  outline: none;
}
.cid-tFKiC4uU8B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKiC4uU8B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKiC4uU8B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKiC4uU8B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKiC4uU8B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKiC4uU8B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKiC4uU8B .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKiC4uU8B .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKiC4uU8B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKiC4uU8B .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKiC4uU8B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKiC4uU8B .navbar.collapsed {
  justify-content: center;
}
.cid-tFKiC4uU8B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKiC4uU8B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKiC4uU8B .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKiC4uU8B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKiC4uU8B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKiC4uU8B .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-tFKiC4uU8B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKiC4uU8B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKiC4uU8B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKiC4uU8B .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKiC4uU8B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKiC4uU8B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKiC4uU8B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKiC4uU8B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKiC4uU8B .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-tFKiC4uU8B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKiC4uU8B .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKiC4uU8B .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKiC4uU8B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKiC4uU8B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKiC4uU8B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKiC4uU8B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKiC4uU8B .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKiC4uU8B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKiC4uU8B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKiC4uU8B .dropdown-item.active,
.cid-tFKiC4uU8B .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKiC4uU8B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKiC4uU8B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKiC4uU8B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKiC4uU8B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKiC4uU8B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKiC4uU8B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKiC4uU8B ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKiC4uU8B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKiC4uU8B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKiC4uU8B button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKiC4uU8B button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKiC4uU8B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKiC4uU8B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKiC4uU8B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiC4uU8B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiC4uU8B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKiC4uU8B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiC4uU8B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKiC4uU8B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKiC4uU8B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiC4uU8B .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKiC4uU8B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKiC4uU8B .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-tFKiC4uU8B .navbar {
    height: 70px;
  }
  .cid-tFKiC4uU8B .navbar.opened {
    height: auto;
  }
  .cid-tFKiC4uU8B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKiC4Tz1N {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiC4Tz1N .link a {
  background-image: none !important;
}
.cid-tFKiC4Tz1N .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKiC4Tz1N .date {
  margin-bottom: 6px;
}
.cid-tFKiC4Tz1N .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKiC4Tz1N .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKiC4Tz1N a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKiC4Tz1N rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKiC4Tz1N .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKiC4Tz1N svg {
  margin-left: 15px;
}
.cid-tFKiC4Tz1N path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKiC4Tz1N .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKiC4Tz1N .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKiC4Tz1N .row {
  justify-content: center;
}
.cid-tFKiC4Tz1N .p,
.cid-tFKiC4Tz1N .link {
  color: #767676;
}
.cid-tFKiC5a1pV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKiC5a1pV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiC5a1pV .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-tFKiC5a1pV .container {
    padding: 0 30px;
  }
}
.cid-tFKiC5a1pV .row {
  justify-content: center;
}
.cid-tFKiC5a1pV .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKiC5a1pV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKiC5a1pV .card {
    margin-bottom: 30px;
  }
}
.cid-tFKiC5a1pV .card .card-wrapper {
  display: flex;
}
.cid-tFKiC5a1pV .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKiC5a1pV .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKiC5a1pV .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKiC5a1pV .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKiC5a1pV .mbr-section-title {
  color: #767676;
}
.cid-tFKiC5a1pV .mbr-number {
  color: #000000;
}
.cid-tFKiC5a1pV .mbr-card-title {
  color: #1070b9;
}
.cid-tFKiC5a1pV .mbr-text {
  color: #767676;
}
.cid-tFKiC5sUDb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiC5sUDb .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiC5sUDb .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKiC5sUDb .row {
  justify-content: space-between;
}
.cid-tFKiC5sUDb .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKiC5sUDb .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKiC5sUDb .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKiC5sUDb .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKiC5sUDb .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKiC5sUDb .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKiC5sUDb .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKiC5sUDb .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKiC5sUDb .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKiC5sUDb .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKiC5sUDb .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKiC5sUDb .link,
.cid-tFKiC5sUDb .link-icon {
  color: #000000;
}
.cid-tFKiC5sUDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiC5sUDb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiC5sUDb .mbr-text,
.cid-tFKiC5sUDb .mbr-section-btn {
  color: #353535;
}
.cid-tFKiC5Jjym {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKiC5Jjym .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKiC5Jjym .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKiC5Jjym .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKiC5Jjym .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKiC5Jjym .box {
  right: 20%;
}
.cid-tFKiC5Jjym .text-box {
  right: 0;
}
.cid-tFKiC5Jjym .mbr-section-title,
.cid-tFKiC5Jjym .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKiC5Jjym .text-box {
    display: none;
  }
  .cid-tFKiC5Jjym .mbr-section-title,
  .cid-tFKiC5Jjym .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKiC5Jjym .box {
    display: none;
  }
  .cid-tFKiC5Jjym .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKiC5Jjym .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKiC5Jjym .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKiC5Jjym .mbr-section-text {
  color: #767676;
}
.cid-tFKiC5Jjym .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiC65YOj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKiC65YOj .box {
  margin-bottom: 15px;
}
.cid-tFKiC65YOj .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKiC65YOj .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKiC65YOj .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKiC65YOj .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKiC65YOj .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKiC65YOj .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKiC65YOj .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKiC65YOj .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKiC65YOj .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKiC65YOj .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKiC65YOj .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKiC65YOj .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKiC65YOj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKiC65YOj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKiC65YOj .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKiC65YOj .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKiC65YOj .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKiC65YOj .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKiC65YOj .item-img {
  overflow: hidden;
}
.cid-tFKiC65YOj .item-img img {
  width: 100%;
}
.cid-tFKiC65YOj .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKiC65YOj .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKiC65YOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiC65YOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiC6zwj3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKiC6zwj3 .carousel {
    overflow: hidden;
  }
  .cid-tFKiC6zwj3 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKiC6zwj3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKiC6zwj3 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKiC6zwj3 .carousel,
.cid-tFKiC6zwj3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKiC6zwj3 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKiC6zwj3 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKiC6zwj3 .item-wrapper {
    height: 215px;
  }
}
.cid-tFKiC6zwj3 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKiC6zwj3 .carousel-caption {
  bottom: 40px;
}
.cid-tFKiC6zwj3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKiC6zwj3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKiC6zwj3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKiC6zwj3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKiC6zwj3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKiC6zwj3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKiC6zwj3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKiC6zwj3 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKiC6zwj3 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKiC6zwj3 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKiC6zwj3 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKiC6zwj3 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKiC6zwj3 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKiC6zwj3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKiC6zwj3 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKiC6zwj3 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKiC6zwj3 .soc-item::before,
.cid-tFKiC6zwj3 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKiC6zwj3 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKiC6zwj3 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKiC6zwj3 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKiC6zwj3 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKiC6zwj3 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKiC6zwj3 .text {
  color: #ddc499;
}
.cid-tFKiC6zwj3 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBbMFSNHi {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBbMFSNHi .carousel {
    overflow: hidden;
  }
  .cid-tGBbMFSNHi .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBbMFSNHi .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBbMFSNHi #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBbMFSNHi #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBbMFSNHi .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBbMFSNHi .link-div {
  margin-left: 20px;
}
.cid-tGBbMFSNHi .link-div h3 {
  margin-left: 4px;
}
.cid-tGBbMFSNHi .mbr-card-title {
  color: #000e2f;
}
#custom-html-b0 {
  /* Type valid CSS here */
}
#custom-html-b0 .back-button {
  position: fixed;
}
.cid-tFKiC7aojt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKiC7aojt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiC7aojt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiC7aojt .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKiC7aojt .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKiC7aojt .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKiC7aojt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKiC7aojt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKiC7aojt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiC7aojt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKiC7aojt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiC7aojt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKiC7aojt .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKiC7aojt .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKiC7aojt .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKiC7aojt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKiC7aojt .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKiC7aojt .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKiC7aojt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKiC7aojt .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKiC7aojt .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKiC7aojt .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKiC7aojt .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKiC7aojt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKiC7aojt .soc-item {
    padding: 10px;
  }
}
.cid-tFKiC7aojt .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKiC7aojt .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKiC7aojt .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKiC7aojt .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKiC7aojt .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKiC7aojt .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiC7aojt .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKiC7aojt .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKiC7aojt .copyright {
    text-align: center !important;
  }
}
.cid-tFKiC7aojt p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKiC7aojt .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKiC7aojt .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKiC7aojt .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKiC7aojt .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiC7aojt .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKiC7aojt .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKiC7aojt .card-title {
  color: #ffffff;
}
.cid-tFKiC7aojt P {
  color: #22a5e5;
}
.cid-tFKg544dbC .navbar-dropdown {
  position: relative !important;
}
.cid-tFKg544dbC .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKg544dbC nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKg544dbC .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKg544dbC .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-tFKg544dbC .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKg544dbC .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKg544dbC .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKg544dbC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKg544dbC .nav-link {
  position: relative;
}
.cid-tFKg544dbC .container {
  display: flex;
  margin: auto;
}
.cid-tFKg544dbC .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKg544dbC .dropdown-menu,
.cid-tFKg544dbC .navbar.opened {
  background: #000000 !important;
}
.cid-tFKg544dbC .nav-item:focus,
.cid-tFKg544dbC .nav-link:focus {
  outline: none;
}
.cid-tFKg544dbC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKg544dbC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKg544dbC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKg544dbC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKg544dbC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKg544dbC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKg544dbC .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKg544dbC .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKg544dbC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKg544dbC .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKg544dbC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKg544dbC .navbar.collapsed {
  justify-content: center;
}
.cid-tFKg544dbC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKg544dbC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKg544dbC .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKg544dbC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKg544dbC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKg544dbC .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-tFKg544dbC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKg544dbC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKg544dbC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKg544dbC .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKg544dbC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKg544dbC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKg544dbC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKg544dbC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKg544dbC .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-tFKg544dbC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKg544dbC .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKg544dbC .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKg544dbC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKg544dbC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKg544dbC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKg544dbC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKg544dbC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKg544dbC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKg544dbC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKg544dbC .dropdown-item.active,
.cid-tFKg544dbC .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKg544dbC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKg544dbC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKg544dbC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKg544dbC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKg544dbC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKg544dbC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKg544dbC ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKg544dbC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKg544dbC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKg544dbC button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKg544dbC button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKg544dbC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKg544dbC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKg544dbC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg544dbC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg544dbC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKg544dbC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg544dbC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKg544dbC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKg544dbC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg544dbC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKg544dbC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKg544dbC .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-tFKg544dbC .navbar {
    height: 70px;
  }
  .cid-tFKg544dbC .navbar.opened {
    height: auto;
  }
  .cid-tFKg544dbC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKg54sSPj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg54sSPj .link a {
  background-image: none !important;
}
.cid-tFKg54sSPj .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKg54sSPj .date {
  margin-bottom: 6px;
}
.cid-tFKg54sSPj .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKg54sSPj .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKg54sSPj a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKg54sSPj rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKg54sSPj .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKg54sSPj svg {
  margin-left: 15px;
}
.cid-tFKg54sSPj path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKg54sSPj .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKg54sSPj .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKg54sSPj .row {
  justify-content: center;
}
.cid-tFKg54sSPj .p,
.cid-tFKg54sSPj .link {
  color: #767676;
}
.cid-tFKg54N9v3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKg54N9v3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg54N9v3 .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-tFKg54N9v3 .container {
    padding: 0 30px;
  }
}
.cid-tFKg54N9v3 .row {
  justify-content: center;
}
.cid-tFKg54N9v3 .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKg54N9v3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKg54N9v3 .card {
    margin-bottom: 30px;
  }
}
.cid-tFKg54N9v3 .card .card-wrapper {
  display: flex;
}
.cid-tFKg54N9v3 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKg54N9v3 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKg54N9v3 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKg54N9v3 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKg54N9v3 .mbr-section-title {
  color: #767676;
}
.cid-tFKg54N9v3 .mbr-number {
  color: #000000;
}
.cid-tFKg54N9v3 .mbr-card-title {
  color: #1070b9;
}
.cid-tFKg54N9v3 .mbr-text {
  color: #767676;
}
.cid-tFKg555pXK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg555pXK .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg555pXK .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKg555pXK .row {
  justify-content: space-between;
}
.cid-tFKg555pXK .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKg555pXK .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKg555pXK .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKg555pXK .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKg555pXK .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKg555pXK .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKg555pXK .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKg555pXK .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKg555pXK .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKg555pXK .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKg555pXK .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKg555pXK .link,
.cid-tFKg555pXK .link-icon {
  color: #000000;
}
.cid-tFKg555pXK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg555pXK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg555pXK .mbr-text,
.cid-tFKg555pXK .mbr-section-btn {
  color: #767676;
}
.cid-tFKg55n7Gx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKg55n7Gx .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKg55n7Gx .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKg55n7Gx .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKg55n7Gx .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKg55n7Gx .box {
  right: 20%;
}
.cid-tFKg55n7Gx .text-box {
  right: 0;
}
.cid-tFKg55n7Gx .mbr-section-title,
.cid-tFKg55n7Gx .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKg55n7Gx .text-box {
    display: none;
  }
  .cid-tFKg55n7Gx .mbr-section-title,
  .cid-tFKg55n7Gx .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKg55n7Gx .box {
    display: none;
  }
  .cid-tFKg55n7Gx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKg55n7Gx .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKg55n7Gx .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKg55n7Gx .mbr-section-text {
  color: #767676;
}
.cid-tFKg55n7Gx .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg55IBby {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKg55IBby .box {
  margin-bottom: 15px;
}
.cid-tFKg55IBby .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKg55IBby .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKg55IBby .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKg55IBby .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKg55IBby .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKg55IBby .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKg55IBby .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKg55IBby .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKg55IBby .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKg55IBby .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKg55IBby .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKg55IBby .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKg55IBby .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKg55IBby .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKg55IBby .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKg55IBby .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKg55IBby .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKg55IBby .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKg55IBby .item-img {
  overflow: hidden;
}
.cid-tFKg55IBby .item-img img {
  width: 100%;
}
.cid-tFKg55IBby .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKg55IBby .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKg55IBby .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg55IBby .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg56b8z2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKg56b8z2 .carousel {
    overflow: hidden;
  }
  .cid-tFKg56b8z2 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKg56b8z2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKg56b8z2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKg56b8z2 .carousel,
.cid-tFKg56b8z2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKg56b8z2 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKg56b8z2 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKg56b8z2 .item-wrapper {
    height: 215px;
  }
}
.cid-tFKg56b8z2 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKg56b8z2 .carousel-caption {
  bottom: 40px;
}
.cid-tFKg56b8z2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKg56b8z2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKg56b8z2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKg56b8z2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKg56b8z2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKg56b8z2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKg56b8z2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKg56b8z2 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg56b8z2 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKg56b8z2 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg56b8z2 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKg56b8z2 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKg56b8z2 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKg56b8z2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKg56b8z2 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKg56b8z2 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKg56b8z2 .soc-item::before,
.cid-tFKg56b8z2 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKg56b8z2 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKg56b8z2 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKg56b8z2 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKg56b8z2 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKg56b8z2 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKg56b8z2 .text {
  color: #ddc499;
}
.cid-tFKg56b8z2 .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-7y {
  /* Type valid CSS here */
}
#custom-html-7y .back-button {
  position: fixed;
}
.cid-tGBcebMblH {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcebMblH .carousel {
    overflow: hidden;
  }
  .cid-tGBcebMblH .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcebMblH .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcebMblH #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcebMblH #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcebMblH .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcebMblH .link-div {
  margin-left: 20px;
}
.cid-tGBcebMblH .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcebMblH .mbr-card-title {
  color: #000e2f;
}
.cid-tFKg56OFxN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKg56OFxN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg56OFxN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg56OFxN .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKg56OFxN .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKg56OFxN .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKg56OFxN .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKg56OFxN .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKg56OFxN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg56OFxN .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKg56OFxN .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg56OFxN .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKg56OFxN .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKg56OFxN .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKg56OFxN .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKg56OFxN .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKg56OFxN .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKg56OFxN .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKg56OFxN .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKg56OFxN .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKg56OFxN .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKg56OFxN .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKg56OFxN .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKg56OFxN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKg56OFxN .soc-item {
    padding: 10px;
  }
}
.cid-tFKg56OFxN .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKg56OFxN .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKg56OFxN .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKg56OFxN .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKg56OFxN .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKg56OFxN .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg56OFxN .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKg56OFxN .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKg56OFxN .copyright {
    text-align: center !important;
  }
}
.cid-tFKg56OFxN p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKg56OFxN .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKg56OFxN .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKg56OFxN .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKg56OFxN .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg56OFxN .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKg56OFxN .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKg56OFxN .card-title {
  color: #ffffff;
}
.cid-tFKg56OFxN P {
  color: #22a5e5;
}
.cid-tFKg337Sh7 .navbar-dropdown {
  position: relative !important;
}
.cid-tFKg337Sh7 .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKg337Sh7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKg337Sh7 .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKg337Sh7 .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-tFKg337Sh7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKg337Sh7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKg337Sh7 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKg337Sh7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKg337Sh7 .nav-link {
  position: relative;
}
.cid-tFKg337Sh7 .container {
  display: flex;
  margin: auto;
}
.cid-tFKg337Sh7 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKg337Sh7 .dropdown-menu,
.cid-tFKg337Sh7 .navbar.opened {
  background: #000000 !important;
}
.cid-tFKg337Sh7 .nav-item:focus,
.cid-tFKg337Sh7 .nav-link:focus {
  outline: none;
}
.cid-tFKg337Sh7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKg337Sh7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKg337Sh7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKg337Sh7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKg337Sh7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKg337Sh7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKg337Sh7 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKg337Sh7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKg337Sh7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKg337Sh7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKg337Sh7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKg337Sh7 .navbar.collapsed {
  justify-content: center;
}
.cid-tFKg337Sh7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKg337Sh7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKg337Sh7 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKg337Sh7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKg337Sh7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKg337Sh7 .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-tFKg337Sh7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKg337Sh7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKg337Sh7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKg337Sh7 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKg337Sh7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKg337Sh7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKg337Sh7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKg337Sh7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKg337Sh7 .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-tFKg337Sh7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKg337Sh7 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKg337Sh7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKg337Sh7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKg337Sh7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKg337Sh7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKg337Sh7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKg337Sh7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKg337Sh7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKg337Sh7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKg337Sh7 .dropdown-item.active,
.cid-tFKg337Sh7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKg337Sh7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKg337Sh7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKg337Sh7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKg337Sh7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKg337Sh7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKg337Sh7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKg337Sh7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKg337Sh7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKg337Sh7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKg337Sh7 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKg337Sh7 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKg337Sh7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKg337Sh7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKg337Sh7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg337Sh7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg337Sh7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKg337Sh7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg337Sh7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKg337Sh7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKg337Sh7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg337Sh7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKg337Sh7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKg337Sh7 .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-tFKg337Sh7 .navbar {
    height: 70px;
  }
  .cid-tFKg337Sh7 .navbar.opened {
    height: auto;
  }
  .cid-tFKg337Sh7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKg33H3AP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg33H3AP .link a {
  background-image: none !important;
}
.cid-tFKg33H3AP .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKg33H3AP .date {
  margin-bottom: 6px;
}
.cid-tFKg33H3AP .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKg33H3AP .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKg33H3AP a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKg33H3AP rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKg33H3AP .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKg33H3AP svg {
  margin-left: 15px;
}
.cid-tFKg33H3AP path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKg33H3AP .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKg33H3AP .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKg33H3AP .row {
  justify-content: center;
}
.cid-tFKg33H3AP .p,
.cid-tFKg33H3AP .link {
  color: #767676;
}
.cid-tFKg342gQi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKg342gQi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg342gQi .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-tFKg342gQi .container {
    padding: 0 30px;
  }
}
.cid-tFKg342gQi .row {
  justify-content: center;
}
.cid-tFKg342gQi .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKg342gQi .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKg342gQi .card {
    margin-bottom: 30px;
  }
}
.cid-tFKg342gQi .card .card-wrapper {
  display: flex;
}
.cid-tFKg342gQi .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKg342gQi .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKg342gQi .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKg342gQi .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKg342gQi .mbr-section-title {
  color: #767676;
}
.cid-tFKg342gQi .mbr-number {
  color: #000000;
}
.cid-tFKg342gQi .mbr-card-title {
  color: #1070b9;
}
.cid-tFKg342gQi .mbr-text {
  color: #767676;
}
.cid-tFKg34BYK3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg34BYK3 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg34BYK3 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKg34BYK3 .row {
  justify-content: space-between;
}
.cid-tFKg34BYK3 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKg34BYK3 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKg34BYK3 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKg34BYK3 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKg34BYK3 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKg34BYK3 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKg34BYK3 .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKg34BYK3 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKg34BYK3 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKg34BYK3 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKg34BYK3 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKg34BYK3 .link,
.cid-tFKg34BYK3 .link-icon {
  color: #000000;
}
.cid-tFKg34BYK3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg34BYK3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg34BYK3 .mbr-text,
.cid-tFKg34BYK3 .mbr-section-btn {
  color: #767676;
}
.cid-tFKg34Vh7i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKg34Vh7i .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKg34Vh7i .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKg34Vh7i .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKg34Vh7i .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKg34Vh7i .box {
  right: 20%;
}
.cid-tFKg34Vh7i .text-box {
  right: 0;
}
.cid-tFKg34Vh7i .mbr-section-title,
.cid-tFKg34Vh7i .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKg34Vh7i .text-box {
    display: none;
  }
  .cid-tFKg34Vh7i .mbr-section-title,
  .cid-tFKg34Vh7i .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKg34Vh7i .box {
    display: none;
  }
  .cid-tFKg34Vh7i .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKg34Vh7i .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKg34Vh7i .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKg34Vh7i .mbr-section-text {
  color: #767676;
}
.cid-tFKg34Vh7i .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg35wO64 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKg35wO64 .box {
  margin-bottom: 15px;
}
.cid-tFKg35wO64 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKg35wO64 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKg35wO64 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKg35wO64 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKg35wO64 .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKg35wO64 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKg35wO64 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKg35wO64 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKg35wO64 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKg35wO64 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKg35wO64 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKg35wO64 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKg35wO64 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKg35wO64 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKg35wO64 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKg35wO64 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKg35wO64 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKg35wO64 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKg35wO64 .item-img {
  overflow: hidden;
}
.cid-tFKg35wO64 .item-img img {
  width: 100%;
}
.cid-tFKg35wO64 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKg35wO64 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKg35wO64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg35wO64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg36HPUs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKg36HPUs .carousel {
    overflow: hidden;
  }
  .cid-tFKg36HPUs .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKg36HPUs .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKg36HPUs .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKg36HPUs .carousel,
.cid-tFKg36HPUs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKg36HPUs .item-wrapper {
  height: 100%;
  width: 100%;
}
.cid-tFKg36HPUs .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKg36HPUs .carousel-caption {
  bottom: 40px;
}
.cid-tFKg36HPUs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKg36HPUs .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKg36HPUs .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKg36HPUs .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKg36HPUs .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKg36HPUs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKg36HPUs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKg36HPUs .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg36HPUs .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKg36HPUs .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg36HPUs .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKg36HPUs .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKg36HPUs .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKg36HPUs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKg36HPUs .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKg36HPUs .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKg36HPUs .soc-item::before,
.cid-tFKg36HPUs .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKg36HPUs .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKg36HPUs .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKg36HPUs .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKg36HPUs .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKg36HPUs .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKg36HPUs .text {
  color: #ddc499;
}
.cid-tFKg36HPUs .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-6u {
  /* Type valid CSS here */
}
#custom-html-6u .back-button {
  position: fixed;
}
.cid-tGB50HPG6E {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB50HPG6E .carousel {
    overflow: hidden;
  }
  .cid-tGB50HPG6E .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB50HPG6E .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB50HPG6E #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB50HPG6E #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB50HPG6E .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB50HPG6E .link-div {
  margin-left: 20px;
}
.cid-tGB50HPG6E .link-div h3 {
  margin-left: 4px;
}
.cid-tGB50HPG6E .mbr-card-title {
  color: #000e2f;
}
.cid-tFKg37GZd7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKg37GZd7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg37GZd7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg37GZd7 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKg37GZd7 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKg37GZd7 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKg37GZd7 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKg37GZd7 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKg37GZd7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg37GZd7 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKg37GZd7 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg37GZd7 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKg37GZd7 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKg37GZd7 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKg37GZd7 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKg37GZd7 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKg37GZd7 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKg37GZd7 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKg37GZd7 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKg37GZd7 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKg37GZd7 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKg37GZd7 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKg37GZd7 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKg37GZd7 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKg37GZd7 .soc-item {
    padding: 10px;
  }
}
.cid-tFKg37GZd7 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKg37GZd7 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKg37GZd7 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKg37GZd7 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKg37GZd7 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKg37GZd7 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg37GZd7 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKg37GZd7 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKg37GZd7 .copyright {
    text-align: center !important;
  }
}
.cid-tFKg37GZd7 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKg37GZd7 .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKg37GZd7 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKg37GZd7 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKg37GZd7 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg37GZd7 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKg37GZd7 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKg37GZd7 .card-title {
  color: #ffffff;
}
.cid-tFKg37GZd7 P {
  color: #22a5e5;
}
.cid-tFKiSVjxv4 .navbar-dropdown {
  position: relative !important;
}
.cid-tFKiSVjxv4 .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKiSVjxv4 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKiSVjxv4 .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKiSVjxv4 .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-tFKiSVjxv4 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKiSVjxv4 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKiSVjxv4 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKiSVjxv4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKiSVjxv4 .nav-link {
  position: relative;
}
.cid-tFKiSVjxv4 .container {
  display: flex;
  margin: auto;
}
.cid-tFKiSVjxv4 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKiSVjxv4 .dropdown-menu,
.cid-tFKiSVjxv4 .navbar.opened {
  background: #000000 !important;
}
.cid-tFKiSVjxv4 .nav-item:focus,
.cid-tFKiSVjxv4 .nav-link:focus {
  outline: none;
}
.cid-tFKiSVjxv4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKiSVjxv4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKiSVjxv4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKiSVjxv4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKiSVjxv4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKiSVjxv4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKiSVjxv4 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKiSVjxv4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKiSVjxv4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKiSVjxv4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKiSVjxv4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKiSVjxv4 .navbar.collapsed {
  justify-content: center;
}
.cid-tFKiSVjxv4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKiSVjxv4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKiSVjxv4 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKiSVjxv4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKiSVjxv4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKiSVjxv4 .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-tFKiSVjxv4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKiSVjxv4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKiSVjxv4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKiSVjxv4 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKiSVjxv4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKiSVjxv4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKiSVjxv4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKiSVjxv4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKiSVjxv4 .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-tFKiSVjxv4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKiSVjxv4 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKiSVjxv4 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKiSVjxv4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKiSVjxv4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKiSVjxv4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKiSVjxv4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKiSVjxv4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKiSVjxv4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKiSVjxv4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKiSVjxv4 .dropdown-item.active,
.cid-tFKiSVjxv4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKiSVjxv4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKiSVjxv4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKiSVjxv4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKiSVjxv4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKiSVjxv4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKiSVjxv4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKiSVjxv4 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKiSVjxv4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKiSVjxv4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKiSVjxv4 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKiSVjxv4 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKiSVjxv4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKiSVjxv4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKiSVjxv4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiSVjxv4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiSVjxv4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKiSVjxv4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiSVjxv4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKiSVjxv4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKiSVjxv4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiSVjxv4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKiSVjxv4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKiSVjxv4 .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-tFKiSVjxv4 .navbar {
    height: 70px;
  }
  .cid-tFKiSVjxv4 .navbar.opened {
    height: auto;
  }
  .cid-tFKiSVjxv4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKiSVJnyL {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiSVJnyL .link a {
  background-image: none !important;
}
.cid-tFKiSVJnyL .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKiSVJnyL .date {
  margin-bottom: 6px;
}
.cid-tFKiSVJnyL .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKiSVJnyL .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKiSVJnyL a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKiSVJnyL rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKiSVJnyL .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKiSVJnyL svg {
  margin-left: 15px;
}
.cid-tFKiSVJnyL path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKiSVJnyL .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKiSVJnyL .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKiSVJnyL .row {
  justify-content: center;
}
.cid-tFKiSVJnyL .p,
.cid-tFKiSVJnyL .link {
  color: #767676;
}
.cid-tFKiSW1ZAb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKiSW1ZAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiSW1ZAb .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-tFKiSW1ZAb .container {
    padding: 0 30px;
  }
}
.cid-tFKiSW1ZAb .row {
  justify-content: center;
}
.cid-tFKiSW1ZAb .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKiSW1ZAb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKiSW1ZAb .card {
    margin-bottom: 30px;
  }
}
.cid-tFKiSW1ZAb .card .card-wrapper {
  display: flex;
}
.cid-tFKiSW1ZAb .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKiSW1ZAb .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKiSW1ZAb .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKiSW1ZAb .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKiSW1ZAb .mbr-section-title {
  color: #767676;
}
.cid-tFKiSW1ZAb .mbr-number {
  color: #000000;
}
.cid-tFKiSW1ZAb .mbr-card-title {
  color: #1070b9;
}
.cid-tFKiSW1ZAb .mbr-text {
  color: #767676;
}
.cid-tFKiSWjH2O {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiSWjH2O .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiSWjH2O .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKiSWjH2O .row {
  justify-content: space-between;
}
.cid-tFKiSWjH2O .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKiSWjH2O .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKiSWjH2O .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKiSWjH2O .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKiSWjH2O .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKiSWjH2O .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKiSWjH2O .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKiSWjH2O .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKiSWjH2O .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKiSWjH2O .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKiSWjH2O .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKiSWjH2O .link,
.cid-tFKiSWjH2O .link-icon {
  color: #000000;
}
.cid-tFKiSWjH2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiSWjH2O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiSWjH2O .mbr-text,
.cid-tFKiSWjH2O .mbr-section-btn {
  color: #767676;
}
.cid-tFKiSWCaOZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKiSWCaOZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKiSWCaOZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKiSWCaOZ .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKiSWCaOZ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKiSWCaOZ .box {
  right: 20%;
}
.cid-tFKiSWCaOZ .text-box {
  right: 0;
}
.cid-tFKiSWCaOZ .mbr-section-title,
.cid-tFKiSWCaOZ .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKiSWCaOZ .text-box {
    display: none;
  }
  .cid-tFKiSWCaOZ .mbr-section-title,
  .cid-tFKiSWCaOZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKiSWCaOZ .box {
    display: none;
  }
  .cid-tFKiSWCaOZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKiSWCaOZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKiSWCaOZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKiSWCaOZ .mbr-section-text {
  color: #767676;
}
.cid-tFKiSWCaOZ .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiSWZOoH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKiSWZOoH .box {
  margin-bottom: 15px;
}
.cid-tFKiSWZOoH .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKiSWZOoH .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKiSWZOoH .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKiSWZOoH .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKiSWZOoH .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKiSWZOoH .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKiSWZOoH .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKiSWZOoH .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKiSWZOoH .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKiSWZOoH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKiSWZOoH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKiSWZOoH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKiSWZOoH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKiSWZOoH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKiSWZOoH .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKiSWZOoH .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKiSWZOoH .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKiSWZOoH .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKiSWZOoH .item-img {
  overflow: hidden;
}
.cid-tFKiSWZOoH .item-img img {
  width: 100%;
}
.cid-tFKiSWZOoH .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKiSWZOoH .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKiSWZOoH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiSWZOoH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiSXuoLT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKiSXuoLT .carousel {
    overflow: hidden;
  }
  .cid-tFKiSXuoLT .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKiSXuoLT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKiSXuoLT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKiSXuoLT .carousel,
.cid-tFKiSXuoLT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKiSXuoLT .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKiSXuoLT .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKiSXuoLT .item-wrapper {
    height: 215px;
  }
}
.cid-tFKiSXuoLT .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKiSXuoLT .carousel-caption {
  bottom: 40px;
}
.cid-tFKiSXuoLT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKiSXuoLT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKiSXuoLT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKiSXuoLT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKiSXuoLT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKiSXuoLT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKiSXuoLT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKiSXuoLT .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKiSXuoLT .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKiSXuoLT .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKiSXuoLT .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKiSXuoLT .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKiSXuoLT .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKiSXuoLT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKiSXuoLT .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKiSXuoLT .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKiSXuoLT .soc-item::before,
.cid-tFKiSXuoLT .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKiSXuoLT .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKiSXuoLT .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKiSXuoLT .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKiSXuoLT .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKiSXuoLT .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKiSXuoLT .text {
  color: #ddc499;
}
.cid-tFKiSXuoLT .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB5WypYnw {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB5WypYnw .carousel {
    overflow: hidden;
  }
  .cid-tGB5WypYnw .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB5WypYnw .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB5WypYnw #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB5WypYnw #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB5WypYnw .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB5WypYnw .link-div {
  margin-left: 20px;
}
.cid-tGB5WypYnw .link-div h3 {
  margin-left: 4px;
}
.cid-tGB5WypYnw .mbr-card-title {
  color: #000e2f;
}
#custom-html-bk {
  /* Type valid CSS here */
}
#custom-html-bk .back-button {
  position: fixed;
}
.cid-tFKiSY6pMr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKiSY6pMr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiSY6pMr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiSY6pMr .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKiSY6pMr .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKiSY6pMr .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKiSY6pMr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKiSY6pMr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKiSY6pMr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiSY6pMr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKiSY6pMr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiSY6pMr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKiSY6pMr .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKiSY6pMr .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKiSY6pMr .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKiSY6pMr .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKiSY6pMr .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKiSY6pMr .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKiSY6pMr .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKiSY6pMr .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKiSY6pMr .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKiSY6pMr .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKiSY6pMr .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKiSY6pMr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKiSY6pMr .soc-item {
    padding: 10px;
  }
}
.cid-tFKiSY6pMr .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKiSY6pMr .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKiSY6pMr .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKiSY6pMr .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKiSY6pMr .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKiSY6pMr .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiSY6pMr .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKiSY6pMr .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKiSY6pMr .copyright {
    text-align: center !important;
  }
}
.cid-tFKiSY6pMr p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKiSY6pMr .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKiSY6pMr .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKiSY6pMr .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKiSY6pMr .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiSY6pMr .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKiSY6pMr .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKiSY6pMr .card-title {
  color: #ffffff;
}
.cid-tFKiSY6pMr P {
  color: #22a5e5;
}
.cid-tFKg4FaY9y .navbar-dropdown {
  position: relative !important;
}
.cid-tFKg4FaY9y .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKg4FaY9y nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKg4FaY9y .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKg4FaY9y .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-tFKg4FaY9y .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKg4FaY9y .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKg4FaY9y .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKg4FaY9y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKg4FaY9y .nav-link {
  position: relative;
}
.cid-tFKg4FaY9y .container {
  display: flex;
  margin: auto;
}
.cid-tFKg4FaY9y .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKg4FaY9y .dropdown-menu,
.cid-tFKg4FaY9y .navbar.opened {
  background: #000000 !important;
}
.cid-tFKg4FaY9y .nav-item:focus,
.cid-tFKg4FaY9y .nav-link:focus {
  outline: none;
}
.cid-tFKg4FaY9y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKg4FaY9y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKg4FaY9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKg4FaY9y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKg4FaY9y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKg4FaY9y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKg4FaY9y .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKg4FaY9y .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKg4FaY9y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKg4FaY9y .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKg4FaY9y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKg4FaY9y .navbar.collapsed {
  justify-content: center;
}
.cid-tFKg4FaY9y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKg4FaY9y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKg4FaY9y .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKg4FaY9y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKg4FaY9y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKg4FaY9y .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-tFKg4FaY9y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKg4FaY9y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKg4FaY9y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKg4FaY9y .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKg4FaY9y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKg4FaY9y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKg4FaY9y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKg4FaY9y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKg4FaY9y .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-tFKg4FaY9y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKg4FaY9y .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKg4FaY9y .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKg4FaY9y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKg4FaY9y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKg4FaY9y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKg4FaY9y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKg4FaY9y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKg4FaY9y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKg4FaY9y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKg4FaY9y .dropdown-item.active,
.cid-tFKg4FaY9y .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKg4FaY9y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKg4FaY9y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKg4FaY9y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKg4FaY9y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKg4FaY9y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKg4FaY9y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKg4FaY9y ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKg4FaY9y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKg4FaY9y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKg4FaY9y button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKg4FaY9y button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKg4FaY9y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKg4FaY9y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKg4FaY9y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg4FaY9y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg4FaY9y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKg4FaY9y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg4FaY9y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKg4FaY9y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKg4FaY9y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg4FaY9y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKg4FaY9y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKg4FaY9y .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-tFKg4FaY9y .navbar {
    height: 70px;
  }
  .cid-tFKg4FaY9y .navbar.opened {
    height: auto;
  }
  .cid-tFKg4FaY9y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKg4FyQwJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg4FyQwJ .link a {
  background-image: none !important;
}
.cid-tFKg4FyQwJ .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKg4FyQwJ .date {
  margin-bottom: 6px;
}
.cid-tFKg4FyQwJ .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKg4FyQwJ .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKg4FyQwJ a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKg4FyQwJ rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKg4FyQwJ .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKg4FyQwJ svg {
  margin-left: 15px;
}
.cid-tFKg4FyQwJ path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKg4FyQwJ .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKg4FyQwJ .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKg4FyQwJ .row {
  justify-content: center;
}
.cid-tFKg4FyQwJ .p,
.cid-tFKg4FyQwJ .link {
  color: #767676;
}
.cid-tFKg4FSJYC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKg4FSJYC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg4FSJYC .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-tFKg4FSJYC .container {
    padding: 0 30px;
  }
}
.cid-tFKg4FSJYC .row {
  justify-content: center;
}
.cid-tFKg4FSJYC .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKg4FSJYC .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKg4FSJYC .card {
    margin-bottom: 30px;
  }
}
.cid-tFKg4FSJYC .card .card-wrapper {
  display: flex;
}
.cid-tFKg4FSJYC .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKg4FSJYC .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKg4FSJYC .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKg4FSJYC .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKg4FSJYC .mbr-section-title {
  color: #767676;
}
.cid-tFKg4FSJYC .mbr-number {
  color: #000000;
}
.cid-tFKg4FSJYC .mbr-card-title {
  color: #1070b9;
}
.cid-tFKg4FSJYC .mbr-text {
  color: #767676;
}
.cid-tFKg4Gap2n {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg4Gap2n .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg4Gap2n .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKg4Gap2n .row {
  justify-content: space-between;
}
.cid-tFKg4Gap2n .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKg4Gap2n .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKg4Gap2n .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKg4Gap2n .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKg4Gap2n .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKg4Gap2n .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKg4Gap2n .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKg4Gap2n .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKg4Gap2n .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKg4Gap2n .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKg4Gap2n .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKg4Gap2n .link,
.cid-tFKg4Gap2n .link-icon {
  color: #000000;
}
.cid-tFKg4Gap2n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg4Gap2n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg4Gap2n .mbr-text,
.cid-tFKg4Gap2n .mbr-section-btn {
  color: #767676;
}
.cid-tFKg4GslSq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKg4GslSq .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKg4GslSq .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKg4GslSq .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKg4GslSq .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKg4GslSq .box {
  right: 20%;
}
.cid-tFKg4GslSq .text-box {
  right: 0;
}
.cid-tFKg4GslSq .mbr-section-title,
.cid-tFKg4GslSq .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKg4GslSq .text-box {
    display: none;
  }
  .cid-tFKg4GslSq .mbr-section-title,
  .cid-tFKg4GslSq .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKg4GslSq .box {
    display: none;
  }
  .cid-tFKg4GslSq .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKg4GslSq .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKg4GslSq .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKg4GslSq .mbr-section-text {
  color: #767676;
}
.cid-tFKg4GslSq .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg4GM4kq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKg4GM4kq .box {
  margin-bottom: 15px;
}
.cid-tFKg4GM4kq .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKg4GM4kq .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKg4GM4kq .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKg4GM4kq .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKg4GM4kq .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKg4GM4kq .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKg4GM4kq .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKg4GM4kq .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKg4GM4kq .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKg4GM4kq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKg4GM4kq .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKg4GM4kq .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKg4GM4kq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKg4GM4kq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKg4GM4kq .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKg4GM4kq .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKg4GM4kq .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKg4GM4kq .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKg4GM4kq .item-img {
  overflow: hidden;
}
.cid-tFKg4GM4kq .item-img img {
  width: 100%;
}
.cid-tFKg4GM4kq .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKg4GM4kq .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKg4GM4kq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg4GM4kq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJCx9H41Oi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJCx9H41Oi .carousel {
    overflow: hidden;
  }
  .cid-tJCx9H41Oi .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tJCx9H41Oi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJCx9H41Oi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJCx9H41Oi .carousel,
.cid-tJCx9H41Oi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJCx9H41Oi .item-wrapper {
  height: 100%;
  width: 100%;
}
.cid-tJCx9H41Oi .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tJCx9H41Oi .carousel-caption {
  bottom: 40px;
}
.cid-tJCx9H41Oi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJCx9H41Oi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJCx9H41Oi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJCx9H41Oi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJCx9H41Oi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tJCx9H41Oi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJCx9H41Oi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJCx9H41Oi .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tJCx9H41Oi .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tJCx9H41Oi .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tJCx9H41Oi .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tJCx9H41Oi .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tJCx9H41Oi .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tJCx9H41Oi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJCx9H41Oi .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tJCx9H41Oi .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tJCx9H41Oi .soc-item::before,
.cid-tJCx9H41Oi .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tJCx9H41Oi .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tJCx9H41Oi .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tJCx9H41Oi .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tJCx9H41Oi .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tJCx9H41Oi .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tJCx9H41Oi .text {
  color: #ddc499;
}
.cid-tJCx9H41Oi .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBcrVW5tu {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcrVW5tu .carousel {
    overflow: hidden;
  }
  .cid-tGBcrVW5tu .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcrVW5tu .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcrVW5tu #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcrVW5tu #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcrVW5tu .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcrVW5tu .link-div {
  margin-left: 20px;
}
.cid-tGBcrVW5tu .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcrVW5tu .mbr-card-title {
  color: #000e2f;
}
#custom-html-7o {
  /* Type valid CSS here */
}
#custom-html-7o .back-button {
  position: fixed;
}
.cid-tFKg4HQq4k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKg4HQq4k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg4HQq4k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg4HQq4k .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKg4HQq4k .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKg4HQq4k .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKg4HQq4k .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKg4HQq4k .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKg4HQq4k .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg4HQq4k .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKg4HQq4k .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg4HQq4k .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKg4HQq4k .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKg4HQq4k .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKg4HQq4k .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKg4HQq4k .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKg4HQq4k .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKg4HQq4k .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKg4HQq4k .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKg4HQq4k .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKg4HQq4k .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKg4HQq4k .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKg4HQq4k .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKg4HQq4k .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKg4HQq4k .soc-item {
    padding: 10px;
  }
}
.cid-tFKg4HQq4k .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKg4HQq4k .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKg4HQq4k .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKg4HQq4k .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKg4HQq4k .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKg4HQq4k .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg4HQq4k .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKg4HQq4k .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKg4HQq4k .copyright {
    text-align: center !important;
  }
}
.cid-tFKg4HQq4k p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKg4HQq4k .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKg4HQq4k .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKg4HQq4k .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKg4HQq4k .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg4HQq4k .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKg4HQq4k .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKg4HQq4k .card-title {
  color: #ffffff;
}
.cid-tFKg4HQq4k P {
  color: #22a5e5;
}
.cid-tFVwR8a0iZ .navbar-dropdown {
  position: relative !important;
}
.cid-tFVwR8a0iZ .navbar-dropdown {
  position: absolute !important;
}
.cid-tFVwR8a0iZ nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFVwR8a0iZ .nav-item {
    margin: 0 !important;
  }
}
.cid-tFVwR8a0iZ .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-tFVwR8a0iZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFVwR8a0iZ .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFVwR8a0iZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFVwR8a0iZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFVwR8a0iZ .nav-link {
  position: relative;
}
.cid-tFVwR8a0iZ .container {
  display: flex;
  margin: auto;
}
.cid-tFVwR8a0iZ .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFVwR8a0iZ .dropdown-menu,
.cid-tFVwR8a0iZ .navbar.opened {
  background: #000000 !important;
}
.cid-tFVwR8a0iZ .nav-item:focus,
.cid-tFVwR8a0iZ .nav-link:focus {
  outline: none;
}
.cid-tFVwR8a0iZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFVwR8a0iZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFVwR8a0iZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFVwR8a0iZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFVwR8a0iZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFVwR8a0iZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFVwR8a0iZ .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFVwR8a0iZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tFVwR8a0iZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFVwR8a0iZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tFVwR8a0iZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFVwR8a0iZ .navbar.collapsed {
  justify-content: center;
}
.cid-tFVwR8a0iZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFVwR8a0iZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFVwR8a0iZ .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFVwR8a0iZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFVwR8a0iZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFVwR8a0iZ .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-tFVwR8a0iZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFVwR8a0iZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFVwR8a0iZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFVwR8a0iZ .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFVwR8a0iZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFVwR8a0iZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFVwR8a0iZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFVwR8a0iZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFVwR8a0iZ .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-tFVwR8a0iZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFVwR8a0iZ .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFVwR8a0iZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFVwR8a0iZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFVwR8a0iZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFVwR8a0iZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFVwR8a0iZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFVwR8a0iZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFVwR8a0iZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFVwR8a0iZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFVwR8a0iZ .dropdown-item.active,
.cid-tFVwR8a0iZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tFVwR8a0iZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFVwR8a0iZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFVwR8a0iZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFVwR8a0iZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFVwR8a0iZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFVwR8a0iZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFVwR8a0iZ ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFVwR8a0iZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFVwR8a0iZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFVwR8a0iZ button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFVwR8a0iZ button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFVwR8a0iZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFVwR8a0iZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFVwR8a0iZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFVwR8a0iZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFVwR8a0iZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFVwR8a0iZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFVwR8a0iZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFVwR8a0iZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFVwR8a0iZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFVwR8a0iZ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFVwR8a0iZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFVwR8a0iZ .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-tFVwR8a0iZ .navbar {
    height: 70px;
  }
  .cid-tFVwR8a0iZ .navbar.opened {
    height: auto;
  }
  .cid-tFVwR8a0iZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFVwR8FacJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFVwR8FacJ .link a {
  background-image: none !important;
}
.cid-tFVwR8FacJ .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFVwR8FacJ .date {
  margin-bottom: 6px;
}
.cid-tFVwR8FacJ .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFVwR8FacJ .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFVwR8FacJ a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFVwR8FacJ rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFVwR8FacJ .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFVwR8FacJ svg {
  margin-left: 15px;
}
.cid-tFVwR8FacJ path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFVwR8FacJ .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFVwR8FacJ .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFVwR8FacJ .row {
  justify-content: center;
}
.cid-tFVwR8FacJ .p,
.cid-tFVwR8FacJ .link {
  color: #767676;
}
.cid-tFVwR93h4W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFVwR93h4W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVwR93h4W .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-tFVwR93h4W .container {
    padding: 0 30px;
  }
}
.cid-tFVwR93h4W .row {
  justify-content: center;
}
.cid-tFVwR93h4W .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFVwR93h4W .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFVwR93h4W .card {
    margin-bottom: 30px;
  }
}
.cid-tFVwR93h4W .card .card-wrapper {
  display: flex;
}
.cid-tFVwR93h4W .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFVwR93h4W .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFVwR93h4W .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFVwR93h4W .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFVwR93h4W .mbr-section-title {
  color: #767676;
}
.cid-tFVwR93h4W .mbr-number {
  color: #000000;
}
.cid-tFVwR93h4W .mbr-card-title {
  color: #1070b9;
}
.cid-tFVwR93h4W .mbr-text {
  color: #767676;
}
.cid-tFVwR9OgjV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFVwR9OgjV .mbr-section-title {
  color: #1070b9;
}
.cid-tFVwR9OgjV .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFVwR9OgjV .row {
  justify-content: space-between;
}
.cid-tFVwR9OgjV .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFVwR9OgjV .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFVwR9OgjV .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFVwR9OgjV .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFVwR9OgjV .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFVwR9OgjV .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFVwR9OgjV .link-wrapper {
    justify-content: center;
  }
}
.cid-tFVwR9OgjV .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFVwR9OgjV .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFVwR9OgjV .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFVwR9OgjV .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFVwR9OgjV .link,
.cid-tFVwR9OgjV .link-icon {
  color: #000000;
}
.cid-tFVwR9OgjV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVwR9OgjV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVwR9OgjV .mbr-text,
.cid-tFVwR9OgjV .mbr-section-btn {
  color: #767676;
}
.cid-tFVwRad3yQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFVwRad3yQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFVwRad3yQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFVwRad3yQ .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFVwRad3yQ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFVwRad3yQ .box {
  right: 20%;
}
.cid-tFVwRad3yQ .text-box {
  right: 0;
}
.cid-tFVwRad3yQ .mbr-section-title,
.cid-tFVwRad3yQ .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFVwRad3yQ .text-box {
    display: none;
  }
  .cid-tFVwRad3yQ .mbr-section-title,
  .cid-tFVwRad3yQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFVwRad3yQ .box {
    display: none;
  }
  .cid-tFVwRad3yQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFVwRad3yQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFVwRad3yQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFVwRad3yQ .mbr-section-text {
  color: #767676;
}
.cid-tFVwRad3yQ .mbr-section-title {
  color: #1070b9;
}
.cid-tFVwRaCtKh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFVwRaCtKh .box {
  margin-bottom: 15px;
}
.cid-tFVwRaCtKh .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFVwRaCtKh .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFVwRaCtKh .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFVwRaCtKh .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFVwRaCtKh .mbr-media {
    max-height: 432px;
  }
}
.cid-tFVwRaCtKh .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFVwRaCtKh .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFVwRaCtKh .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFVwRaCtKh .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFVwRaCtKh .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFVwRaCtKh .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFVwRaCtKh .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFVwRaCtKh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFVwRaCtKh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFVwRaCtKh .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFVwRaCtKh .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFVwRaCtKh .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFVwRaCtKh .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFVwRaCtKh .item-img {
  overflow: hidden;
}
.cid-tFVwRaCtKh .item-img img {
  width: 100%;
}
.cid-tFVwRaCtKh .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFVwRaCtKh .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFVwRaCtKh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVwRaCtKh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVwRb6DUh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFVwRb6DUh .carousel {
    overflow: hidden;
  }
  .cid-tFVwRb6DUh .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFVwRb6DUh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFVwRb6DUh .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFVwRb6DUh .carousel,
.cid-tFVwRb6DUh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFVwRb6DUh .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFVwRb6DUh .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFVwRb6DUh .item-wrapper {
    height: 215px;
  }
}
.cid-tFVwRb6DUh .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFVwRb6DUh .carousel-caption {
  bottom: 40px;
}
.cid-tFVwRb6DUh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFVwRb6DUh .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFVwRb6DUh .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFVwRb6DUh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFVwRb6DUh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFVwRb6DUh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFVwRb6DUh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFVwRb6DUh .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFVwRb6DUh .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFVwRb6DUh .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFVwRb6DUh .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFVwRb6DUh .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFVwRb6DUh .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFVwRb6DUh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFVwRb6DUh .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFVwRb6DUh .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFVwRb6DUh .soc-item::before,
.cid-tFVwRb6DUh .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFVwRb6DUh .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFVwRb6DUh .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFVwRb6DUh .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFVwRb6DUh .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFVwRb6DUh .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFVwRb6DUh .text {
  color: #ddc499;
}
.cid-tFVwRb6DUh .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBcvBzYH1 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcvBzYH1 .carousel {
    overflow: hidden;
  }
  .cid-tGBcvBzYH1 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcvBzYH1 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcvBzYH1 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcvBzYH1 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcvBzYH1 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcvBzYH1 .link-div {
  margin-left: 20px;
}
.cid-tGBcvBzYH1 .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcvBzYH1 .mbr-card-title {
  color: #000e2f;
}
#custom-html-c6 {
  /* Type valid CSS here */
}
#custom-html-c6 .back-button {
  position: fixed;
}
.cid-tFVwRbPQRw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFVwRbPQRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVwRbPQRw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVwRbPQRw .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFVwRbPQRw .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFVwRbPQRw .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFVwRbPQRw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFVwRbPQRw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFVwRbPQRw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFVwRbPQRw .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFVwRbPQRw .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFVwRbPQRw .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFVwRbPQRw .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFVwRbPQRw .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFVwRbPQRw .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFVwRbPQRw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFVwRbPQRw .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFVwRbPQRw .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFVwRbPQRw .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFVwRbPQRw .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFVwRbPQRw .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFVwRbPQRw .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFVwRbPQRw .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFVwRbPQRw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFVwRbPQRw .soc-item {
    padding: 10px;
  }
}
.cid-tFVwRbPQRw .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFVwRbPQRw .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFVwRbPQRw .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFVwRbPQRw .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFVwRbPQRw .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFVwRbPQRw .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFVwRbPQRw .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFVwRbPQRw .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFVwRbPQRw .copyright {
    text-align: center !important;
  }
}
.cid-tFVwRbPQRw p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFVwRbPQRw .row {
    justify-content: flex-start !important;
  }
}
.cid-tFVwRbPQRw .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFVwRbPQRw .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFVwRbPQRw .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFVwRbPQRw .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFVwRbPQRw .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFVwRbPQRw .card-title {
  color: #ffffff;
}
.cid-tFVwRbPQRw P {
  color: #22a5e5;
}
.cid-tFVyD0WmuW .navbar-dropdown {
  position: relative !important;
}
.cid-tFVyD0WmuW .navbar-dropdown {
  position: absolute !important;
}
.cid-tFVyD0WmuW nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFVyD0WmuW .nav-item {
    margin: 0 !important;
  }
}
.cid-tFVyD0WmuW .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-tFVyD0WmuW .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFVyD0WmuW .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFVyD0WmuW .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFVyD0WmuW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFVyD0WmuW .nav-link {
  position: relative;
}
.cid-tFVyD0WmuW .container {
  display: flex;
  margin: auto;
}
.cid-tFVyD0WmuW .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFVyD0WmuW .dropdown-menu,
.cid-tFVyD0WmuW .navbar.opened {
  background: #000000 !important;
}
.cid-tFVyD0WmuW .nav-item:focus,
.cid-tFVyD0WmuW .nav-link:focus {
  outline: none;
}
.cid-tFVyD0WmuW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFVyD0WmuW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFVyD0WmuW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFVyD0WmuW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFVyD0WmuW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFVyD0WmuW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFVyD0WmuW .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFVyD0WmuW .navbar.opened {
  transition: all 0.3s;
}
.cid-tFVyD0WmuW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFVyD0WmuW .navbar .navbar-logo img {
  width: auto;
}
.cid-tFVyD0WmuW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFVyD0WmuW .navbar.collapsed {
  justify-content: center;
}
.cid-tFVyD0WmuW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFVyD0WmuW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFVyD0WmuW .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFVyD0WmuW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFVyD0WmuW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFVyD0WmuW .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-tFVyD0WmuW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFVyD0WmuW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFVyD0WmuW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFVyD0WmuW .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFVyD0WmuW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFVyD0WmuW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFVyD0WmuW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFVyD0WmuW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFVyD0WmuW .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-tFVyD0WmuW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFVyD0WmuW .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFVyD0WmuW .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFVyD0WmuW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFVyD0WmuW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFVyD0WmuW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFVyD0WmuW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFVyD0WmuW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFVyD0WmuW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFVyD0WmuW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFVyD0WmuW .dropdown-item.active,
.cid-tFVyD0WmuW .dropdown-item:active {
  background-color: transparent;
}
.cid-tFVyD0WmuW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFVyD0WmuW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFVyD0WmuW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFVyD0WmuW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFVyD0WmuW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFVyD0WmuW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFVyD0WmuW ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFVyD0WmuW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFVyD0WmuW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFVyD0WmuW button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFVyD0WmuW button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFVyD0WmuW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFVyD0WmuW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFVyD0WmuW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFVyD0WmuW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFVyD0WmuW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFVyD0WmuW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFVyD0WmuW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFVyD0WmuW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFVyD0WmuW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFVyD0WmuW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFVyD0WmuW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFVyD0WmuW .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-tFVyD0WmuW .navbar {
    height: 70px;
  }
  .cid-tFVyD0WmuW .navbar.opened {
    height: auto;
  }
  .cid-tFVyD0WmuW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFVyD1piNy {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFVyD1piNy .link a {
  background-image: none !important;
}
.cid-tFVyD1piNy .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFVyD1piNy .date {
  margin-bottom: 6px;
}
.cid-tFVyD1piNy .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFVyD1piNy .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFVyD1piNy a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFVyD1piNy rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFVyD1piNy .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFVyD1piNy svg {
  margin-left: 15px;
}
.cid-tFVyD1piNy path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFVyD1piNy .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFVyD1piNy .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFVyD1piNy .row {
  justify-content: center;
}
.cid-tFVyD1piNy .p,
.cid-tFVyD1piNy .link {
  color: #767676;
}
.cid-tFVyD1Hkjm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFVyD1Hkjm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyD1Hkjm .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-tFVyD1Hkjm .container {
    padding: 0 30px;
  }
}
.cid-tFVyD1Hkjm .row {
  justify-content: center;
}
.cid-tFVyD1Hkjm .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFVyD1Hkjm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFVyD1Hkjm .card {
    margin-bottom: 30px;
  }
}
.cid-tFVyD1Hkjm .card .card-wrapper {
  display: flex;
}
.cid-tFVyD1Hkjm .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFVyD1Hkjm .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFVyD1Hkjm .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFVyD1Hkjm .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFVyD1Hkjm .mbr-section-title {
  color: #767676;
}
.cid-tFVyD1Hkjm .mbr-number {
  color: #000000;
}
.cid-tFVyD1Hkjm .mbr-card-title {
  color: #1070b9;
}
.cid-tFVyD1Hkjm .mbr-text {
  color: #767676;
}
.cid-tFVyD23Aku {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFVyD23Aku .mbr-section-title {
  color: #1070b9;
}
.cid-tFVyD23Aku .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFVyD23Aku .row {
  justify-content: space-between;
}
.cid-tFVyD23Aku .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFVyD23Aku .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFVyD23Aku .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFVyD23Aku .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFVyD23Aku .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFVyD23Aku .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFVyD23Aku .link-wrapper {
    justify-content: center;
  }
}
.cid-tFVyD23Aku .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFVyD23Aku .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFVyD23Aku .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFVyD23Aku .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFVyD23Aku .link,
.cid-tFVyD23Aku .link-icon {
  color: #000000;
}
.cid-tFVyD23Aku .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyD23Aku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVyD23Aku .mbr-text,
.cid-tFVyD23Aku .mbr-section-btn {
  color: #767676;
}
.cid-tFVyD2rM8C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFVyD2rM8C .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFVyD2rM8C .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFVyD2rM8C .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFVyD2rM8C .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFVyD2rM8C .box {
  right: 20%;
}
.cid-tFVyD2rM8C .text-box {
  right: 0;
}
.cid-tFVyD2rM8C .mbr-section-title,
.cid-tFVyD2rM8C .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFVyD2rM8C .text-box {
    display: none;
  }
  .cid-tFVyD2rM8C .mbr-section-title,
  .cid-tFVyD2rM8C .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFVyD2rM8C .box {
    display: none;
  }
  .cid-tFVyD2rM8C .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFVyD2rM8C .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFVyD2rM8C .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFVyD2rM8C .mbr-section-text {
  color: #767676;
}
.cid-tFVyD2rM8C .mbr-section-title {
  color: #1070b9;
}
.cid-tFVyD2LkEZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFVyD2LkEZ .box {
  margin-bottom: 15px;
}
.cid-tFVyD2LkEZ .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFVyD2LkEZ .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFVyD2LkEZ .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFVyD2LkEZ .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFVyD2LkEZ .mbr-media {
    max-height: 432px;
  }
}
.cid-tFVyD2LkEZ .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFVyD2LkEZ .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFVyD2LkEZ .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFVyD2LkEZ .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFVyD2LkEZ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFVyD2LkEZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFVyD2LkEZ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFVyD2LkEZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFVyD2LkEZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFVyD2LkEZ .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFVyD2LkEZ .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFVyD2LkEZ .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFVyD2LkEZ .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFVyD2LkEZ .item-img {
  overflow: hidden;
}
.cid-tFVyD2LkEZ .item-img img {
  width: 100%;
}
.cid-tFVyD2LkEZ .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFVyD2LkEZ .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFVyD2LkEZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyD2LkEZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVyD3rJiN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFVyD3rJiN .carousel {
    overflow: hidden;
  }
  .cid-tFVyD3rJiN .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFVyD3rJiN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFVyD3rJiN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFVyD3rJiN .carousel,
.cid-tFVyD3rJiN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFVyD3rJiN .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFVyD3rJiN .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFVyD3rJiN .item-wrapper {
    height: 215px;
  }
}
.cid-tFVyD3rJiN .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFVyD3rJiN .carousel-caption {
  bottom: 40px;
}
.cid-tFVyD3rJiN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFVyD3rJiN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFVyD3rJiN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFVyD3rJiN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFVyD3rJiN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFVyD3rJiN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFVyD3rJiN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFVyD3rJiN .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFVyD3rJiN .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFVyD3rJiN .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFVyD3rJiN .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFVyD3rJiN .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFVyD3rJiN .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFVyD3rJiN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFVyD3rJiN .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFVyD3rJiN .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFVyD3rJiN .soc-item::before,
.cid-tFVyD3rJiN .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFVyD3rJiN .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFVyD3rJiN .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFVyD3rJiN .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFVyD3rJiN .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFVyD3rJiN .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFVyD3rJiN .text {
  color: #ddc499;
}
.cid-tFVyD3rJiN .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBczhsVXA {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBczhsVXA .carousel {
    overflow: hidden;
  }
  .cid-tGBczhsVXA .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBczhsVXA .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBczhsVXA #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBczhsVXA #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBczhsVXA .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBczhsVXA .link-div {
  margin-left: 20px;
}
.cid-tGBczhsVXA .link-div h3 {
  margin-left: 4px;
}
.cid-tGBczhsVXA .mbr-card-title {
  color: #000e2f;
}
#custom-html-cg {
  /* Type valid CSS here */
}
#custom-html-cg .back-button {
  position: fixed;
}
.cid-tFVyD4xYia {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFVyD4xYia .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyD4xYia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVyD4xYia .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFVyD4xYia .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFVyD4xYia .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFVyD4xYia .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFVyD4xYia .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFVyD4xYia .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFVyD4xYia .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFVyD4xYia .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFVyD4xYia .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFVyD4xYia .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFVyD4xYia .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFVyD4xYia .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFVyD4xYia .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFVyD4xYia .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFVyD4xYia .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFVyD4xYia .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFVyD4xYia .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFVyD4xYia .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFVyD4xYia .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFVyD4xYia .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFVyD4xYia .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFVyD4xYia .soc-item {
    padding: 10px;
  }
}
.cid-tFVyD4xYia .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFVyD4xYia .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFVyD4xYia .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFVyD4xYia .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFVyD4xYia .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFVyD4xYia .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFVyD4xYia .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFVyD4xYia .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFVyD4xYia .copyright {
    text-align: center !important;
  }
}
.cid-tFVyD4xYia p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFVyD4xYia .row {
    justify-content: flex-start !important;
  }
}
.cid-tFVyD4xYia .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFVyD4xYia .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFVyD4xYia .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFVyD4xYia .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFVyD4xYia .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFVyD4xYia .card-title {
  color: #ffffff;
}
.cid-tFVyD4xYia P {
  color: #22a5e5;
}
.cid-tFVyFeZOta .navbar-dropdown {
  position: relative !important;
}
.cid-tFVyFeZOta .navbar-dropdown {
  position: absolute !important;
}
.cid-tFVyFeZOta nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFVyFeZOta .nav-item {
    margin: 0 !important;
  }
}
.cid-tFVyFeZOta .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-tFVyFeZOta .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFVyFeZOta .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFVyFeZOta .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFVyFeZOta .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFVyFeZOta .nav-link {
  position: relative;
}
.cid-tFVyFeZOta .container {
  display: flex;
  margin: auto;
}
.cid-tFVyFeZOta .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFVyFeZOta .dropdown-menu,
.cid-tFVyFeZOta .navbar.opened {
  background: #000000 !important;
}
.cid-tFVyFeZOta .nav-item:focus,
.cid-tFVyFeZOta .nav-link:focus {
  outline: none;
}
.cid-tFVyFeZOta .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFVyFeZOta .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFVyFeZOta .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFVyFeZOta .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFVyFeZOta .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFVyFeZOta .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFVyFeZOta .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFVyFeZOta .navbar.opened {
  transition: all 0.3s;
}
.cid-tFVyFeZOta .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFVyFeZOta .navbar .navbar-logo img {
  width: auto;
}
.cid-tFVyFeZOta .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFVyFeZOta .navbar.collapsed {
  justify-content: center;
}
.cid-tFVyFeZOta .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFVyFeZOta .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFVyFeZOta .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFVyFeZOta .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFVyFeZOta .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFVyFeZOta .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-tFVyFeZOta .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFVyFeZOta .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFVyFeZOta .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFVyFeZOta .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFVyFeZOta .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFVyFeZOta .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFVyFeZOta .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFVyFeZOta .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFVyFeZOta .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-tFVyFeZOta .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFVyFeZOta .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFVyFeZOta .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFVyFeZOta .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFVyFeZOta .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFVyFeZOta .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFVyFeZOta .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFVyFeZOta .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFVyFeZOta .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFVyFeZOta .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFVyFeZOta .dropdown-item.active,
.cid-tFVyFeZOta .dropdown-item:active {
  background-color: transparent;
}
.cid-tFVyFeZOta .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFVyFeZOta .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFVyFeZOta .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFVyFeZOta .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFVyFeZOta .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFVyFeZOta .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFVyFeZOta ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFVyFeZOta .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFVyFeZOta button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFVyFeZOta button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFVyFeZOta button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFVyFeZOta button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFVyFeZOta button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFVyFeZOta button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFVyFeZOta button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFVyFeZOta button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFVyFeZOta nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFVyFeZOta nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFVyFeZOta nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFVyFeZOta nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFVyFeZOta .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFVyFeZOta a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFVyFeZOta .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-tFVyFeZOta .navbar {
    height: 70px;
  }
  .cid-tFVyFeZOta .navbar.opened {
    height: auto;
  }
  .cid-tFVyFeZOta .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFVyFfAgoN {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFVyFfAgoN .link a {
  background-image: none !important;
}
.cid-tFVyFfAgoN .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFVyFfAgoN .date {
  margin-bottom: 6px;
}
.cid-tFVyFfAgoN .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFVyFfAgoN .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFVyFfAgoN a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFVyFfAgoN rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFVyFfAgoN .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFVyFfAgoN svg {
  margin-left: 15px;
}
.cid-tFVyFfAgoN path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFVyFfAgoN .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFVyFfAgoN .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFVyFfAgoN .row {
  justify-content: center;
}
.cid-tFVyFfAgoN .p,
.cid-tFVyFfAgoN .link {
  color: #767676;
}
.cid-tFVyFfZfNI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFVyFfZfNI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyFfZfNI .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-tFVyFfZfNI .container {
    padding: 0 30px;
  }
}
.cid-tFVyFfZfNI .row {
  justify-content: center;
}
.cid-tFVyFfZfNI .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFVyFfZfNI .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFVyFfZfNI .card {
    margin-bottom: 30px;
  }
}
.cid-tFVyFfZfNI .card .card-wrapper {
  display: flex;
}
.cid-tFVyFfZfNI .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFVyFfZfNI .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFVyFfZfNI .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFVyFfZfNI .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFVyFfZfNI .mbr-section-title {
  color: #767676;
}
.cid-tFVyFfZfNI .mbr-number {
  color: #000000;
}
.cid-tFVyFfZfNI .mbr-card-title {
  color: #1070b9;
}
.cid-tFVyFfZfNI .mbr-text {
  color: #767676;
}
.cid-tFVyFgnGZk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFVyFgnGZk .mbr-section-title {
  color: #1070b9;
}
.cid-tFVyFgnGZk .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFVyFgnGZk .row {
  justify-content: space-between;
}
.cid-tFVyFgnGZk .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFVyFgnGZk .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFVyFgnGZk .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFVyFgnGZk .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFVyFgnGZk .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFVyFgnGZk .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFVyFgnGZk .link-wrapper {
    justify-content: center;
  }
}
.cid-tFVyFgnGZk .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFVyFgnGZk .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFVyFgnGZk .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFVyFgnGZk .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFVyFgnGZk .link,
.cid-tFVyFgnGZk .link-icon {
  color: #000000;
}
.cid-tFVyFgnGZk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyFgnGZk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVyFgnGZk .mbr-text,
.cid-tFVyFgnGZk .mbr-section-btn {
  color: #767676;
}
.cid-tFVyFgFyE0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFVyFgFyE0 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFVyFgFyE0 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFVyFgFyE0 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFVyFgFyE0 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFVyFgFyE0 .box {
  right: 20%;
}
.cid-tFVyFgFyE0 .text-box {
  right: 0;
}
.cid-tFVyFgFyE0 .mbr-section-title,
.cid-tFVyFgFyE0 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFVyFgFyE0 .text-box {
    display: none;
  }
  .cid-tFVyFgFyE0 .mbr-section-title,
  .cid-tFVyFgFyE0 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFVyFgFyE0 .box {
    display: none;
  }
  .cid-tFVyFgFyE0 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFVyFgFyE0 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFVyFgFyE0 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFVyFgFyE0 .mbr-section-text {
  color: #767676;
}
.cid-tFVyFgFyE0 .mbr-section-title {
  color: #1070b9;
}
.cid-tFVyFh0tSW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFVyFh0tSW .box {
  margin-bottom: 15px;
}
.cid-tFVyFh0tSW .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFVyFh0tSW .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFVyFh0tSW .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFVyFh0tSW .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFVyFh0tSW .mbr-media {
    max-height: 432px;
  }
}
.cid-tFVyFh0tSW .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFVyFh0tSW .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFVyFh0tSW .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFVyFh0tSW .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFVyFh0tSW .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFVyFh0tSW .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFVyFh0tSW .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFVyFh0tSW .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFVyFh0tSW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFVyFh0tSW .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFVyFh0tSW .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFVyFh0tSW .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFVyFh0tSW .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFVyFh0tSW .item-img {
  overflow: hidden;
}
.cid-tFVyFh0tSW .item-img img {
  width: 100%;
}
.cid-tFVyFh0tSW .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFVyFh0tSW .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFVyFh0tSW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyFh0tSW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVyFhutw2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFVyFhutw2 .carousel {
    overflow: hidden;
  }
  .cid-tFVyFhutw2 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFVyFhutw2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFVyFhutw2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFVyFhutw2 .carousel,
.cid-tFVyFhutw2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFVyFhutw2 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFVyFhutw2 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFVyFhutw2 .item-wrapper {
    height: 215px;
  }
}
.cid-tFVyFhutw2 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFVyFhutw2 .carousel-caption {
  bottom: 40px;
}
.cid-tFVyFhutw2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFVyFhutw2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFVyFhutw2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFVyFhutw2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFVyFhutw2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFVyFhutw2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFVyFhutw2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFVyFhutw2 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFVyFhutw2 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFVyFhutw2 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFVyFhutw2 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFVyFhutw2 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFVyFhutw2 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFVyFhutw2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFVyFhutw2 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFVyFhutw2 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFVyFhutw2 .soc-item::before,
.cid-tFVyFhutw2 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFVyFhutw2 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFVyFhutw2 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFVyFhutw2 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFVyFhutw2 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFVyFhutw2 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFVyFhutw2 .text {
  color: #ddc499;
}
.cid-tFVyFhutw2 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBcCIkAXA {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcCIkAXA .carousel {
    overflow: hidden;
  }
  .cid-tGBcCIkAXA .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcCIkAXA .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcCIkAXA #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcCIkAXA #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcCIkAXA .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcCIkAXA .link-div {
  margin-left: 20px;
}
.cid-tGBcCIkAXA .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcCIkAXA .mbr-card-title {
  color: #000e2f;
}
#custom-html-cq {
  /* Type valid CSS here */
}
#custom-html-cq .back-button {
  position: fixed;
}
.cid-tFVyFioB8V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFVyFioB8V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFVyFioB8V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFVyFioB8V .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFVyFioB8V .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFVyFioB8V .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFVyFioB8V .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFVyFioB8V .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFVyFioB8V .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFVyFioB8V .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFVyFioB8V .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFVyFioB8V .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFVyFioB8V .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFVyFioB8V .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFVyFioB8V .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFVyFioB8V .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFVyFioB8V .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFVyFioB8V .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFVyFioB8V .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFVyFioB8V .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFVyFioB8V .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFVyFioB8V .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFVyFioB8V .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFVyFioB8V .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFVyFioB8V .soc-item {
    padding: 10px;
  }
}
.cid-tFVyFioB8V .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFVyFioB8V .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFVyFioB8V .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFVyFioB8V .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFVyFioB8V .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFVyFioB8V .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFVyFioB8V .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFVyFioB8V .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFVyFioB8V .copyright {
    text-align: center !important;
  }
}
.cid-tFVyFioB8V p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFVyFioB8V .row {
    justify-content: flex-start !important;
  }
}
.cid-tFVyFioB8V .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFVyFioB8V .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFVyFioB8V .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFVyFioB8V .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFVyFioB8V .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFVyFioB8V .card-title {
  color: #ffffff;
}
.cid-tFVyFioB8V P {
  color: #22a5e5;
}
.cid-tG0lhh8EM8 .navbar-dropdown {
  position: relative !important;
}
.cid-tG0lhh8EM8 .navbar-dropdown {
  position: absolute !important;
}
.cid-tG0lhh8EM8 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tG0lhh8EM8 .nav-item {
    margin: 0 !important;
  }
}
.cid-tG0lhh8EM8 .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-tG0lhh8EM8 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tG0lhh8EM8 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tG0lhh8EM8 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tG0lhh8EM8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG0lhh8EM8 .nav-link {
  position: relative;
}
.cid-tG0lhh8EM8 .container {
  display: flex;
  margin: auto;
}
.cid-tG0lhh8EM8 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG0lhh8EM8 .dropdown-menu,
.cid-tG0lhh8EM8 .navbar.opened {
  background: #000000 !important;
}
.cid-tG0lhh8EM8 .nav-item:focus,
.cid-tG0lhh8EM8 .nav-link:focus {
  outline: none;
}
.cid-tG0lhh8EM8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG0lhh8EM8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG0lhh8EM8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG0lhh8EM8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG0lhh8EM8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG0lhh8EM8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG0lhh8EM8 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tG0lhh8EM8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tG0lhh8EM8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG0lhh8EM8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tG0lhh8EM8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG0lhh8EM8 .navbar.collapsed {
  justify-content: center;
}
.cid-tG0lhh8EM8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG0lhh8EM8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG0lhh8EM8 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG0lhh8EM8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG0lhh8EM8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG0lhh8EM8 .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-tG0lhh8EM8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG0lhh8EM8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG0lhh8EM8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG0lhh8EM8 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tG0lhh8EM8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG0lhh8EM8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG0lhh8EM8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG0lhh8EM8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG0lhh8EM8 .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-tG0lhh8EM8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG0lhh8EM8 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tG0lhh8EM8 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tG0lhh8EM8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG0lhh8EM8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG0lhh8EM8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG0lhh8EM8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG0lhh8EM8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG0lhh8EM8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG0lhh8EM8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG0lhh8EM8 .dropdown-item.active,
.cid-tG0lhh8EM8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tG0lhh8EM8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG0lhh8EM8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG0lhh8EM8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG0lhh8EM8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tG0lhh8EM8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG0lhh8EM8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG0lhh8EM8 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tG0lhh8EM8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG0lhh8EM8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tG0lhh8EM8 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tG0lhh8EM8 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tG0lhh8EM8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG0lhh8EM8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG0lhh8EM8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0lhh8EM8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0lhh8EM8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG0lhh8EM8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0lhh8EM8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG0lhh8EM8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG0lhh8EM8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0lhh8EM8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tG0lhh8EM8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG0lhh8EM8 .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-tG0lhh8EM8 .navbar {
    height: 70px;
  }
  .cid-tG0lhh8EM8 .navbar.opened {
    height: auto;
  }
  .cid-tG0lhh8EM8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG0lhhrnQm {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0lhhrnQm .link a {
  background-image: none !important;
}
.cid-tG0lhhrnQm .item-wrapper {
  margin-bottom: 56px;
}
.cid-tG0lhhrnQm .date {
  margin-bottom: 6px;
}
.cid-tG0lhhrnQm .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tG0lhhrnQm .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tG0lhhrnQm a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tG0lhhrnQm rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tG0lhhrnQm .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tG0lhhrnQm svg {
  margin-left: 15px;
}
.cid-tG0lhhrnQm path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tG0lhhrnQm .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tG0lhhrnQm .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tG0lhhrnQm .row {
  justify-content: center;
}
.cid-tG0lhhrnQm .p,
.cid-tG0lhhrnQm .link {
  color: #767676;
}
.cid-tG0lhhE81y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tG0lhhE81y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lhhE81y .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-tG0lhhE81y .container {
    padding: 0 30px;
  }
}
.cid-tG0lhhE81y .row {
  justify-content: center;
}
.cid-tG0lhhE81y .title-wrapper {
  margin-bottom: 55px;
}
.cid-tG0lhhE81y .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tG0lhhE81y .card {
    margin-bottom: 30px;
  }
}
.cid-tG0lhhE81y .card .card-wrapper {
  display: flex;
}
.cid-tG0lhhE81y .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tG0lhhE81y .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tG0lhhE81y .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tG0lhhE81y .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tG0lhhE81y .mbr-section-title {
  color: #767676;
}
.cid-tG0lhhE81y .mbr-number {
  color: #000000;
}
.cid-tG0lhhE81y .mbr-card-title {
  color: #1070b9;
}
.cid-tG0lhhE81y .mbr-text {
  color: #767676;
}
.cid-tG0lhhSZZz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0lhhSZZz .mbr-section-title {
  color: #1070b9;
}
.cid-tG0lhhSZZz .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tG0lhhSZZz .row {
  justify-content: space-between;
}
.cid-tG0lhhSZZz .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tG0lhhSZZz .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tG0lhhSZZz .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tG0lhhSZZz .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tG0lhhSZZz .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tG0lhhSZZz .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tG0lhhSZZz .link-wrapper {
    justify-content: center;
  }
}
.cid-tG0lhhSZZz .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tG0lhhSZZz .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tG0lhhSZZz .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tG0lhhSZZz .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tG0lhhSZZz .link,
.cid-tG0lhhSZZz .link-icon {
  color: #000000;
}
.cid-tG0lhhSZZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lhhSZZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lhhSZZz .mbr-text,
.cid-tG0lhhSZZz .mbr-section-btn {
  color: #767676;
}
.cid-tG0lhi9XzZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG0lhi9XzZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tG0lhi9XzZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-tG0lhi9XzZ .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tG0lhi9XzZ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tG0lhi9XzZ .box {
  right: 20%;
}
.cid-tG0lhi9XzZ .text-box {
  right: 0;
}
.cid-tG0lhi9XzZ .mbr-section-title,
.cid-tG0lhi9XzZ .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tG0lhi9XzZ .text-box {
    display: none;
  }
  .cid-tG0lhi9XzZ .mbr-section-title,
  .cid-tG0lhi9XzZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tG0lhi9XzZ .box {
    display: none;
  }
  .cid-tG0lhi9XzZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tG0lhi9XzZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG0lhi9XzZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tG0lhi9XzZ .mbr-section-text {
  color: #767676;
}
.cid-tG0lhi9XzZ .mbr-section-title {
  color: #1070b9;
}
.cid-tG0lhinvtY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tG0lhinvtY .box {
  margin-bottom: 15px;
}
.cid-tG0lhinvtY .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tG0lhinvtY .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tG0lhinvtY .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tG0lhinvtY .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tG0lhinvtY .mbr-media {
    max-height: 432px;
  }
}
.cid-tG0lhinvtY .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tG0lhinvtY .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tG0lhinvtY .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tG0lhinvtY .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tG0lhinvtY .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tG0lhinvtY .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tG0lhinvtY .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tG0lhinvtY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tG0lhinvtY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tG0lhinvtY .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tG0lhinvtY .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tG0lhinvtY .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tG0lhinvtY .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tG0lhinvtY .item-img {
  overflow: hidden;
}
.cid-tG0lhinvtY .item-img img {
  width: 100%;
}
.cid-tG0lhinvtY .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tG0lhinvtY .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tG0lhinvtY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lhinvtY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lhiHk21 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG0lhiHk21 .carousel {
    overflow: hidden;
  }
  .cid-tG0lhiHk21 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tG0lhiHk21 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tG0lhiHk21 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tG0lhiHk21 .carousel,
.cid-tG0lhiHk21 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG0lhiHk21 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tG0lhiHk21 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tG0lhiHk21 .item-wrapper {
    height: 215px;
  }
}
.cid-tG0lhiHk21 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tG0lhiHk21 .carousel-caption {
  bottom: 40px;
}
.cid-tG0lhiHk21 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tG0lhiHk21 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tG0lhiHk21 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tG0lhiHk21 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tG0lhiHk21 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tG0lhiHk21 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG0lhiHk21 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG0lhiHk21 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0lhiHk21 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tG0lhiHk21 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0lhiHk21 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tG0lhiHk21 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tG0lhiHk21 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tG0lhiHk21 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tG0lhiHk21 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tG0lhiHk21 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tG0lhiHk21 .soc-item::before,
.cid-tG0lhiHk21 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tG0lhiHk21 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tG0lhiHk21 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tG0lhiHk21 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tG0lhiHk21 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tG0lhiHk21 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tG0lhiHk21 .text {
  color: #ddc499;
}
.cid-tG0lhiHk21 .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-ed {
  /* Type valid CSS here */
}
#custom-html-ed .back-button {
  position: fixed;
}
.cid-tGBcGSqCBm {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcGSqCBm .carousel {
    overflow: hidden;
  }
  .cid-tGBcGSqCBm .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcGSqCBm .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcGSqCBm #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcGSqCBm #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcGSqCBm .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcGSqCBm .link-div {
  margin-left: 20px;
}
.cid-tGBcGSqCBm .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcGSqCBm .mbr-card-title {
  color: #000e2f;
}
.cid-tG0lhj81Hr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tG0lhj81Hr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lhj81Hr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lhj81Hr .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tG0lhj81Hr .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tG0lhj81Hr .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tG0lhj81Hr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tG0lhj81Hr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tG0lhj81Hr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0lhj81Hr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tG0lhj81Hr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0lhj81Hr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tG0lhj81Hr .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tG0lhj81Hr .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tG0lhj81Hr .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tG0lhj81Hr .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tG0lhj81Hr .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tG0lhj81Hr .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tG0lhj81Hr .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tG0lhj81Hr .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tG0lhj81Hr .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tG0lhj81Hr .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tG0lhj81Hr .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tG0lhj81Hr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tG0lhj81Hr .soc-item {
    padding: 10px;
  }
}
.cid-tG0lhj81Hr .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tG0lhj81Hr .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tG0lhj81Hr .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tG0lhj81Hr .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tG0lhj81Hr .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tG0lhj81Hr .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tG0lhj81Hr .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tG0lhj81Hr .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG0lhj81Hr .copyright {
    text-align: center !important;
  }
}
.cid-tG0lhj81Hr p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tG0lhj81Hr .row {
    justify-content: flex-start !important;
  }
}
.cid-tG0lhj81Hr .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tG0lhj81Hr .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tG0lhj81Hr .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tG0lhj81Hr .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tG0lhj81Hr .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tG0lhj81Hr .card-title {
  color: #ffffff;
}
.cid-tG0lhj81Hr P {
  color: #22a5e5;
}
.cid-tG0lraB33M .navbar-dropdown {
  position: relative !important;
}
.cid-tG0lraB33M .navbar-dropdown {
  position: absolute !important;
}
.cid-tG0lraB33M nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tG0lraB33M .nav-item {
    margin: 0 !important;
  }
}
.cid-tG0lraB33M .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-tG0lraB33M .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tG0lraB33M .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tG0lraB33M .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tG0lraB33M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG0lraB33M .nav-link {
  position: relative;
}
.cid-tG0lraB33M .container {
  display: flex;
  margin: auto;
}
.cid-tG0lraB33M .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG0lraB33M .dropdown-menu,
.cid-tG0lraB33M .navbar.opened {
  background: #000000 !important;
}
.cid-tG0lraB33M .nav-item:focus,
.cid-tG0lraB33M .nav-link:focus {
  outline: none;
}
.cid-tG0lraB33M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG0lraB33M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG0lraB33M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG0lraB33M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG0lraB33M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG0lraB33M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG0lraB33M .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tG0lraB33M .navbar.opened {
  transition: all 0.3s;
}
.cid-tG0lraB33M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG0lraB33M .navbar .navbar-logo img {
  width: auto;
}
.cid-tG0lraB33M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG0lraB33M .navbar.collapsed {
  justify-content: center;
}
.cid-tG0lraB33M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG0lraB33M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG0lraB33M .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG0lraB33M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG0lraB33M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG0lraB33M .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-tG0lraB33M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG0lraB33M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG0lraB33M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG0lraB33M .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tG0lraB33M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG0lraB33M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG0lraB33M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG0lraB33M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG0lraB33M .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-tG0lraB33M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG0lraB33M .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tG0lraB33M .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tG0lraB33M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG0lraB33M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG0lraB33M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG0lraB33M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG0lraB33M .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG0lraB33M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG0lraB33M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG0lraB33M .dropdown-item.active,
.cid-tG0lraB33M .dropdown-item:active {
  background-color: transparent;
}
.cid-tG0lraB33M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG0lraB33M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG0lraB33M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG0lraB33M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tG0lraB33M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG0lraB33M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG0lraB33M ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tG0lraB33M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG0lraB33M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tG0lraB33M button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tG0lraB33M button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tG0lraB33M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG0lraB33M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG0lraB33M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0lraB33M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0lraB33M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG0lraB33M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0lraB33M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG0lraB33M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG0lraB33M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0lraB33M .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tG0lraB33M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG0lraB33M .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-tG0lraB33M .navbar {
    height: 70px;
  }
  .cid-tG0lraB33M .navbar.opened {
    height: auto;
  }
  .cid-tG0lraB33M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG0lraTRQ9 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0lraTRQ9 .link a {
  background-image: none !important;
}
.cid-tG0lraTRQ9 .item-wrapper {
  margin-bottom: 56px;
}
.cid-tG0lraTRQ9 .date {
  margin-bottom: 6px;
}
.cid-tG0lraTRQ9 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tG0lraTRQ9 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tG0lraTRQ9 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tG0lraTRQ9 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tG0lraTRQ9 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tG0lraTRQ9 svg {
  margin-left: 15px;
}
.cid-tG0lraTRQ9 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tG0lraTRQ9 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tG0lraTRQ9 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tG0lraTRQ9 .row {
  justify-content: center;
}
.cid-tG0lraTRQ9 .p,
.cid-tG0lraTRQ9 .link {
  color: #767676;
}
.cid-tG0lrb6wyh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tG0lrb6wyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lrb6wyh .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-tG0lrb6wyh .container {
    padding: 0 30px;
  }
}
.cid-tG0lrb6wyh .row {
  justify-content: center;
}
.cid-tG0lrb6wyh .title-wrapper {
  margin-bottom: 55px;
}
.cid-tG0lrb6wyh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tG0lrb6wyh .card {
    margin-bottom: 30px;
  }
}
.cid-tG0lrb6wyh .card .card-wrapper {
  display: flex;
}
.cid-tG0lrb6wyh .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tG0lrb6wyh .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tG0lrb6wyh .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tG0lrb6wyh .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tG0lrb6wyh .mbr-section-title {
  color: #767676;
}
.cid-tG0lrb6wyh .mbr-number {
  color: #000000;
}
.cid-tG0lrb6wyh .mbr-card-title {
  color: #1070b9;
}
.cid-tG0lrb6wyh .mbr-text {
  color: #767676;
}
.cid-tG0lrbiojZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0lrbiojZ .mbr-section-title {
  color: #1070b9;
}
.cid-tG0lrbiojZ .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tG0lrbiojZ .row {
  justify-content: space-between;
}
.cid-tG0lrbiojZ .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tG0lrbiojZ .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tG0lrbiojZ .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tG0lrbiojZ .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tG0lrbiojZ .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tG0lrbiojZ .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tG0lrbiojZ .link-wrapper {
    justify-content: center;
  }
}
.cid-tG0lrbiojZ .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tG0lrbiojZ .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tG0lrbiojZ .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tG0lrbiojZ .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tG0lrbiojZ .link,
.cid-tG0lrbiojZ .link-icon {
  color: #000000;
}
.cid-tG0lrbiojZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lrbiojZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lrbiojZ .mbr-text,
.cid-tG0lrbiojZ .mbr-section-btn {
  color: #767676;
}
.cid-tG0lrbuGhK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG0lrbuGhK .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tG0lrbuGhK .text-block {
  position: relative;
  z-index: 0;
}
.cid-tG0lrbuGhK .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tG0lrbuGhK .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tG0lrbuGhK .box {
  right: 20%;
}
.cid-tG0lrbuGhK .text-box {
  right: 0;
}
.cid-tG0lrbuGhK .mbr-section-title,
.cid-tG0lrbuGhK .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tG0lrbuGhK .text-box {
    display: none;
  }
  .cid-tG0lrbuGhK .mbr-section-title,
  .cid-tG0lrbuGhK .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tG0lrbuGhK .box {
    display: none;
  }
  .cid-tG0lrbuGhK .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tG0lrbuGhK .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG0lrbuGhK .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tG0lrbuGhK .mbr-section-text {
  color: #767676;
}
.cid-tG0lrbuGhK .mbr-section-title {
  color: #1070b9;
}
.cid-tG1Dp3EMyh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tG1Dp3EMyh .box {
  margin-bottom: 15px;
}
.cid-tG1Dp3EMyh .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tG1Dp3EMyh .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tG1Dp3EMyh .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tG1Dp3EMyh .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tG1Dp3EMyh .mbr-media {
    max-height: 432px;
  }
}
.cid-tG1Dp3EMyh .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tG1Dp3EMyh .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tG1Dp3EMyh .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tG1Dp3EMyh .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tG1Dp3EMyh .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tG1Dp3EMyh .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tG1Dp3EMyh .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tG1Dp3EMyh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tG1Dp3EMyh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tG1Dp3EMyh .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tG1Dp3EMyh .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tG1Dp3EMyh .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tG1Dp3EMyh .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tG1Dp3EMyh .item-img {
  overflow: hidden;
}
.cid-tG1Dp3EMyh .item-img img {
  width: 100%;
}
.cid-tG1Dp3EMyh .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tG1Dp3EMyh .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tG1Dp3EMyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG1Dp3EMyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lrbKSp6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tG0lrbKSp6 .box {
  margin-bottom: 15px;
}
.cid-tG0lrbKSp6 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tG0lrbKSp6 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tG0lrbKSp6 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tG0lrbKSp6 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tG0lrbKSp6 .mbr-media {
    max-height: 432px;
  }
}
.cid-tG0lrbKSp6 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tG0lrbKSp6 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tG0lrbKSp6 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tG0lrbKSp6 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tG0lrbKSp6 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tG0lrbKSp6 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tG0lrbKSp6 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tG0lrbKSp6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tG0lrbKSp6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tG0lrbKSp6 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tG0lrbKSp6 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tG0lrbKSp6 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tG0lrbKSp6 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tG0lrbKSp6 .item-img {
  overflow: hidden;
}
.cid-tG0lrbKSp6 .item-img img {
  width: 100%;
}
.cid-tG0lrbKSp6 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tG0lrbKSp6 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tG0lrbKSp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lrbKSp6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lrc6FdG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG0lrc6FdG .carousel {
    overflow: hidden;
  }
  .cid-tG0lrc6FdG .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tG0lrc6FdG .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tG0lrc6FdG .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tG0lrc6FdG .carousel,
.cid-tG0lrc6FdG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG0lrc6FdG .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tG0lrc6FdG .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tG0lrc6FdG .item-wrapper {
    height: 215px;
  }
}
.cid-tG0lrc6FdG .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tG0lrc6FdG .carousel-caption {
  bottom: 40px;
}
.cid-tG0lrc6FdG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tG0lrc6FdG .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tG0lrc6FdG .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tG0lrc6FdG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tG0lrc6FdG .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tG0lrc6FdG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG0lrc6FdG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG0lrc6FdG .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0lrc6FdG .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tG0lrc6FdG .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0lrc6FdG .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tG0lrc6FdG .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tG0lrc6FdG .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tG0lrc6FdG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tG0lrc6FdG .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tG0lrc6FdG .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tG0lrc6FdG .soc-item::before,
.cid-tG0lrc6FdG .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tG0lrc6FdG .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tG0lrc6FdG .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tG0lrc6FdG .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tG0lrc6FdG .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tG0lrc6FdG .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tG0lrc6FdG .text {
  color: #ddc499;
}
.cid-tG0lrc6FdG .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-ee {
  /* Type valid CSS here */
}
#custom-html-ee .back-button {
  position: fixed;
}
.cid-tGBcKCneos {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcKCneos .carousel {
    overflow: hidden;
  }
  .cid-tGBcKCneos .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcKCneos .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcKCneos #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcKCneos #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcKCneos .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcKCneos .link-div {
  margin-left: 20px;
}
.cid-tGBcKCneos .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcKCneos .mbr-card-title {
  color: #000e2f;
}
.cid-tG0lrcxNP4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tG0lrcxNP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lrcxNP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lrcxNP4 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tG0lrcxNP4 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tG0lrcxNP4 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tG0lrcxNP4 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tG0lrcxNP4 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tG0lrcxNP4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0lrcxNP4 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tG0lrcxNP4 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0lrcxNP4 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tG0lrcxNP4 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tG0lrcxNP4 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tG0lrcxNP4 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tG0lrcxNP4 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tG0lrcxNP4 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tG0lrcxNP4 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tG0lrcxNP4 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tG0lrcxNP4 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tG0lrcxNP4 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tG0lrcxNP4 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tG0lrcxNP4 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tG0lrcxNP4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tG0lrcxNP4 .soc-item {
    padding: 10px;
  }
}
.cid-tG0lrcxNP4 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tG0lrcxNP4 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tG0lrcxNP4 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tG0lrcxNP4 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tG0lrcxNP4 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tG0lrcxNP4 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tG0lrcxNP4 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tG0lrcxNP4 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG0lrcxNP4 .copyright {
    text-align: center !important;
  }
}
.cid-tG0lrcxNP4 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tG0lrcxNP4 .row {
    justify-content: flex-start !important;
  }
}
.cid-tG0lrcxNP4 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tG0lrcxNP4 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tG0lrcxNP4 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tG0lrcxNP4 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tG0lrcxNP4 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tG0lrcxNP4 .card-title {
  color: #ffffff;
}
.cid-tG0lrcxNP4 P {
  color: #22a5e5;
}
.cid-tG0lGqeKwf .navbar-dropdown {
  position: relative !important;
}
.cid-tG0lGqeKwf .navbar-dropdown {
  position: absolute !important;
}
.cid-tG0lGqeKwf nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tG0lGqeKwf .nav-item {
    margin: 0 !important;
  }
}
.cid-tG0lGqeKwf .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-tG0lGqeKwf .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tG0lGqeKwf .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tG0lGqeKwf .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tG0lGqeKwf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG0lGqeKwf .nav-link {
  position: relative;
}
.cid-tG0lGqeKwf .container {
  display: flex;
  margin: auto;
}
.cid-tG0lGqeKwf .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG0lGqeKwf .dropdown-menu,
.cid-tG0lGqeKwf .navbar.opened {
  background: #000000 !important;
}
.cid-tG0lGqeKwf .nav-item:focus,
.cid-tG0lGqeKwf .nav-link:focus {
  outline: none;
}
.cid-tG0lGqeKwf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG0lGqeKwf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG0lGqeKwf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG0lGqeKwf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG0lGqeKwf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG0lGqeKwf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG0lGqeKwf .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tG0lGqeKwf .navbar.opened {
  transition: all 0.3s;
}
.cid-tG0lGqeKwf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG0lGqeKwf .navbar .navbar-logo img {
  width: auto;
}
.cid-tG0lGqeKwf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG0lGqeKwf .navbar.collapsed {
  justify-content: center;
}
.cid-tG0lGqeKwf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG0lGqeKwf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG0lGqeKwf .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG0lGqeKwf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG0lGqeKwf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG0lGqeKwf .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-tG0lGqeKwf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG0lGqeKwf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG0lGqeKwf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG0lGqeKwf .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tG0lGqeKwf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG0lGqeKwf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG0lGqeKwf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG0lGqeKwf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG0lGqeKwf .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-tG0lGqeKwf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG0lGqeKwf .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tG0lGqeKwf .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tG0lGqeKwf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG0lGqeKwf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG0lGqeKwf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG0lGqeKwf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG0lGqeKwf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG0lGqeKwf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG0lGqeKwf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG0lGqeKwf .dropdown-item.active,
.cid-tG0lGqeKwf .dropdown-item:active {
  background-color: transparent;
}
.cid-tG0lGqeKwf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG0lGqeKwf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG0lGqeKwf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG0lGqeKwf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tG0lGqeKwf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG0lGqeKwf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG0lGqeKwf ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tG0lGqeKwf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG0lGqeKwf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tG0lGqeKwf button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tG0lGqeKwf button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tG0lGqeKwf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG0lGqeKwf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG0lGqeKwf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0lGqeKwf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0lGqeKwf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG0lGqeKwf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0lGqeKwf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG0lGqeKwf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG0lGqeKwf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0lGqeKwf .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tG0lGqeKwf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG0lGqeKwf .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-tG0lGqeKwf .navbar {
    height: 70px;
  }
  .cid-tG0lGqeKwf .navbar.opened {
    height: auto;
  }
  .cid-tG0lGqeKwf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG0lGqxbx7 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0lGqxbx7 .link a {
  background-image: none !important;
}
.cid-tG0lGqxbx7 .item-wrapper {
  margin-bottom: 56px;
}
.cid-tG0lGqxbx7 .date {
  margin-bottom: 6px;
}
.cid-tG0lGqxbx7 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tG0lGqxbx7 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tG0lGqxbx7 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tG0lGqxbx7 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tG0lGqxbx7 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tG0lGqxbx7 svg {
  margin-left: 15px;
}
.cid-tG0lGqxbx7 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tG0lGqxbx7 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tG0lGqxbx7 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tG0lGqxbx7 .row {
  justify-content: center;
}
.cid-tG0lGqxbx7 .p,
.cid-tG0lGqxbx7 .link {
  color: #767676;
}
.cid-tG0lGqKNf2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tG0lGqKNf2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lGqKNf2 .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-tG0lGqKNf2 .container {
    padding: 0 30px;
  }
}
.cid-tG0lGqKNf2 .row {
  justify-content: center;
}
.cid-tG0lGqKNf2 .title-wrapper {
  margin-bottom: 55px;
}
.cid-tG0lGqKNf2 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tG0lGqKNf2 .card {
    margin-bottom: 30px;
  }
}
.cid-tG0lGqKNf2 .card .card-wrapper {
  display: flex;
}
.cid-tG0lGqKNf2 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tG0lGqKNf2 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tG0lGqKNf2 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tG0lGqKNf2 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tG0lGqKNf2 .mbr-section-title {
  color: #767676;
}
.cid-tG0lGqKNf2 .mbr-number {
  color: #000000;
}
.cid-tG0lGqKNf2 .mbr-card-title {
  color: #1070b9;
}
.cid-tG0lGqKNf2 .mbr-text {
  color: #767676;
}
.cid-tG0lGqYO3D {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0lGqYO3D .mbr-section-title {
  color: #1070b9;
}
.cid-tG0lGqYO3D .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tG0lGqYO3D .row {
  justify-content: space-between;
}
.cid-tG0lGqYO3D .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tG0lGqYO3D .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tG0lGqYO3D .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tG0lGqYO3D .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tG0lGqYO3D .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tG0lGqYO3D .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tG0lGqYO3D .link-wrapper {
    justify-content: center;
  }
}
.cid-tG0lGqYO3D .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tG0lGqYO3D .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tG0lGqYO3D .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tG0lGqYO3D .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tG0lGqYO3D .link,
.cid-tG0lGqYO3D .link-icon {
  color: #000000;
}
.cid-tG0lGqYO3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lGqYO3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lGqYO3D .mbr-text,
.cid-tG0lGqYO3D .mbr-section-btn {
  color: #767676;
}
.cid-tG0lGrbUMP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG0lGrbUMP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tG0lGrbUMP .text-block {
  position: relative;
  z-index: 0;
}
.cid-tG0lGrbUMP .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tG0lGrbUMP .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tG0lGrbUMP .box {
  right: 20%;
}
.cid-tG0lGrbUMP .text-box {
  right: 0;
}
.cid-tG0lGrbUMP .mbr-section-title,
.cid-tG0lGrbUMP .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tG0lGrbUMP .text-box {
    display: none;
  }
  .cid-tG0lGrbUMP .mbr-section-title,
  .cid-tG0lGrbUMP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tG0lGrbUMP .box {
    display: none;
  }
  .cid-tG0lGrbUMP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tG0lGrbUMP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG0lGrbUMP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tG0lGrbUMP .mbr-section-text {
  color: #767676;
}
.cid-tG0lGrbUMP .mbr-section-title {
  color: #1070b9;
}
.cid-tG0lGrs8tn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tG0lGrs8tn .box {
  margin-bottom: 15px;
}
.cid-tG0lGrs8tn .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tG0lGrs8tn .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tG0lGrs8tn .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tG0lGrs8tn .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tG0lGrs8tn .mbr-media {
    max-height: 432px;
  }
}
.cid-tG0lGrs8tn .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tG0lGrs8tn .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tG0lGrs8tn .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tG0lGrs8tn .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tG0lGrs8tn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tG0lGrs8tn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tG0lGrs8tn .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tG0lGrs8tn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tG0lGrs8tn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tG0lGrs8tn .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tG0lGrs8tn .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tG0lGrs8tn .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tG0lGrs8tn .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tG0lGrs8tn .item-img {
  overflow: hidden;
}
.cid-tG0lGrs8tn .item-img img {
  width: 100%;
}
.cid-tG0lGrs8tn .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tG0lGrs8tn .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tG0lGrs8tn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lGrs8tn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lGrOphG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG0lGrOphG .carousel {
    overflow: hidden;
  }
  .cid-tG0lGrOphG .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tG0lGrOphG .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tG0lGrOphG .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tG0lGrOphG .carousel,
.cid-tG0lGrOphG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG0lGrOphG .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tG0lGrOphG .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tG0lGrOphG .item-wrapper {
    height: 215px;
  }
}
.cid-tG0lGrOphG .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tG0lGrOphG .carousel-caption {
  bottom: 40px;
}
.cid-tG0lGrOphG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tG0lGrOphG .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tG0lGrOphG .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tG0lGrOphG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tG0lGrOphG .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tG0lGrOphG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG0lGrOphG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG0lGrOphG .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0lGrOphG .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tG0lGrOphG .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0lGrOphG .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tG0lGrOphG .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tG0lGrOphG .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tG0lGrOphG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tG0lGrOphG .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tG0lGrOphG .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tG0lGrOphG .soc-item::before,
.cid-tG0lGrOphG .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tG0lGrOphG .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tG0lGrOphG .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tG0lGrOphG .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tG0lGrOphG .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tG0lGrOphG .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tG0lGrOphG .text {
  color: #ddc499;
}
.cid-tG0lGrOphG .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-ef {
  /* Type valid CSS here */
}
#custom-html-ef .back-button {
  position: fixed;
}
.cid-tGBcODwpT1 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcODwpT1 .carousel {
    overflow: hidden;
  }
  .cid-tGBcODwpT1 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcODwpT1 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcODwpT1 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcODwpT1 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcODwpT1 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcODwpT1 .link-div {
  margin-left: 20px;
}
.cid-tGBcODwpT1 .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcODwpT1 .mbr-card-title {
  color: #000e2f;
}
.cid-tG0lGsf8q1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tG0lGsf8q1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0lGsf8q1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0lGsf8q1 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tG0lGsf8q1 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tG0lGsf8q1 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tG0lGsf8q1 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tG0lGsf8q1 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tG0lGsf8q1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0lGsf8q1 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tG0lGsf8q1 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0lGsf8q1 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tG0lGsf8q1 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tG0lGsf8q1 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tG0lGsf8q1 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tG0lGsf8q1 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tG0lGsf8q1 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tG0lGsf8q1 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tG0lGsf8q1 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tG0lGsf8q1 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tG0lGsf8q1 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tG0lGsf8q1 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tG0lGsf8q1 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tG0lGsf8q1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tG0lGsf8q1 .soc-item {
    padding: 10px;
  }
}
.cid-tG0lGsf8q1 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tG0lGsf8q1 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tG0lGsf8q1 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tG0lGsf8q1 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tG0lGsf8q1 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tG0lGsf8q1 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tG0lGsf8q1 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tG0lGsf8q1 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG0lGsf8q1 .copyright {
    text-align: center !important;
  }
}
.cid-tG0lGsf8q1 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tG0lGsf8q1 .row {
    justify-content: flex-start !important;
  }
}
.cid-tG0lGsf8q1 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tG0lGsf8q1 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tG0lGsf8q1 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tG0lGsf8q1 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tG0lGsf8q1 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tG0lGsf8q1 .card-title {
  color: #ffffff;
}
.cid-tG0lGsf8q1 P {
  color: #22a5e5;
}
.cid-tG0mXULJyw .navbar-dropdown {
  position: relative !important;
}
.cid-tG0mXULJyw .navbar-dropdown {
  position: absolute !important;
}
.cid-tG0mXULJyw nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tG0mXULJyw .nav-item {
    margin: 0 !important;
  }
}
.cid-tG0mXULJyw .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-tG0mXULJyw .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tG0mXULJyw .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tG0mXULJyw .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tG0mXULJyw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG0mXULJyw .nav-link {
  position: relative;
}
.cid-tG0mXULJyw .container {
  display: flex;
  margin: auto;
}
.cid-tG0mXULJyw .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG0mXULJyw .dropdown-menu,
.cid-tG0mXULJyw .navbar.opened {
  background: #000000 !important;
}
.cid-tG0mXULJyw .nav-item:focus,
.cid-tG0mXULJyw .nav-link:focus {
  outline: none;
}
.cid-tG0mXULJyw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG0mXULJyw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG0mXULJyw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG0mXULJyw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG0mXULJyw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG0mXULJyw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG0mXULJyw .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tG0mXULJyw .navbar.opened {
  transition: all 0.3s;
}
.cid-tG0mXULJyw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG0mXULJyw .navbar .navbar-logo img {
  width: auto;
}
.cid-tG0mXULJyw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG0mXULJyw .navbar.collapsed {
  justify-content: center;
}
.cid-tG0mXULJyw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG0mXULJyw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG0mXULJyw .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG0mXULJyw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG0mXULJyw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG0mXULJyw .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-tG0mXULJyw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG0mXULJyw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG0mXULJyw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG0mXULJyw .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tG0mXULJyw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG0mXULJyw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG0mXULJyw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG0mXULJyw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG0mXULJyw .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-tG0mXULJyw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG0mXULJyw .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tG0mXULJyw .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tG0mXULJyw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG0mXULJyw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG0mXULJyw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG0mXULJyw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG0mXULJyw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG0mXULJyw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG0mXULJyw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG0mXULJyw .dropdown-item.active,
.cid-tG0mXULJyw .dropdown-item:active {
  background-color: transparent;
}
.cid-tG0mXULJyw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG0mXULJyw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG0mXULJyw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG0mXULJyw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tG0mXULJyw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG0mXULJyw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG0mXULJyw ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tG0mXULJyw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG0mXULJyw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tG0mXULJyw button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tG0mXULJyw button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tG0mXULJyw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG0mXULJyw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG0mXULJyw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0mXULJyw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0mXULJyw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG0mXULJyw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0mXULJyw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG0mXULJyw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG0mXULJyw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0mXULJyw .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tG0mXULJyw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG0mXULJyw .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-tG0mXULJyw .navbar {
    height: 70px;
  }
  .cid-tG0mXULJyw .navbar.opened {
    height: auto;
  }
  .cid-tG0mXULJyw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG0mXV4JjT {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0mXV4JjT .link a {
  background-image: none !important;
}
.cid-tG0mXV4JjT .item-wrapper {
  margin-bottom: 56px;
}
.cid-tG0mXV4JjT .date {
  margin-bottom: 6px;
}
.cid-tG0mXV4JjT .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tG0mXV4JjT .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tG0mXV4JjT a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tG0mXV4JjT rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tG0mXV4JjT .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tG0mXV4JjT svg {
  margin-left: 15px;
}
.cid-tG0mXV4JjT path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tG0mXV4JjT .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tG0mXV4JjT .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tG0mXV4JjT .row {
  justify-content: center;
}
.cid-tG0mXV4JjT .p,
.cid-tG0mXV4JjT .link {
  color: #767676;
}
.cid-tG0mXViFXv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tG0mXViFXv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0mXViFXv .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-tG0mXViFXv .container {
    padding: 0 30px;
  }
}
.cid-tG0mXViFXv .row {
  justify-content: center;
}
.cid-tG0mXViFXv .title-wrapper {
  margin-bottom: 55px;
}
.cid-tG0mXViFXv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tG0mXViFXv .card {
    margin-bottom: 30px;
  }
}
.cid-tG0mXViFXv .card .card-wrapper {
  display: flex;
}
.cid-tG0mXViFXv .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tG0mXViFXv .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tG0mXViFXv .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tG0mXViFXv .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tG0mXViFXv .mbr-section-title {
  color: #767676;
}
.cid-tG0mXViFXv .mbr-number {
  color: #000000;
}
.cid-tG0mXViFXv .mbr-card-title {
  color: #1070b9;
}
.cid-tG0mXViFXv .mbr-text {
  color: #767676;
}
.cid-tG0mXVwWPE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0mXVwWPE .mbr-section-title {
  color: #1070b9;
}
.cid-tG0mXVwWPE .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tG0mXVwWPE .row {
  justify-content: space-between;
}
.cid-tG0mXVwWPE .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tG0mXVwWPE .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tG0mXVwWPE .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tG0mXVwWPE .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tG0mXVwWPE .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tG0mXVwWPE .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tG0mXVwWPE .link-wrapper {
    justify-content: center;
  }
}
.cid-tG0mXVwWPE .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tG0mXVwWPE .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tG0mXVwWPE .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tG0mXVwWPE .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tG0mXVwWPE .link,
.cid-tG0mXVwWPE .link-icon {
  color: #000000;
}
.cid-tG0mXVwWPE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0mXVwWPE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0mXVwWPE .mbr-text,
.cid-tG0mXVwWPE .mbr-section-btn {
  color: #767676;
}
.cid-tG0mXVJPzE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG0mXVJPzE .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tG0mXVJPzE .text-block {
  position: relative;
  z-index: 0;
}
.cid-tG0mXVJPzE .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tG0mXVJPzE .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tG0mXVJPzE .box {
  right: 20%;
}
.cid-tG0mXVJPzE .text-box {
  right: 0;
}
.cid-tG0mXVJPzE .mbr-section-title,
.cid-tG0mXVJPzE .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tG0mXVJPzE .text-box {
    display: none;
  }
  .cid-tG0mXVJPzE .mbr-section-title,
  .cid-tG0mXVJPzE .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tG0mXVJPzE .box {
    display: none;
  }
  .cid-tG0mXVJPzE .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tG0mXVJPzE .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG0mXVJPzE .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tG0mXVJPzE .mbr-section-text {
  color: #767676;
}
.cid-tG0mXVJPzE .mbr-section-title {
  color: #1070b9;
}
.cid-tG0mXW0ESV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tG0mXW0ESV .box {
  margin-bottom: 15px;
}
.cid-tG0mXW0ESV .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tG0mXW0ESV .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tG0mXW0ESV .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tG0mXW0ESV .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tG0mXW0ESV .mbr-media {
    max-height: 432px;
  }
}
.cid-tG0mXW0ESV .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tG0mXW0ESV .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tG0mXW0ESV .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tG0mXW0ESV .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tG0mXW0ESV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tG0mXW0ESV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tG0mXW0ESV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tG0mXW0ESV .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tG0mXW0ESV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tG0mXW0ESV .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tG0mXW0ESV .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tG0mXW0ESV .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tG0mXW0ESV .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tG0mXW0ESV .item-img {
  overflow: hidden;
}
.cid-tG0mXW0ESV .item-img img {
  width: 100%;
}
.cid-tG0mXW0ESV .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tG0mXW0ESV .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tG0mXW0ESV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0mXW0ESV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0mXWmDFS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG0mXWmDFS .carousel {
    overflow: hidden;
  }
  .cid-tG0mXWmDFS .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tG0mXWmDFS .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tG0mXWmDFS .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tG0mXWmDFS .carousel,
.cid-tG0mXWmDFS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG0mXWmDFS .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tG0mXWmDFS .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tG0mXWmDFS .item-wrapper {
    height: 215px;
  }
}
.cid-tG0mXWmDFS .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tG0mXWmDFS .carousel-caption {
  bottom: 40px;
}
.cid-tG0mXWmDFS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tG0mXWmDFS .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tG0mXWmDFS .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tG0mXWmDFS .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tG0mXWmDFS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tG0mXWmDFS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG0mXWmDFS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG0mXWmDFS .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0mXWmDFS .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tG0mXWmDFS .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0mXWmDFS .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tG0mXWmDFS .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tG0mXWmDFS .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tG0mXWmDFS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tG0mXWmDFS .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tG0mXWmDFS .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tG0mXWmDFS .soc-item::before,
.cid-tG0mXWmDFS .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tG0mXWmDFS .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tG0mXWmDFS .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tG0mXWmDFS .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tG0mXWmDFS .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tG0mXWmDFS .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tG0mXWmDFS .text {
  color: #ddc499;
}
.cid-tG0mXWmDFS .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-e2 {
  /* Type valid CSS here */
}
#custom-html-e2 .back-button {
  position: fixed;
}
.cid-tGBcXHHFYu {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcXHHFYu .carousel {
    overflow: hidden;
  }
  .cid-tGBcXHHFYu .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcXHHFYu .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcXHHFYu #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcXHHFYu #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcXHHFYu .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcXHHFYu .link-div {
  margin-left: 20px;
}
.cid-tGBcXHHFYu .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcXHHFYu .mbr-card-title {
  color: #000e2f;
}
.cid-tG0mXWNokM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tG0mXWNokM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0mXWNokM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0mXWNokM .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tG0mXWNokM .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tG0mXWNokM .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tG0mXWNokM .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tG0mXWNokM .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tG0mXWNokM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0mXWNokM .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tG0mXWNokM .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0mXWNokM .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tG0mXWNokM .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tG0mXWNokM .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tG0mXWNokM .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tG0mXWNokM .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tG0mXWNokM .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tG0mXWNokM .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tG0mXWNokM .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tG0mXWNokM .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tG0mXWNokM .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tG0mXWNokM .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tG0mXWNokM .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tG0mXWNokM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tG0mXWNokM .soc-item {
    padding: 10px;
  }
}
.cid-tG0mXWNokM .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tG0mXWNokM .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tG0mXWNokM .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tG0mXWNokM .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tG0mXWNokM .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tG0mXWNokM .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tG0mXWNokM .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tG0mXWNokM .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG0mXWNokM .copyright {
    text-align: center !important;
  }
}
.cid-tG0mXWNokM p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tG0mXWNokM .row {
    justify-content: flex-start !important;
  }
}
.cid-tG0mXWNokM .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tG0mXWNokM .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tG0mXWNokM .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tG0mXWNokM .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tG0mXWNokM .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tG0mXWNokM .card-title {
  color: #ffffff;
}
.cid-tG0mXWNokM P {
  color: #22a5e5;
}
.cid-tGixOHnbjk .navbar-dropdown {
  position: relative !important;
}
.cid-tGixOHnbjk .navbar-dropdown {
  position: absolute !important;
}
.cid-tGixOHnbjk nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGixOHnbjk .nav-item {
    margin: 0 !important;
  }
}
.cid-tGixOHnbjk .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-tGixOHnbjk .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGixOHnbjk .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGixOHnbjk .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGixOHnbjk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGixOHnbjk .nav-link {
  position: relative;
}
.cid-tGixOHnbjk .container {
  display: flex;
  margin: auto;
}
.cid-tGixOHnbjk .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGixOHnbjk .dropdown-menu,
.cid-tGixOHnbjk .navbar.opened {
  background: #000000 !important;
}
.cid-tGixOHnbjk .nav-item:focus,
.cid-tGixOHnbjk .nav-link:focus {
  outline: none;
}
.cid-tGixOHnbjk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGixOHnbjk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGixOHnbjk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGixOHnbjk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGixOHnbjk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGixOHnbjk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGixOHnbjk .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGixOHnbjk .navbar.opened {
  transition: all 0.3s;
}
.cid-tGixOHnbjk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGixOHnbjk .navbar .navbar-logo img {
  width: auto;
}
.cid-tGixOHnbjk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGixOHnbjk .navbar.collapsed {
  justify-content: center;
}
.cid-tGixOHnbjk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGixOHnbjk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGixOHnbjk .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGixOHnbjk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGixOHnbjk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGixOHnbjk .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-tGixOHnbjk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGixOHnbjk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGixOHnbjk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGixOHnbjk .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGixOHnbjk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGixOHnbjk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGixOHnbjk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGixOHnbjk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGixOHnbjk .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-tGixOHnbjk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGixOHnbjk .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGixOHnbjk .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGixOHnbjk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGixOHnbjk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGixOHnbjk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGixOHnbjk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGixOHnbjk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGixOHnbjk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGixOHnbjk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGixOHnbjk .dropdown-item.active,
.cid-tGixOHnbjk .dropdown-item:active {
  background-color: transparent;
}
.cid-tGixOHnbjk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGixOHnbjk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGixOHnbjk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGixOHnbjk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGixOHnbjk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGixOHnbjk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGixOHnbjk ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGixOHnbjk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGixOHnbjk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGixOHnbjk button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGixOHnbjk button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGixOHnbjk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGixOHnbjk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGixOHnbjk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGixOHnbjk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGixOHnbjk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGixOHnbjk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGixOHnbjk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGixOHnbjk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGixOHnbjk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGixOHnbjk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGixOHnbjk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGixOHnbjk .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-tGixOHnbjk .navbar {
    height: 70px;
  }
  .cid-tGixOHnbjk .navbar.opened {
    height: auto;
  }
  .cid-tGixOHnbjk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGixOHFCQa {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGixOHFCQa .link a {
  background-image: none !important;
}
.cid-tGixOHFCQa .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGixOHFCQa .date {
  margin-bottom: 6px;
}
.cid-tGixOHFCQa .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGixOHFCQa .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGixOHFCQa a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGixOHFCQa rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGixOHFCQa .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGixOHFCQa svg {
  margin-left: 15px;
}
.cid-tGixOHFCQa path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGixOHFCQa .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGixOHFCQa .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGixOHFCQa .row {
  justify-content: center;
}
.cid-tGixOHFCQa .p,
.cid-tGixOHFCQa .link {
  color: #767676;
}
.cid-tGixOHS1iX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGixOHS1iX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGixOHS1iX .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-tGixOHS1iX .container {
    padding: 0 30px;
  }
}
.cid-tGixOHS1iX .row {
  justify-content: center;
}
.cid-tGixOHS1iX .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGixOHS1iX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGixOHS1iX .card {
    margin-bottom: 30px;
  }
}
.cid-tGixOHS1iX .card .card-wrapper {
  display: flex;
}
.cid-tGixOHS1iX .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGixOHS1iX .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGixOHS1iX .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGixOHS1iX .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGixOHS1iX .mbr-section-title {
  color: #767676;
}
.cid-tGixOHS1iX .mbr-number {
  color: #000000;
}
.cid-tGixOHS1iX .mbr-card-title {
  color: #1070b9;
}
.cid-tGixOHS1iX .mbr-text {
  color: #767676;
}
.cid-tGixOI5wWs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGixOI5wWs .mbr-section-title {
  color: #1070b9;
}
.cid-tGixOI5wWs .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGixOI5wWs .row {
  justify-content: space-between;
}
.cid-tGixOI5wWs .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGixOI5wWs .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGixOI5wWs .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGixOI5wWs .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGixOI5wWs .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGixOI5wWs .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGixOI5wWs .link-wrapper {
    justify-content: center;
  }
}
.cid-tGixOI5wWs .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGixOI5wWs .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGixOI5wWs .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGixOI5wWs .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGixOI5wWs .link,
.cid-tGixOI5wWs .link-icon {
  color: #000000;
}
.cid-tGixOI5wWs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGixOI5wWs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGixOI5wWs .mbr-text,
.cid-tGixOI5wWs .mbr-section-btn {
  color: #767676;
}
.cid-tGixOIig9t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGixOIig9t .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGixOIig9t .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGixOIig9t .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGixOIig9t .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGixOIig9t .box {
  right: 20%;
}
.cid-tGixOIig9t .text-box {
  right: 0;
}
.cid-tGixOIig9t .mbr-section-title,
.cid-tGixOIig9t .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGixOIig9t .text-box {
    display: none;
  }
  .cid-tGixOIig9t .mbr-section-title,
  .cid-tGixOIig9t .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGixOIig9t .box {
    display: none;
  }
  .cid-tGixOIig9t .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGixOIig9t .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGixOIig9t .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGixOIig9t .mbr-section-text {
  color: #767676;
}
.cid-tGixOIig9t .mbr-section-title {
  color: #1070b9;
}
.cid-tGixOIyMO8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGixOIyMO8 .box {
  margin-bottom: 15px;
}
.cid-tGixOIyMO8 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGixOIyMO8 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGixOIyMO8 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGixOIyMO8 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGixOIyMO8 .mbr-media {
    max-height: 432px;
  }
}
.cid-tGixOIyMO8 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGixOIyMO8 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGixOIyMO8 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGixOIyMO8 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGixOIyMO8 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGixOIyMO8 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGixOIyMO8 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGixOIyMO8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGixOIyMO8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGixOIyMO8 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGixOIyMO8 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGixOIyMO8 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGixOIyMO8 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGixOIyMO8 .item-img {
  overflow: hidden;
}
.cid-tGixOIyMO8 .item-img img {
  width: 100%;
}
.cid-tGixOIyMO8 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGixOIyMO8 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGixOIyMO8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGixOIyMO8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGiEoqytTA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGiEoqytTA .box {
  margin-bottom: 15px;
}
.cid-tGiEoqytTA .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGiEoqytTA .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGiEoqytTA .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGiEoqytTA .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGiEoqytTA .mbr-media {
    max-height: 432px;
  }
}
.cid-tGiEoqytTA .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGiEoqytTA .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGiEoqytTA .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGiEoqytTA .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGiEoqytTA .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGiEoqytTA .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGiEoqytTA .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGiEoqytTA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGiEoqytTA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGiEoqytTA .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGiEoqytTA .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGiEoqytTA .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGiEoqytTA .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGiEoqytTA .item-img {
  overflow: hidden;
}
.cid-tGiEoqytTA .item-img img {
  width: 100%;
}
.cid-tGiEoqytTA .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGiEoqytTA .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGiEoqytTA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGiEoqytTA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGiEp160gS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGiEp160gS .box {
  margin-bottom: 15px;
}
.cid-tGiEp160gS .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGiEp160gS .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGiEp160gS .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGiEp160gS .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGiEp160gS .mbr-media {
    max-height: 432px;
  }
}
.cid-tGiEp160gS .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGiEp160gS .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGiEp160gS .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGiEp160gS .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGiEp160gS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGiEp160gS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGiEp160gS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGiEp160gS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGiEp160gS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGiEp160gS .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGiEp160gS .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGiEp160gS .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGiEp160gS .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGiEp160gS .item-img {
  overflow: hidden;
}
.cid-tGiEp160gS .item-img img {
  width: 100%;
}
.cid-tGiEp160gS .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGiEp160gS .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGiEp160gS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGiEp160gS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGiEM7oHBu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGiEM7oHBu .box {
  margin-bottom: 15px;
}
.cid-tGiEM7oHBu .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGiEM7oHBu .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGiEM7oHBu .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGiEM7oHBu .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGiEM7oHBu .mbr-media {
    max-height: 432px;
  }
}
.cid-tGiEM7oHBu .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGiEM7oHBu .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGiEM7oHBu .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGiEM7oHBu .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGiEM7oHBu .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGiEM7oHBu .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGiEM7oHBu .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGiEM7oHBu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGiEM7oHBu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGiEM7oHBu .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGiEM7oHBu .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGiEM7oHBu .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGiEM7oHBu .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGiEM7oHBu .item-img {
  overflow: hidden;
}
.cid-tGiEM7oHBu .item-img img {
  width: 100%;
}
.cid-tGiEM7oHBu .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGiEM7oHBu .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGiEM7oHBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGiEM7oHBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGixOIMytb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tGixOIMytb .carousel {
    overflow: hidden;
  }
  .cid-tGixOIMytb .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGixOIMytb .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tGixOIMytb .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tGixOIMytb .carousel,
.cid-tGixOIMytb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tGixOIMytb .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGixOIMytb .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tGixOIMytb .item-wrapper {
    height: 215px;
  }
}
.cid-tGixOIMytb .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tGixOIMytb .carousel-caption {
  bottom: 40px;
}
.cid-tGixOIMytb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tGixOIMytb .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tGixOIMytb .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tGixOIMytb .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tGixOIMytb .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tGixOIMytb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGixOIMytb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGixOIMytb .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGixOIMytb .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tGixOIMytb .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGixOIMytb .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tGixOIMytb .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tGixOIMytb .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tGixOIMytb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGixOIMytb .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tGixOIMytb .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tGixOIMytb .soc-item::before,
.cid-tGixOIMytb .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tGixOIMytb .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tGixOIMytb .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tGixOIMytb .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tGixOIMytb .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tGixOIMytb .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tGixOIMytb .text {
  color: #ddc499;
}
.cid-tGixOIMytb .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-er {
  /* Type valid CSS here */
}
#custom-html-er .back-button {
  position: fixed;
}
.cid-tGBd5jnLvD {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBd5jnLvD .carousel {
    overflow: hidden;
  }
  .cid-tGBd5jnLvD .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBd5jnLvD .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBd5jnLvD #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBd5jnLvD #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBd5jnLvD .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBd5jnLvD .link-div {
  margin-left: 20px;
}
.cid-tGBd5jnLvD .link-div h3 {
  margin-left: 4px;
}
.cid-tGBd5jnLvD .mbr-card-title {
  color: #000e2f;
}
.cid-tGixOJeA2l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGixOJeA2l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGixOJeA2l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGixOJeA2l .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGixOJeA2l .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGixOJeA2l .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGixOJeA2l .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGixOJeA2l .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGixOJeA2l .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGixOJeA2l .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGixOJeA2l .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGixOJeA2l .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGixOJeA2l .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGixOJeA2l .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGixOJeA2l .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGixOJeA2l .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGixOJeA2l .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGixOJeA2l .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGixOJeA2l .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGixOJeA2l .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGixOJeA2l .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGixOJeA2l .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGixOJeA2l .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGixOJeA2l .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGixOJeA2l .soc-item {
    padding: 10px;
  }
}
.cid-tGixOJeA2l .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGixOJeA2l .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGixOJeA2l .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGixOJeA2l .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGixOJeA2l .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGixOJeA2l .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGixOJeA2l .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGixOJeA2l .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGixOJeA2l .copyright {
    text-align: center !important;
  }
}
.cid-tGixOJeA2l p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGixOJeA2l .row {
    justify-content: flex-start !important;
  }
}
.cid-tGixOJeA2l .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGixOJeA2l .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGixOJeA2l .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGixOJeA2l .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGixOJeA2l .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGixOJeA2l .card-title {
  color: #ffffff;
}
.cid-tGixOJeA2l P {
  color: #22a5e5;
}
.cid-tFKg89tpVz .navbar-dropdown {
  position: relative !important;
}
.cid-tFKg89tpVz .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKg89tpVz nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKg89tpVz .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKg89tpVz .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-tFKg89tpVz .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKg89tpVz .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKg89tpVz .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKg89tpVz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKg89tpVz .nav-link {
  position: relative;
}
.cid-tFKg89tpVz .container {
  display: flex;
  margin: auto;
}
.cid-tFKg89tpVz .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKg89tpVz .dropdown-menu,
.cid-tFKg89tpVz .navbar.opened {
  background: #000000 !important;
}
.cid-tFKg89tpVz .nav-item:focus,
.cid-tFKg89tpVz .nav-link:focus {
  outline: none;
}
.cid-tFKg89tpVz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKg89tpVz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKg89tpVz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKg89tpVz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKg89tpVz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKg89tpVz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKg89tpVz .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKg89tpVz .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKg89tpVz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKg89tpVz .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKg89tpVz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKg89tpVz .navbar.collapsed {
  justify-content: center;
}
.cid-tFKg89tpVz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKg89tpVz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKg89tpVz .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKg89tpVz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKg89tpVz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKg89tpVz .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-tFKg89tpVz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKg89tpVz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKg89tpVz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKg89tpVz .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKg89tpVz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKg89tpVz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKg89tpVz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKg89tpVz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKg89tpVz .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-tFKg89tpVz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKg89tpVz .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKg89tpVz .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKg89tpVz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKg89tpVz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKg89tpVz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKg89tpVz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKg89tpVz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKg89tpVz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKg89tpVz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKg89tpVz .dropdown-item.active,
.cid-tFKg89tpVz .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKg89tpVz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKg89tpVz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKg89tpVz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKg89tpVz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKg89tpVz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKg89tpVz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKg89tpVz ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKg89tpVz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKg89tpVz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKg89tpVz button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKg89tpVz button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKg89tpVz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKg89tpVz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKg89tpVz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg89tpVz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg89tpVz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKg89tpVz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg89tpVz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKg89tpVz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKg89tpVz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg89tpVz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKg89tpVz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKg89tpVz .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-tFKg89tpVz .navbar {
    height: 70px;
  }
  .cid-tFKg89tpVz .navbar.opened {
    height: auto;
  }
  .cid-tFKg89tpVz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKg89SGfK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg89SGfK .link a {
  background-image: none !important;
}
.cid-tFKg89SGfK .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKg89SGfK .date {
  margin-bottom: 6px;
}
.cid-tFKg89SGfK .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKg89SGfK .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKg89SGfK a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKg89SGfK rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKg89SGfK .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKg89SGfK svg {
  margin-left: 15px;
}
.cid-tFKg89SGfK path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKg89SGfK .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKg89SGfK .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKg89SGfK .row {
  justify-content: center;
}
.cid-tFKg89SGfK .p,
.cid-tFKg89SGfK .link {
  color: #767676;
}
.cid-tFKg8aa5sY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKg8aa5sY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8aa5sY .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-tFKg8aa5sY .container {
    padding: 0 30px;
  }
}
.cid-tFKg8aa5sY .row {
  justify-content: center;
}
.cid-tFKg8aa5sY .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKg8aa5sY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKg8aa5sY .card {
    margin-bottom: 30px;
  }
}
.cid-tFKg8aa5sY .card .card-wrapper {
  display: flex;
}
.cid-tFKg8aa5sY .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKg8aa5sY .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKg8aa5sY .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKg8aa5sY .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKg8aa5sY .mbr-section-title {
  color: #767676;
}
.cid-tFKg8aa5sY .mbr-number {
  color: #000000;
}
.cid-tFKg8aa5sY .mbr-card-title {
  color: #1070b9;
}
.cid-tFKg8aa5sY .mbr-text {
  color: #767676;
}
.cid-tFKg8asHn1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg8asHn1 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg8asHn1 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKg8asHn1 .row {
  justify-content: space-between;
}
.cid-tFKg8asHn1 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKg8asHn1 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKg8asHn1 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKg8asHn1 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKg8asHn1 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKg8asHn1 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKg8asHn1 .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKg8asHn1 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKg8asHn1 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKg8asHn1 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKg8asHn1 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKg8asHn1 .link,
.cid-tFKg8asHn1 .link-icon {
  color: #000000;
}
.cid-tFKg8asHn1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8asHn1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg8asHn1 .mbr-text,
.cid-tFKg8asHn1 .mbr-section-btn {
  color: #767676;
}
.cid-tFKg8aKATY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKg8aKATY .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKg8aKATY .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKg8aKATY .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKg8aKATY .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKg8aKATY .box {
  right: 20%;
}
.cid-tFKg8aKATY .text-box {
  right: 0;
}
.cid-tFKg8aKATY .mbr-section-title,
.cid-tFKg8aKATY .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKg8aKATY .text-box {
    display: none;
  }
  .cid-tFKg8aKATY .mbr-section-title,
  .cid-tFKg8aKATY .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKg8aKATY .box {
    display: none;
  }
  .cid-tFKg8aKATY .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKg8aKATY .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKg8aKATY .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKg8aKATY .mbr-section-text {
  color: #767676;
}
.cid-tFKg8aKATY .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg8b4hjr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKg8b4hjr .box {
  margin-bottom: 15px;
}
.cid-tFKg8b4hjr .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKg8b4hjr .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKg8b4hjr .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKg8b4hjr .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKg8b4hjr .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKg8b4hjr .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKg8b4hjr .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKg8b4hjr .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKg8b4hjr .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKg8b4hjr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKg8b4hjr .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKg8b4hjr .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKg8b4hjr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKg8b4hjr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKg8b4hjr .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKg8b4hjr .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKg8b4hjr .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKg8b4hjr .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKg8b4hjr .item-img {
  overflow: hidden;
}
.cid-tFKg8b4hjr .item-img img {
  width: 100%;
}
.cid-tFKg8b4hjr .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKg8b4hjr .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKg8b4hjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8b4hjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg8bHOpV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKg8bHOpV .carousel {
    overflow: hidden;
  }
  .cid-tFKg8bHOpV .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKg8bHOpV .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKg8bHOpV .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKg8bHOpV .carousel,
.cid-tFKg8bHOpV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKg8bHOpV .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKg8bHOpV .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKg8bHOpV .item-wrapper {
    height: 215px;
  }
}
.cid-tFKg8bHOpV .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKg8bHOpV .carousel-caption {
  bottom: 40px;
}
.cid-tFKg8bHOpV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKg8bHOpV .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKg8bHOpV .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKg8bHOpV .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKg8bHOpV .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKg8bHOpV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKg8bHOpV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKg8bHOpV .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg8bHOpV .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKg8bHOpV .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg8bHOpV .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKg8bHOpV .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKg8bHOpV .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKg8bHOpV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKg8bHOpV .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKg8bHOpV .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKg8bHOpV .soc-item::before,
.cid-tFKg8bHOpV .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKg8bHOpV .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKg8bHOpV .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKg8bHOpV .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKg8bHOpV .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKg8bHOpV .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKg8bHOpV .text {
  color: #ddc499;
}
.cid-tFKg8bHOpV .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBc7rGq2V {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBc7rGq2V .carousel {
    overflow: hidden;
  }
  .cid-tGBc7rGq2V .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBc7rGq2V .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBc7rGq2V #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBc7rGq2V #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBc7rGq2V .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBc7rGq2V .link-div {
  margin-left: 20px;
}
.cid-tGBc7rGq2V .link-div h3 {
  margin-left: 4px;
}
.cid-tGBc7rGq2V .mbr-card-title {
  color: #000e2f;
}
#custom-html-88 {
  /* Type valid CSS here */
}
#custom-html-88 .back-button {
  position: fixed;
}
.cid-tFKg8cjvNo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKg8cjvNo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8cjvNo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg8cjvNo .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKg8cjvNo .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKg8cjvNo .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKg8cjvNo .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKg8cjvNo .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKg8cjvNo .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg8cjvNo .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKg8cjvNo .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg8cjvNo .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKg8cjvNo .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKg8cjvNo .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKg8cjvNo .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKg8cjvNo .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKg8cjvNo .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKg8cjvNo .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKg8cjvNo .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKg8cjvNo .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKg8cjvNo .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKg8cjvNo .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKg8cjvNo .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKg8cjvNo .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKg8cjvNo .soc-item {
    padding: 10px;
  }
}
.cid-tFKg8cjvNo .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKg8cjvNo .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKg8cjvNo .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKg8cjvNo .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKg8cjvNo .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKg8cjvNo .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg8cjvNo .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKg8cjvNo .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKg8cjvNo .copyright {
    text-align: center !important;
  }
}
.cid-tFKg8cjvNo p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKg8cjvNo .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKg8cjvNo .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKg8cjvNo .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKg8cjvNo .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg8cjvNo .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKg8cjvNo .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKg8cjvNo .card-title {
  color: #ffffff;
}
.cid-tFKg8cjvNo P {
  color: #22a5e5;
}
.cid-tFKg8G03l4 .navbar-dropdown {
  position: relative !important;
}
.cid-tFKg8G03l4 .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKg8G03l4 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKg8G03l4 .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKg8G03l4 .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-tFKg8G03l4 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKg8G03l4 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKg8G03l4 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKg8G03l4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKg8G03l4 .nav-link {
  position: relative;
}
.cid-tFKg8G03l4 .container {
  display: flex;
  margin: auto;
}
.cid-tFKg8G03l4 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKg8G03l4 .dropdown-menu,
.cid-tFKg8G03l4 .navbar.opened {
  background: #000000 !important;
}
.cid-tFKg8G03l4 .nav-item:focus,
.cid-tFKg8G03l4 .nav-link:focus {
  outline: none;
}
.cid-tFKg8G03l4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKg8G03l4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKg8G03l4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKg8G03l4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKg8G03l4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKg8G03l4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKg8G03l4 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKg8G03l4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKg8G03l4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKg8G03l4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKg8G03l4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKg8G03l4 .navbar.collapsed {
  justify-content: center;
}
.cid-tFKg8G03l4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKg8G03l4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKg8G03l4 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKg8G03l4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKg8G03l4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKg8G03l4 .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-tFKg8G03l4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKg8G03l4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKg8G03l4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKg8G03l4 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKg8G03l4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKg8G03l4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKg8G03l4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKg8G03l4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKg8G03l4 .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-tFKg8G03l4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKg8G03l4 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKg8G03l4 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKg8G03l4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKg8G03l4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKg8G03l4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKg8G03l4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKg8G03l4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKg8G03l4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKg8G03l4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKg8G03l4 .dropdown-item.active,
.cid-tFKg8G03l4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKg8G03l4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKg8G03l4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKg8G03l4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKg8G03l4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKg8G03l4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKg8G03l4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKg8G03l4 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKg8G03l4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKg8G03l4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKg8G03l4 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKg8G03l4 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKg8G03l4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKg8G03l4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKg8G03l4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg8G03l4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg8G03l4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKg8G03l4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg8G03l4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKg8G03l4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKg8G03l4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg8G03l4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKg8G03l4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKg8G03l4 .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-tFKg8G03l4 .navbar {
    height: 70px;
  }
  .cid-tFKg8G03l4 .navbar.opened {
    height: auto;
  }
  .cid-tFKg8G03l4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKg8Gq2WP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg8Gq2WP .link a {
  background-image: none !important;
}
.cid-tFKg8Gq2WP .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKg8Gq2WP .date {
  margin-bottom: 6px;
}
.cid-tFKg8Gq2WP .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKg8Gq2WP .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKg8Gq2WP a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKg8Gq2WP rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKg8Gq2WP .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKg8Gq2WP svg {
  margin-left: 15px;
}
.cid-tFKg8Gq2WP path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKg8Gq2WP .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKg8Gq2WP .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKg8Gq2WP .row {
  justify-content: center;
}
.cid-tFKg8Gq2WP .p,
.cid-tFKg8Gq2WP .link {
  color: #767676;
}
.cid-tFKg8GIkcT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKg8GIkcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8GIkcT .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-tFKg8GIkcT .container {
    padding: 0 30px;
  }
}
.cid-tFKg8GIkcT .row {
  justify-content: center;
}
.cid-tFKg8GIkcT .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKg8GIkcT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKg8GIkcT .card {
    margin-bottom: 30px;
  }
}
.cid-tFKg8GIkcT .card .card-wrapper {
  display: flex;
}
.cid-tFKg8GIkcT .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKg8GIkcT .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKg8GIkcT .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKg8GIkcT .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKg8GIkcT .mbr-section-title {
  color: #767676;
}
.cid-tFKg8GIkcT .mbr-number {
  color: #000000;
}
.cid-tFKg8GIkcT .mbr-card-title {
  color: #1070b9;
}
.cid-tFKg8GIkcT .mbr-text {
  color: #767676;
}
.cid-tFKg8H0tl8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg8H0tl8 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg8H0tl8 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKg8H0tl8 .row {
  justify-content: space-between;
}
.cid-tFKg8H0tl8 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKg8H0tl8 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKg8H0tl8 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKg8H0tl8 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKg8H0tl8 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKg8H0tl8 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKg8H0tl8 .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKg8H0tl8 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKg8H0tl8 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKg8H0tl8 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKg8H0tl8 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKg8H0tl8 .link,
.cid-tFKg8H0tl8 .link-icon {
  color: #000000;
}
.cid-tFKg8H0tl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8H0tl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg8H0tl8 .mbr-text,
.cid-tFKg8H0tl8 .mbr-section-btn {
  color: #767676;
}
.cid-tFKg8Hi8eQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKg8Hi8eQ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKg8Hi8eQ .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKg8Hi8eQ .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKg8Hi8eQ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKg8Hi8eQ .box {
  right: 20%;
}
.cid-tFKg8Hi8eQ .text-box {
  right: 0;
}
.cid-tFKg8Hi8eQ .mbr-section-title,
.cid-tFKg8Hi8eQ .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKg8Hi8eQ .text-box {
    display: none;
  }
  .cid-tFKg8Hi8eQ .mbr-section-title,
  .cid-tFKg8Hi8eQ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKg8Hi8eQ .box {
    display: none;
  }
  .cid-tFKg8Hi8eQ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKg8Hi8eQ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKg8Hi8eQ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKg8Hi8eQ .mbr-section-text {
  color: #767676;
}
.cid-tFKg8Hi8eQ .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg8HFbPk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKg8HFbPk .box {
  margin-bottom: 15px;
}
.cid-tFKg8HFbPk .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKg8HFbPk .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKg8HFbPk .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKg8HFbPk .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKg8HFbPk .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKg8HFbPk .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKg8HFbPk .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKg8HFbPk .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKg8HFbPk .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKg8HFbPk .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKg8HFbPk .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKg8HFbPk .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKg8HFbPk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKg8HFbPk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKg8HFbPk .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKg8HFbPk .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKg8HFbPk .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKg8HFbPk .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKg8HFbPk .item-img {
  overflow: hidden;
}
.cid-tFKg8HFbPk .item-img img {
  width: 100%;
}
.cid-tFKg8HFbPk .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKg8HFbPk .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKg8HFbPk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8HFbPk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg8IbeEO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKg8IbeEO .carousel {
    overflow: hidden;
  }
  .cid-tFKg8IbeEO .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKg8IbeEO .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKg8IbeEO .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKg8IbeEO .carousel,
.cid-tFKg8IbeEO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKg8IbeEO .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKg8IbeEO .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKg8IbeEO .item-wrapper {
    height: 215px;
  }
}
.cid-tFKg8IbeEO .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKg8IbeEO .carousel-caption {
  bottom: 40px;
}
.cid-tFKg8IbeEO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKg8IbeEO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKg8IbeEO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKg8IbeEO .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKg8IbeEO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKg8IbeEO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKg8IbeEO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKg8IbeEO .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg8IbeEO .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKg8IbeEO .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg8IbeEO .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKg8IbeEO .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKg8IbeEO .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKg8IbeEO .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKg8IbeEO .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKg8IbeEO .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKg8IbeEO .soc-item::before,
.cid-tFKg8IbeEO .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKg8IbeEO .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKg8IbeEO .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKg8IbeEO .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKg8IbeEO .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKg8IbeEO .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKg8IbeEO .text {
  color: #ddc499;
}
.cid-tFKg8IbeEO .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBcbcRyY7 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcbcRyY7 .carousel {
    overflow: hidden;
  }
  .cid-tGBcbcRyY7 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcbcRyY7 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcbcRyY7 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcbcRyY7 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcbcRyY7 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcbcRyY7 .link-div {
  margin-left: 20px;
}
.cid-tGBcbcRyY7 .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcbcRyY7 .mbr-card-title {
  color: #000e2f;
}
#custom-html-8i {
  /* Type valid CSS here */
}
#custom-html-8i .back-button {
  position: fixed;
}
.cid-tFKg8IMugy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKg8IMugy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg8IMugy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg8IMugy .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKg8IMugy .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKg8IMugy .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKg8IMugy .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKg8IMugy .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKg8IMugy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg8IMugy .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKg8IMugy .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg8IMugy .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKg8IMugy .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKg8IMugy .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKg8IMugy .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKg8IMugy .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKg8IMugy .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKg8IMugy .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKg8IMugy .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKg8IMugy .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKg8IMugy .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKg8IMugy .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKg8IMugy .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKg8IMugy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKg8IMugy .soc-item {
    padding: 10px;
  }
}
.cid-tFKg8IMugy .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKg8IMugy .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKg8IMugy .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKg8IMugy .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKg8IMugy .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKg8IMugy .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg8IMugy .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKg8IMugy .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKg8IMugy .copyright {
    text-align: center !important;
  }
}
.cid-tFKg8IMugy p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKg8IMugy .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKg8IMugy .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKg8IMugy .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKg8IMugy .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg8IMugy .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKg8IMugy .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKg8IMugy .card-title {
  color: #ffffff;
}
.cid-tFKg8IMugy P {
  color: #22a5e5;
}
.cid-tFKirPkLWw .navbar-dropdown {
  position: relative !important;
}
.cid-tFKirPkLWw .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKirPkLWw nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKirPkLWw .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKirPkLWw .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-tFKirPkLWw .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKirPkLWw .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKirPkLWw .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKirPkLWw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKirPkLWw .nav-link {
  position: relative;
}
.cid-tFKirPkLWw .container {
  display: flex;
  margin: auto;
}
.cid-tFKirPkLWw .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKirPkLWw .dropdown-menu,
.cid-tFKirPkLWw .navbar.opened {
  background: #000000 !important;
}
.cid-tFKirPkLWw .nav-item:focus,
.cid-tFKirPkLWw .nav-link:focus {
  outline: none;
}
.cid-tFKirPkLWw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKirPkLWw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKirPkLWw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKirPkLWw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKirPkLWw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKirPkLWw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKirPkLWw .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKirPkLWw .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKirPkLWw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKirPkLWw .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKirPkLWw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKirPkLWw .navbar.collapsed {
  justify-content: center;
}
.cid-tFKirPkLWw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKirPkLWw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKirPkLWw .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKirPkLWw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKirPkLWw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKirPkLWw .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-tFKirPkLWw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKirPkLWw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKirPkLWw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKirPkLWw .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKirPkLWw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKirPkLWw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKirPkLWw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKirPkLWw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKirPkLWw .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-tFKirPkLWw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKirPkLWw .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKirPkLWw .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKirPkLWw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKirPkLWw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKirPkLWw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKirPkLWw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKirPkLWw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKirPkLWw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKirPkLWw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKirPkLWw .dropdown-item.active,
.cid-tFKirPkLWw .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKirPkLWw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKirPkLWw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKirPkLWw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKirPkLWw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKirPkLWw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKirPkLWw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKirPkLWw ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKirPkLWw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKirPkLWw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKirPkLWw button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKirPkLWw button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKirPkLWw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKirPkLWw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKirPkLWw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKirPkLWw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKirPkLWw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKirPkLWw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKirPkLWw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKirPkLWw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKirPkLWw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKirPkLWw .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKirPkLWw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKirPkLWw .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-tFKirPkLWw .navbar {
    height: 70px;
  }
  .cid-tFKirPkLWw .navbar.opened {
    height: auto;
  }
  .cid-tFKirPkLWw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKirPLabv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKirPLabv .link a {
  background-image: none !important;
}
.cid-tFKirPLabv .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKirPLabv .date {
  margin-bottom: 6px;
}
.cid-tFKirPLabv .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKirPLabv .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKirPLabv a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKirPLabv rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKirPLabv .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKirPLabv svg {
  margin-left: 15px;
}
.cid-tFKirPLabv path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKirPLabv .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKirPLabv .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKirPLabv .row {
  justify-content: center;
}
.cid-tFKirPLabv .p,
.cid-tFKirPLabv .link {
  color: #767676;
}
.cid-tFKirQ3yeg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKirQ3yeg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKirQ3yeg .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-tFKirQ3yeg .container {
    padding: 0 30px;
  }
}
.cid-tFKirQ3yeg .row {
  justify-content: center;
}
.cid-tFKirQ3yeg .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKirQ3yeg .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKirQ3yeg .card {
    margin-bottom: 30px;
  }
}
.cid-tFKirQ3yeg .card .card-wrapper {
  display: flex;
}
.cid-tFKirQ3yeg .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKirQ3yeg .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKirQ3yeg .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKirQ3yeg .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKirQ3yeg .mbr-section-title {
  color: #767676;
}
.cid-tFKirQ3yeg .mbr-number {
  color: #000000;
}
.cid-tFKirQ3yeg .mbr-card-title {
  color: #1070b9;
}
.cid-tFKirQ3yeg .mbr-text {
  color: #767676;
}
.cid-tFKirQlyH0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKirQlyH0 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKirQlyH0 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKirQlyH0 .row {
  justify-content: space-between;
}
.cid-tFKirQlyH0 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKirQlyH0 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKirQlyH0 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKirQlyH0 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKirQlyH0 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKirQlyH0 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKirQlyH0 .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKirQlyH0 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKirQlyH0 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKirQlyH0 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKirQlyH0 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKirQlyH0 .link,
.cid-tFKirQlyH0 .link-icon {
  color: #000000;
}
.cid-tFKirQlyH0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKirQlyH0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKirQlyH0 .mbr-text,
.cid-tFKirQlyH0 .mbr-section-btn {
  color: #767676;
}
.cid-tFKirQEkfn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKirQEkfn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKirQEkfn .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKirQEkfn .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKirQEkfn .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKirQEkfn .box {
  right: 20%;
}
.cid-tFKirQEkfn .text-box {
  right: 0;
}
.cid-tFKirQEkfn .mbr-section-title,
.cid-tFKirQEkfn .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKirQEkfn .text-box {
    display: none;
  }
  .cid-tFKirQEkfn .mbr-section-title,
  .cid-tFKirQEkfn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKirQEkfn .box {
    display: none;
  }
  .cid-tFKirQEkfn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKirQEkfn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKirQEkfn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKirQEkfn .mbr-section-text {
  color: #767676;
}
.cid-tFKirQEkfn .mbr-section-title {
  color: #1070b9;
}
.cid-tFKirR1MwC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKirR1MwC .box {
  margin-bottom: 15px;
}
.cid-tFKirR1MwC .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKirR1MwC .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKirR1MwC .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKirR1MwC .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKirR1MwC .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKirR1MwC .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKirR1MwC .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKirR1MwC .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKirR1MwC .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKirR1MwC .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKirR1MwC .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKirR1MwC .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKirR1MwC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKirR1MwC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKirR1MwC .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKirR1MwC .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKirR1MwC .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKirR1MwC .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKirR1MwC .item-img {
  overflow: hidden;
}
.cid-tFKirR1MwC .item-img img {
  width: 100%;
}
.cid-tFKirR1MwC .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKirR1MwC .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKirR1MwC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKirR1MwC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJkTRZLxbP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJkTRZLxbP .carousel {
    overflow: hidden;
  }
  .cid-tJkTRZLxbP .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tJkTRZLxbP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJkTRZLxbP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJkTRZLxbP .carousel,
.cid-tJkTRZLxbP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJkTRZLxbP .item-wrapper {
  height: 100%;
  width: 100%;
}
.cid-tJkTRZLxbP .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tJkTRZLxbP .carousel-caption {
  bottom: 40px;
}
.cid-tJkTRZLxbP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJkTRZLxbP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJkTRZLxbP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJkTRZLxbP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJkTRZLxbP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tJkTRZLxbP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJkTRZLxbP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJkTRZLxbP .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tJkTRZLxbP .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tJkTRZLxbP .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tJkTRZLxbP .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tJkTRZLxbP .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tJkTRZLxbP .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tJkTRZLxbP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJkTRZLxbP .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tJkTRZLxbP .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tJkTRZLxbP .soc-item::before,
.cid-tJkTRZLxbP .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tJkTRZLxbP .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tJkTRZLxbP .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tJkTRZLxbP .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tJkTRZLxbP .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tJkTRZLxbP .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tJkTRZLxbP .text {
  color: #ddc499;
}
.cid-tJkTRZLxbP .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBa8rySJI {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBa8rySJI .carousel {
    overflow: hidden;
  }
  .cid-tGBa8rySJI .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBa8rySJI .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBa8rySJI #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBa8rySJI #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBa8rySJI .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBa8rySJI .link-div {
  margin-left: 20px;
}
.cid-tGBa8rySJI .link-div h3 {
  margin-left: 4px;
}
.cid-tGBa8rySJI .mbr-card-title {
  color: #000e2f;
}
#custom-html-a6 {
  /* Type valid CSS here */
}
#custom-html-a6 .back-button {
  position: fixed;
}
.cid-tFKirSbvqf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKirSbvqf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKirSbvqf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKirSbvqf .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKirSbvqf .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKirSbvqf .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKirSbvqf .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKirSbvqf .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKirSbvqf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKirSbvqf .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKirSbvqf .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKirSbvqf .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKirSbvqf .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKirSbvqf .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKirSbvqf .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKirSbvqf .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKirSbvqf .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKirSbvqf .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKirSbvqf .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKirSbvqf .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKirSbvqf .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKirSbvqf .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKirSbvqf .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKirSbvqf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKirSbvqf .soc-item {
    padding: 10px;
  }
}
.cid-tFKirSbvqf .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKirSbvqf .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKirSbvqf .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKirSbvqf .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKirSbvqf .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKirSbvqf .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKirSbvqf .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKirSbvqf .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKirSbvqf .copyright {
    text-align: center !important;
  }
}
.cid-tFKirSbvqf p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKirSbvqf .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKirSbvqf .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKirSbvqf .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKirSbvqf .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKirSbvqf .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKirSbvqf .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKirSbvqf .card-title {
  color: #ffffff;
}
.cid-tFKirSbvqf P {
  color: #22a5e5;
}
.cid-tGonWqJwyb .navbar-dropdown {
  position: relative !important;
}
.cid-tGonWqJwyb .navbar-dropdown {
  position: absolute !important;
}
.cid-tGonWqJwyb nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGonWqJwyb .nav-item {
    margin: 0 !important;
  }
}
.cid-tGonWqJwyb .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-tGonWqJwyb .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGonWqJwyb .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGonWqJwyb .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGonWqJwyb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGonWqJwyb .nav-link {
  position: relative;
}
.cid-tGonWqJwyb .container {
  display: flex;
  margin: auto;
}
.cid-tGonWqJwyb .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGonWqJwyb .dropdown-menu,
.cid-tGonWqJwyb .navbar.opened {
  background: #000000 !important;
}
.cid-tGonWqJwyb .nav-item:focus,
.cid-tGonWqJwyb .nav-link:focus {
  outline: none;
}
.cid-tGonWqJwyb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGonWqJwyb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGonWqJwyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGonWqJwyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGonWqJwyb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGonWqJwyb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGonWqJwyb .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGonWqJwyb .navbar.opened {
  transition: all 0.3s;
}
.cid-tGonWqJwyb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGonWqJwyb .navbar .navbar-logo img {
  width: auto;
}
.cid-tGonWqJwyb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGonWqJwyb .navbar.collapsed {
  justify-content: center;
}
.cid-tGonWqJwyb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGonWqJwyb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGonWqJwyb .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGonWqJwyb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGonWqJwyb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGonWqJwyb .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-tGonWqJwyb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGonWqJwyb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGonWqJwyb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGonWqJwyb .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGonWqJwyb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGonWqJwyb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGonWqJwyb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGonWqJwyb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGonWqJwyb .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-tGonWqJwyb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGonWqJwyb .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGonWqJwyb .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGonWqJwyb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGonWqJwyb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGonWqJwyb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGonWqJwyb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGonWqJwyb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGonWqJwyb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGonWqJwyb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGonWqJwyb .dropdown-item.active,
.cid-tGonWqJwyb .dropdown-item:active {
  background-color: transparent;
}
.cid-tGonWqJwyb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGonWqJwyb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGonWqJwyb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGonWqJwyb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGonWqJwyb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGonWqJwyb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGonWqJwyb ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGonWqJwyb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGonWqJwyb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGonWqJwyb button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGonWqJwyb button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGonWqJwyb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGonWqJwyb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGonWqJwyb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGonWqJwyb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGonWqJwyb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGonWqJwyb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGonWqJwyb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGonWqJwyb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGonWqJwyb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGonWqJwyb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGonWqJwyb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGonWqJwyb .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-tGonWqJwyb .navbar {
    height: 70px;
  }
  .cid-tGonWqJwyb .navbar.opened {
    height: auto;
  }
  .cid-tGonWqJwyb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGonWrbhNO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGonWrbhNO .link a {
  background-image: none !important;
}
.cid-tGonWrbhNO .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGonWrbhNO .date {
  margin-bottom: 6px;
}
.cid-tGonWrbhNO .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGonWrbhNO .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGonWrbhNO a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGonWrbhNO rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGonWrbhNO .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGonWrbhNO svg {
  margin-left: 15px;
}
.cid-tGonWrbhNO path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGonWrbhNO .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGonWrbhNO .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGonWrbhNO .row {
  justify-content: center;
}
.cid-tGonWrbhNO .p,
.cid-tGonWrbhNO .link {
  color: #767676;
}
.cid-tGonWrtnMn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGonWrtnMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGonWrtnMn .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-tGonWrtnMn .container {
    padding: 0 30px;
  }
}
.cid-tGonWrtnMn .row {
  justify-content: center;
}
.cid-tGonWrtnMn .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGonWrtnMn .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGonWrtnMn .card {
    margin-bottom: 30px;
  }
}
.cid-tGonWrtnMn .card .card-wrapper {
  display: flex;
}
.cid-tGonWrtnMn .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGonWrtnMn .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGonWrtnMn .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGonWrtnMn .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGonWrtnMn .mbr-section-title {
  color: #767676;
}
.cid-tGonWrtnMn .mbr-number {
  color: #000000;
}
.cid-tGonWrtnMn .mbr-card-title {
  color: #1070b9;
}
.cid-tGonWrtnMn .mbr-text {
  color: #767676;
}
.cid-tGonWrQLo7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGonWrQLo7 .mbr-section-title {
  color: #1070b9;
}
.cid-tGonWrQLo7 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGonWrQLo7 .row {
  justify-content: space-between;
}
.cid-tGonWrQLo7 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGonWrQLo7 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGonWrQLo7 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGonWrQLo7 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGonWrQLo7 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGonWrQLo7 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGonWrQLo7 .link-wrapper {
    justify-content: center;
  }
}
.cid-tGonWrQLo7 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGonWrQLo7 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGonWrQLo7 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGonWrQLo7 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGonWrQLo7 .link,
.cid-tGonWrQLo7 .link-icon {
  color: #000000;
}
.cid-tGonWrQLo7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGonWrQLo7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGonWrQLo7 .mbr-text,
.cid-tGonWrQLo7 .mbr-section-btn {
  color: #767676;
}
.cid-tGonWs9XJ4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGonWs9XJ4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGonWs9XJ4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGonWs9XJ4 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGonWs9XJ4 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGonWs9XJ4 .box {
  right: 20%;
}
.cid-tGonWs9XJ4 .text-box {
  right: 0;
}
.cid-tGonWs9XJ4 .mbr-section-title,
.cid-tGonWs9XJ4 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGonWs9XJ4 .text-box {
    display: none;
  }
  .cid-tGonWs9XJ4 .mbr-section-title,
  .cid-tGonWs9XJ4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGonWs9XJ4 .box {
    display: none;
  }
  .cid-tGonWs9XJ4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGonWs9XJ4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGonWs9XJ4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGonWs9XJ4 .mbr-section-text {
  color: #767676;
}
.cid-tGonWs9XJ4 .mbr-section-title {
  color: #1070b9;
}
.cid-tGonWsu0GX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGonWsu0GX .box {
  margin-bottom: 15px;
}
.cid-tGonWsu0GX .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGonWsu0GX .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGonWsu0GX .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGonWsu0GX .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGonWsu0GX .mbr-media {
    max-height: 432px;
  }
}
.cid-tGonWsu0GX .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGonWsu0GX .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGonWsu0GX .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGonWsu0GX .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGonWsu0GX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGonWsu0GX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGonWsu0GX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGonWsu0GX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGonWsu0GX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGonWsu0GX .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGonWsu0GX .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGonWsu0GX .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGonWsu0GX .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGonWsu0GX .item-img {
  overflow: hidden;
}
.cid-tGonWsu0GX .item-img img {
  width: 100%;
}
.cid-tGonWsu0GX .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGonWsu0GX .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGonWsu0GX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGonWsu0GX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGonWsZMQQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tGonWsZMQQ .carousel {
    overflow: hidden;
  }
  .cid-tGonWsZMQQ .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGonWsZMQQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tGonWsZMQQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tGonWsZMQQ .carousel,
.cid-tGonWsZMQQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tGonWsZMQQ .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGonWsZMQQ .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tGonWsZMQQ .item-wrapper {
    height: 215px;
  }
}
.cid-tGonWsZMQQ .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tGonWsZMQQ .carousel-caption {
  bottom: 40px;
}
.cid-tGonWsZMQQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tGonWsZMQQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tGonWsZMQQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tGonWsZMQQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tGonWsZMQQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tGonWsZMQQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGonWsZMQQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGonWsZMQQ .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGonWsZMQQ .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tGonWsZMQQ .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGonWsZMQQ .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tGonWsZMQQ .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tGonWsZMQQ .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tGonWsZMQQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGonWsZMQQ .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tGonWsZMQQ .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tGonWsZMQQ .soc-item::before,
.cid-tGonWsZMQQ .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tGonWsZMQQ .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tGonWsZMQQ .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tGonWsZMQQ .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tGonWsZMQQ .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tGonWsZMQQ .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tGonWsZMQQ .text {
  color: #ddc499;
}
.cid-tGonWsZMQQ .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-f2 {
  /* Type valid CSS here */
}
#custom-html-f2 .back-button {
  position: fixed;
}
.cid-tGBchxTSVI {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBchxTSVI .carousel {
    overflow: hidden;
  }
  .cid-tGBchxTSVI .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBchxTSVI .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBchxTSVI #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBchxTSVI #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBchxTSVI .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBchxTSVI .link-div {
  margin-left: 20px;
}
.cid-tGBchxTSVI .link-div h3 {
  margin-left: 4px;
}
.cid-tGBchxTSVI .mbr-card-title {
  color: #000e2f;
}
.cid-tGonWtJunc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGonWtJunc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGonWtJunc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGonWtJunc .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGonWtJunc .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGonWtJunc .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGonWtJunc .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGonWtJunc .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGonWtJunc .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGonWtJunc .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGonWtJunc .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGonWtJunc .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGonWtJunc .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGonWtJunc .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGonWtJunc .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGonWtJunc .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGonWtJunc .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGonWtJunc .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGonWtJunc .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGonWtJunc .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGonWtJunc .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGonWtJunc .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGonWtJunc .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGonWtJunc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGonWtJunc .soc-item {
    padding: 10px;
  }
}
.cid-tGonWtJunc .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGonWtJunc .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGonWtJunc .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGonWtJunc .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGonWtJunc .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGonWtJunc .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGonWtJunc .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGonWtJunc .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGonWtJunc .copyright {
    text-align: center !important;
  }
}
.cid-tGonWtJunc p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGonWtJunc .row {
    justify-content: flex-start !important;
  }
}
.cid-tGonWtJunc .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGonWtJunc .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGonWtJunc .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGonWtJunc .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGonWtJunc .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGonWtJunc .card-title {
  color: #ffffff;
}
.cid-tGonWtJunc P {
  color: #22a5e5;
}
.cid-tGoo2sMROT .navbar-dropdown {
  position: relative !important;
}
.cid-tGoo2sMROT .navbar-dropdown {
  position: absolute !important;
}
.cid-tGoo2sMROT nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGoo2sMROT .nav-item {
    margin: 0 !important;
  }
}
.cid-tGoo2sMROT .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-tGoo2sMROT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGoo2sMROT .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGoo2sMROT .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGoo2sMROT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGoo2sMROT .nav-link {
  position: relative;
}
.cid-tGoo2sMROT .container {
  display: flex;
  margin: auto;
}
.cid-tGoo2sMROT .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGoo2sMROT .dropdown-menu,
.cid-tGoo2sMROT .navbar.opened {
  background: #000000 !important;
}
.cid-tGoo2sMROT .nav-item:focus,
.cid-tGoo2sMROT .nav-link:focus {
  outline: none;
}
.cid-tGoo2sMROT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGoo2sMROT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGoo2sMROT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGoo2sMROT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGoo2sMROT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGoo2sMROT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGoo2sMROT .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGoo2sMROT .navbar.opened {
  transition: all 0.3s;
}
.cid-tGoo2sMROT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGoo2sMROT .navbar .navbar-logo img {
  width: auto;
}
.cid-tGoo2sMROT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGoo2sMROT .navbar.collapsed {
  justify-content: center;
}
.cid-tGoo2sMROT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGoo2sMROT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGoo2sMROT .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGoo2sMROT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGoo2sMROT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGoo2sMROT .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-tGoo2sMROT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGoo2sMROT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGoo2sMROT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGoo2sMROT .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGoo2sMROT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGoo2sMROT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGoo2sMROT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGoo2sMROT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGoo2sMROT .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-tGoo2sMROT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGoo2sMROT .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGoo2sMROT .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGoo2sMROT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGoo2sMROT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGoo2sMROT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGoo2sMROT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGoo2sMROT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGoo2sMROT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGoo2sMROT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGoo2sMROT .dropdown-item.active,
.cid-tGoo2sMROT .dropdown-item:active {
  background-color: transparent;
}
.cid-tGoo2sMROT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGoo2sMROT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGoo2sMROT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGoo2sMROT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGoo2sMROT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGoo2sMROT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGoo2sMROT ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGoo2sMROT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGoo2sMROT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGoo2sMROT button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGoo2sMROT button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGoo2sMROT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGoo2sMROT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGoo2sMROT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGoo2sMROT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGoo2sMROT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGoo2sMROT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGoo2sMROT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGoo2sMROT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGoo2sMROT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGoo2sMROT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGoo2sMROT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGoo2sMROT .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-tGoo2sMROT .navbar {
    height: 70px;
  }
  .cid-tGoo2sMROT .navbar.opened {
    height: auto;
  }
  .cid-tGoo2sMROT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGoo2tfeZF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGoo2tfeZF .link a {
  background-image: none !important;
}
.cid-tGoo2tfeZF .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGoo2tfeZF .date {
  margin-bottom: 6px;
}
.cid-tGoo2tfeZF .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGoo2tfeZF .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGoo2tfeZF a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGoo2tfeZF rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGoo2tfeZF .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGoo2tfeZF svg {
  margin-left: 15px;
}
.cid-tGoo2tfeZF path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGoo2tfeZF .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGoo2tfeZF .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGoo2tfeZF .row {
  justify-content: center;
}
.cid-tGoo2tfeZF .p,
.cid-tGoo2tfeZF .link {
  color: #767676;
}
.cid-tGoo2twkaA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGoo2twkaA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoo2twkaA .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-tGoo2twkaA .container {
    padding: 0 30px;
  }
}
.cid-tGoo2twkaA .row {
  justify-content: center;
}
.cid-tGoo2twkaA .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGoo2twkaA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGoo2twkaA .card {
    margin-bottom: 30px;
  }
}
.cid-tGoo2twkaA .card .card-wrapper {
  display: flex;
}
.cid-tGoo2twkaA .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGoo2twkaA .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGoo2twkaA .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGoo2twkaA .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGoo2twkaA .mbr-section-title {
  color: #767676;
}
.cid-tGoo2twkaA .mbr-number {
  color: #000000;
}
.cid-tGoo2twkaA .mbr-card-title {
  color: #1070b9;
}
.cid-tGoo2twkaA .mbr-text {
  color: #767676;
}
.cid-tGoo2tOgf5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGoo2tOgf5 .mbr-section-title {
  color: #1070b9;
}
.cid-tGoo2tOgf5 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGoo2tOgf5 .row {
  justify-content: space-between;
}
.cid-tGoo2tOgf5 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGoo2tOgf5 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGoo2tOgf5 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGoo2tOgf5 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGoo2tOgf5 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGoo2tOgf5 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGoo2tOgf5 .link-wrapper {
    justify-content: center;
  }
}
.cid-tGoo2tOgf5 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGoo2tOgf5 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGoo2tOgf5 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGoo2tOgf5 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGoo2tOgf5 .link,
.cid-tGoo2tOgf5 .link-icon {
  color: #000000;
}
.cid-tGoo2tOgf5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoo2tOgf5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGoo2tOgf5 .mbr-text,
.cid-tGoo2tOgf5 .mbr-section-btn {
  color: #767676;
}
.cid-tGoo2u7LvB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGoo2u7LvB .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGoo2u7LvB .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGoo2u7LvB .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGoo2u7LvB .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGoo2u7LvB .box {
  right: 20%;
}
.cid-tGoo2u7LvB .text-box {
  right: 0;
}
.cid-tGoo2u7LvB .mbr-section-title,
.cid-tGoo2u7LvB .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGoo2u7LvB .text-box {
    display: none;
  }
  .cid-tGoo2u7LvB .mbr-section-title,
  .cid-tGoo2u7LvB .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGoo2u7LvB .box {
    display: none;
  }
  .cid-tGoo2u7LvB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGoo2u7LvB .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGoo2u7LvB .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGoo2u7LvB .mbr-section-text {
  color: #767676;
}
.cid-tGoo2u7LvB .mbr-section-title {
  color: #1070b9;
}
.cid-tGoo2urA6b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGoo2urA6b .box {
  margin-bottom: 15px;
}
.cid-tGoo2urA6b .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGoo2urA6b .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGoo2urA6b .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGoo2urA6b .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGoo2urA6b .mbr-media {
    max-height: 432px;
  }
}
.cid-tGoo2urA6b .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGoo2urA6b .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGoo2urA6b .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGoo2urA6b .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGoo2urA6b .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGoo2urA6b .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGoo2urA6b .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGoo2urA6b .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGoo2urA6b .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGoo2urA6b .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGoo2urA6b .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGoo2urA6b .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGoo2urA6b .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGoo2urA6b .item-img {
  overflow: hidden;
}
.cid-tGoo2urA6b .item-img img {
  width: 100%;
}
.cid-tGoo2urA6b .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGoo2urA6b .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGoo2urA6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoo2urA6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGoo2uXtxp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tGoo2uXtxp .carousel {
    overflow: hidden;
  }
  .cid-tGoo2uXtxp .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGoo2uXtxp .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tGoo2uXtxp .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tGoo2uXtxp .carousel,
.cid-tGoo2uXtxp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tGoo2uXtxp .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGoo2uXtxp .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tGoo2uXtxp .item-wrapper {
    height: 215px;
  }
}
.cid-tGoo2uXtxp .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tGoo2uXtxp .carousel-caption {
  bottom: 40px;
}
.cid-tGoo2uXtxp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tGoo2uXtxp .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tGoo2uXtxp .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tGoo2uXtxp .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tGoo2uXtxp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tGoo2uXtxp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGoo2uXtxp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGoo2uXtxp .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGoo2uXtxp .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tGoo2uXtxp .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGoo2uXtxp .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tGoo2uXtxp .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tGoo2uXtxp .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tGoo2uXtxp .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGoo2uXtxp .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tGoo2uXtxp .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tGoo2uXtxp .soc-item::before,
.cid-tGoo2uXtxp .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tGoo2uXtxp .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tGoo2uXtxp .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tGoo2uXtxp .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tGoo2uXtxp .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tGoo2uXtxp .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tGoo2uXtxp .text {
  color: #ddc499;
}
.cid-tGoo2uXtxp .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBcllghth {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBcllghth .carousel {
    overflow: hidden;
  }
  .cid-tGBcllghth .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBcllghth .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBcllghth #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBcllghth #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBcllghth .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBcllghth .link-div {
  margin-left: 20px;
}
.cid-tGBcllghth .link-div h3 {
  margin-left: 4px;
}
.cid-tGBcllghth .mbr-card-title {
  color: #000e2f;
}
#custom-html-fc {
  /* Type valid CSS here */
}
#custom-html-fc .back-button {
  position: fixed;
}
.cid-tGoo2vLtSr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGoo2vLtSr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoo2vLtSr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGoo2vLtSr .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGoo2vLtSr .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGoo2vLtSr .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGoo2vLtSr .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGoo2vLtSr .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGoo2vLtSr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGoo2vLtSr .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGoo2vLtSr .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGoo2vLtSr .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGoo2vLtSr .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGoo2vLtSr .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGoo2vLtSr .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGoo2vLtSr .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGoo2vLtSr .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGoo2vLtSr .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGoo2vLtSr .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGoo2vLtSr .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGoo2vLtSr .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGoo2vLtSr .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGoo2vLtSr .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGoo2vLtSr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGoo2vLtSr .soc-item {
    padding: 10px;
  }
}
.cid-tGoo2vLtSr .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGoo2vLtSr .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGoo2vLtSr .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGoo2vLtSr .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGoo2vLtSr .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGoo2vLtSr .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGoo2vLtSr .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGoo2vLtSr .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGoo2vLtSr .copyright {
    text-align: center !important;
  }
}
.cid-tGoo2vLtSr p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGoo2vLtSr .row {
    justify-content: flex-start !important;
  }
}
.cid-tGoo2vLtSr .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGoo2vLtSr .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGoo2vLtSr .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGoo2vLtSr .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGoo2vLtSr .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGoo2vLtSr .card-title {
  color: #ffffff;
}
.cid-tGoo2vLtSr P {
  color: #22a5e5;
}
.cid-tGuc6G7wzm .navbar-dropdown {
  position: relative !important;
}
.cid-tGuc6G7wzm .navbar-dropdown {
  position: absolute !important;
}
.cid-tGuc6G7wzm nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGuc6G7wzm .nav-item {
    margin: 0 !important;
  }
}
.cid-tGuc6G7wzm .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-tGuc6G7wzm .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGuc6G7wzm .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGuc6G7wzm .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGuc6G7wzm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGuc6G7wzm .nav-link {
  position: relative;
}
.cid-tGuc6G7wzm .container {
  display: flex;
  margin: auto;
}
.cid-tGuc6G7wzm .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGuc6G7wzm .dropdown-menu,
.cid-tGuc6G7wzm .navbar.opened {
  background: #000000 !important;
}
.cid-tGuc6G7wzm .nav-item:focus,
.cid-tGuc6G7wzm .nav-link:focus {
  outline: none;
}
.cid-tGuc6G7wzm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGuc6G7wzm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGuc6G7wzm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGuc6G7wzm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGuc6G7wzm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGuc6G7wzm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGuc6G7wzm .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGuc6G7wzm .navbar.opened {
  transition: all 0.3s;
}
.cid-tGuc6G7wzm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGuc6G7wzm .navbar .navbar-logo img {
  width: auto;
}
.cid-tGuc6G7wzm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGuc6G7wzm .navbar.collapsed {
  justify-content: center;
}
.cid-tGuc6G7wzm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGuc6G7wzm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGuc6G7wzm .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGuc6G7wzm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGuc6G7wzm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGuc6G7wzm .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-tGuc6G7wzm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGuc6G7wzm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGuc6G7wzm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGuc6G7wzm .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGuc6G7wzm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGuc6G7wzm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGuc6G7wzm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGuc6G7wzm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGuc6G7wzm .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-tGuc6G7wzm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGuc6G7wzm .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGuc6G7wzm .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGuc6G7wzm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGuc6G7wzm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGuc6G7wzm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGuc6G7wzm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGuc6G7wzm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGuc6G7wzm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGuc6G7wzm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGuc6G7wzm .dropdown-item.active,
.cid-tGuc6G7wzm .dropdown-item:active {
  background-color: transparent;
}
.cid-tGuc6G7wzm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGuc6G7wzm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGuc6G7wzm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGuc6G7wzm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGuc6G7wzm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGuc6G7wzm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGuc6G7wzm ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGuc6G7wzm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGuc6G7wzm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGuc6G7wzm button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGuc6G7wzm button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGuc6G7wzm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGuc6G7wzm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGuc6G7wzm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGuc6G7wzm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGuc6G7wzm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGuc6G7wzm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGuc6G7wzm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGuc6G7wzm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGuc6G7wzm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGuc6G7wzm .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGuc6G7wzm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGuc6G7wzm .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-tGuc6G7wzm .navbar {
    height: 70px;
  }
  .cid-tGuc6G7wzm .navbar.opened {
    height: auto;
  }
  .cid-tGuc6G7wzm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGuc6GLHhj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGuc6GLHhj .link a {
  background-image: none !important;
}
.cid-tGuc6GLHhj .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGuc6GLHhj .date {
  margin-bottom: 6px;
}
.cid-tGuc6GLHhj .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGuc6GLHhj .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGuc6GLHhj a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGuc6GLHhj rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGuc6GLHhj .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGuc6GLHhj svg {
  margin-left: 15px;
}
.cid-tGuc6GLHhj path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGuc6GLHhj .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGuc6GLHhj .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGuc6GLHhj .row {
  justify-content: center;
}
.cid-tGuc6GLHhj .p,
.cid-tGuc6GLHhj .link {
  color: #767676;
}
.cid-tGuc6H3Put {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGuc6H3Put .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuc6H3Put .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-tGuc6H3Put .container {
    padding: 0 30px;
  }
}
.cid-tGuc6H3Put .row {
  justify-content: center;
}
.cid-tGuc6H3Put .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGuc6H3Put .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGuc6H3Put .card {
    margin-bottom: 30px;
  }
}
.cid-tGuc6H3Put .card .card-wrapper {
  display: flex;
}
.cid-tGuc6H3Put .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGuc6H3Put .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGuc6H3Put .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGuc6H3Put .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGuc6H3Put .mbr-section-title {
  color: #767676;
}
.cid-tGuc6H3Put .mbr-number {
  color: #000000;
}
.cid-tGuc6H3Put .mbr-card-title {
  color: #1070b9;
}
.cid-tGuc6H3Put .mbr-text {
  color: #767676;
}
.cid-tGuc6HnW1T {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGuc6HnW1T .mbr-section-title {
  color: #1070b9;
}
.cid-tGuc6HnW1T .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGuc6HnW1T .row {
  justify-content: space-between;
}
.cid-tGuc6HnW1T .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGuc6HnW1T .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGuc6HnW1T .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGuc6HnW1T .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGuc6HnW1T .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGuc6HnW1T .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGuc6HnW1T .link-wrapper {
    justify-content: center;
  }
}
.cid-tGuc6HnW1T .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGuc6HnW1T .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGuc6HnW1T .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGuc6HnW1T .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGuc6HnW1T .link,
.cid-tGuc6HnW1T .link-icon {
  color: #000000;
}
.cid-tGuc6HnW1T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuc6HnW1T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGuc6HnW1T .mbr-text,
.cid-tGuc6HnW1T .mbr-section-btn {
  color: #767676;
}
.cid-tGuc6HGK9q {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGuc6HGK9q .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGuc6HGK9q .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGuc6HGK9q .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGuc6HGK9q .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGuc6HGK9q .box {
  right: 20%;
}
.cid-tGuc6HGK9q .text-box {
  right: 0;
}
.cid-tGuc6HGK9q .mbr-section-title,
.cid-tGuc6HGK9q .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGuc6HGK9q .text-box {
    display: none;
  }
  .cid-tGuc6HGK9q .mbr-section-title,
  .cid-tGuc6HGK9q .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGuc6HGK9q .box {
    display: none;
  }
  .cid-tGuc6HGK9q .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGuc6HGK9q .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGuc6HGK9q .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGuc6HGK9q .mbr-section-text {
  color: #767676;
}
.cid-tGuc6HGK9q .mbr-section-title {
  color: #1070b9;
}
#custom-html-gj {
  /* Type valid CSS here */
}
#custom-html-gj .back-button {
  position: fixed;
}
.cid-tGB3wbf8Ij {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB3wbf8Ij .carousel {
    overflow: hidden;
  }
  .cid-tGB3wbf8Ij .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB3wbf8Ij .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB3wbf8Ij #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB3wbf8Ij #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB3wbf8Ij .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB3wbf8Ij .link-div {
  margin-left: 20px;
}
.cid-tGB3wbf8Ij .link-div h3 {
  margin-left: 4px;
}
.cid-tGB3wbf8Ij .mbr-card-title {
  color: #000e2f;
}
.cid-tGuc6IhXID {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGuc6IhXID .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuc6IhXID .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGuc6IhXID .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGuc6IhXID .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGuc6IhXID .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGuc6IhXID .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGuc6IhXID .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGuc6IhXID .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGuc6IhXID .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGuc6IhXID .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGuc6IhXID .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGuc6IhXID .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGuc6IhXID .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGuc6IhXID .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGuc6IhXID .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGuc6IhXID .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGuc6IhXID .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGuc6IhXID .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGuc6IhXID .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGuc6IhXID .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGuc6IhXID .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGuc6IhXID .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGuc6IhXID .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGuc6IhXID .soc-item {
    padding: 10px;
  }
}
.cid-tGuc6IhXID .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGuc6IhXID .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGuc6IhXID .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGuc6IhXID .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGuc6IhXID .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGuc6IhXID .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGuc6IhXID .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGuc6IhXID .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGuc6IhXID .copyright {
    text-align: center !important;
  }
}
.cid-tGuc6IhXID p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGuc6IhXID .row {
    justify-content: flex-start !important;
  }
}
.cid-tGuc6IhXID .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGuc6IhXID .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGuc6IhXID .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGuc6IhXID .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGuc6IhXID .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGuc6IhXID .card-title {
  color: #ffffff;
}
.cid-tGuc6IhXID P {
  color: #22a5e5;
}
.cid-tGuUzgk3b9 .navbar-dropdown {
  position: relative !important;
}
.cid-tGuUzgk3b9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tGuUzgk3b9 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGuUzgk3b9 .nav-item {
    margin: 0 !important;
  }
}
.cid-tGuUzgk3b9 .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-tGuUzgk3b9 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGuUzgk3b9 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGuUzgk3b9 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGuUzgk3b9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGuUzgk3b9 .nav-link {
  position: relative;
}
.cid-tGuUzgk3b9 .container {
  display: flex;
  margin: auto;
}
.cid-tGuUzgk3b9 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGuUzgk3b9 .dropdown-menu,
.cid-tGuUzgk3b9 .navbar.opened {
  background: #000000 !important;
}
.cid-tGuUzgk3b9 .nav-item:focus,
.cid-tGuUzgk3b9 .nav-link:focus {
  outline: none;
}
.cid-tGuUzgk3b9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGuUzgk3b9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGuUzgk3b9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGuUzgk3b9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGuUzgk3b9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGuUzgk3b9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGuUzgk3b9 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGuUzgk3b9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGuUzgk3b9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGuUzgk3b9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGuUzgk3b9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGuUzgk3b9 .navbar.collapsed {
  justify-content: center;
}
.cid-tGuUzgk3b9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGuUzgk3b9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGuUzgk3b9 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGuUzgk3b9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGuUzgk3b9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGuUzgk3b9 .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-tGuUzgk3b9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGuUzgk3b9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGuUzgk3b9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGuUzgk3b9 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGuUzgk3b9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGuUzgk3b9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGuUzgk3b9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGuUzgk3b9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGuUzgk3b9 .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-tGuUzgk3b9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGuUzgk3b9 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGuUzgk3b9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGuUzgk3b9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGuUzgk3b9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGuUzgk3b9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGuUzgk3b9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGuUzgk3b9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGuUzgk3b9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGuUzgk3b9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGuUzgk3b9 .dropdown-item.active,
.cid-tGuUzgk3b9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGuUzgk3b9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGuUzgk3b9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGuUzgk3b9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGuUzgk3b9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGuUzgk3b9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGuUzgk3b9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGuUzgk3b9 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGuUzgk3b9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGuUzgk3b9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGuUzgk3b9 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGuUzgk3b9 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGuUzgk3b9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGuUzgk3b9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGuUzgk3b9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGuUzgk3b9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGuUzgk3b9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGuUzgk3b9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGuUzgk3b9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGuUzgk3b9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGuUzgk3b9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGuUzgk3b9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGuUzgk3b9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGuUzgk3b9 .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-tGuUzgk3b9 .navbar {
    height: 70px;
  }
  .cid-tGuUzgk3b9 .navbar.opened {
    height: auto;
  }
  .cid-tGuUzgk3b9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGuUzgKnYF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGuUzgKnYF .link a {
  background-image: none !important;
}
.cid-tGuUzgKnYF .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGuUzgKnYF .date {
  margin-bottom: 6px;
}
.cid-tGuUzgKnYF .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGuUzgKnYF .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGuUzgKnYF a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGuUzgKnYF rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGuUzgKnYF .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGuUzgKnYF svg {
  margin-left: 15px;
}
.cid-tGuUzgKnYF path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGuUzgKnYF .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGuUzgKnYF .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGuUzgKnYF .row {
  justify-content: center;
}
.cid-tGuUzgKnYF .p,
.cid-tGuUzgKnYF .link {
  color: #767676;
}
.cid-tGuUzh2tNY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGuUzh2tNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuUzh2tNY .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-tGuUzh2tNY .container {
    padding: 0 30px;
  }
}
.cid-tGuUzh2tNY .row {
  justify-content: center;
}
.cid-tGuUzh2tNY .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGuUzh2tNY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGuUzh2tNY .card {
    margin-bottom: 30px;
  }
}
.cid-tGuUzh2tNY .card .card-wrapper {
  display: flex;
}
.cid-tGuUzh2tNY .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGuUzh2tNY .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGuUzh2tNY .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGuUzh2tNY .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGuUzh2tNY .mbr-section-title {
  color: #767676;
}
.cid-tGuUzh2tNY .mbr-number {
  color: #000000;
}
.cid-tGuUzh2tNY .mbr-card-title {
  color: #1070b9;
}
.cid-tGuUzh2tNY .mbr-text {
  color: #767676;
}
.cid-tGuUzhlIZM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGuUzhlIZM .mbr-section-title {
  color: #1070b9;
}
.cid-tGuUzhlIZM .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGuUzhlIZM .row {
  justify-content: space-between;
}
.cid-tGuUzhlIZM .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGuUzhlIZM .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGuUzhlIZM .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGuUzhlIZM .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGuUzhlIZM .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGuUzhlIZM .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGuUzhlIZM .link-wrapper {
    justify-content: center;
  }
}
.cid-tGuUzhlIZM .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGuUzhlIZM .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGuUzhlIZM .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGuUzhlIZM .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGuUzhlIZM .link,
.cid-tGuUzhlIZM .link-icon {
  color: #000000;
}
.cid-tGuUzhlIZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuUzhlIZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGuUzhlIZM .mbr-text,
.cid-tGuUzhlIZM .mbr-section-btn {
  color: #767676;
}
.cid-tGuUzhDTLc {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGuUzhDTLc .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGuUzhDTLc .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGuUzhDTLc .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGuUzhDTLc .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGuUzhDTLc .box {
  right: 20%;
}
.cid-tGuUzhDTLc .text-box {
  right: 0;
}
.cid-tGuUzhDTLc .mbr-section-title,
.cid-tGuUzhDTLc .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGuUzhDTLc .text-box {
    display: none;
  }
  .cid-tGuUzhDTLc .mbr-section-title,
  .cid-tGuUzhDTLc .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGuUzhDTLc .box {
    display: none;
  }
  .cid-tGuUzhDTLc .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGuUzhDTLc .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGuUzhDTLc .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGuUzhDTLc .mbr-section-text {
  color: #767676;
}
.cid-tGuUzhDTLc .mbr-section-title {
  color: #1070b9;
}
#custom-html-gr {
  /* Type valid CSS here */
}
#custom-html-gr .back-button {
  position: fixed;
}
.cid-tGB3d4OijG {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB3d4OijG .carousel {
    overflow: hidden;
  }
  .cid-tGB3d4OijG .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB3d4OijG .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB3d4OijG #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB3d4OijG #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB3d4OijG .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB3d4OijG .link-div {
  margin-left: 20px;
}
.cid-tGB3d4OijG .link-div h3 {
  margin-left: 4px;
}
.cid-tGB3d4OijG .mbr-card-title {
  color: #000e2f;
}
.cid-tGuUzieK33 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGuUzieK33 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGuUzieK33 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGuUzieK33 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGuUzieK33 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGuUzieK33 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGuUzieK33 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGuUzieK33 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGuUzieK33 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGuUzieK33 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGuUzieK33 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGuUzieK33 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGuUzieK33 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGuUzieK33 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGuUzieK33 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGuUzieK33 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGuUzieK33 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGuUzieK33 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGuUzieK33 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGuUzieK33 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGuUzieK33 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGuUzieK33 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGuUzieK33 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGuUzieK33 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGuUzieK33 .soc-item {
    padding: 10px;
  }
}
.cid-tGuUzieK33 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGuUzieK33 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGuUzieK33 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGuUzieK33 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGuUzieK33 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGuUzieK33 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGuUzieK33 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGuUzieK33 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGuUzieK33 .copyright {
    text-align: center !important;
  }
}
.cid-tGuUzieK33 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGuUzieK33 .row {
    justify-content: flex-start !important;
  }
}
.cid-tGuUzieK33 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGuUzieK33 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGuUzieK33 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGuUzieK33 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGuUzieK33 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGuUzieK33 .card-title {
  color: #ffffff;
}
.cid-tGuUzieK33 P {
  color: #22a5e5;
}
.cid-tGveW5NRNY .navbar-dropdown {
  position: relative !important;
}
.cid-tGveW5NRNY .navbar-dropdown {
  position: absolute !important;
}
.cid-tGveW5NRNY nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGveW5NRNY .nav-item {
    margin: 0 !important;
  }
}
.cid-tGveW5NRNY .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-tGveW5NRNY .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGveW5NRNY .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGveW5NRNY .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGveW5NRNY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGveW5NRNY .nav-link {
  position: relative;
}
.cid-tGveW5NRNY .container {
  display: flex;
  margin: auto;
}
.cid-tGveW5NRNY .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGveW5NRNY .dropdown-menu,
.cid-tGveW5NRNY .navbar.opened {
  background: #000000 !important;
}
.cid-tGveW5NRNY .nav-item:focus,
.cid-tGveW5NRNY .nav-link:focus {
  outline: none;
}
.cid-tGveW5NRNY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGveW5NRNY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGveW5NRNY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGveW5NRNY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGveW5NRNY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGveW5NRNY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGveW5NRNY .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGveW5NRNY .navbar.opened {
  transition: all 0.3s;
}
.cid-tGveW5NRNY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGveW5NRNY .navbar .navbar-logo img {
  width: auto;
}
.cid-tGveW5NRNY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGveW5NRNY .navbar.collapsed {
  justify-content: center;
}
.cid-tGveW5NRNY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGveW5NRNY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGveW5NRNY .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGveW5NRNY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGveW5NRNY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGveW5NRNY .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-tGveW5NRNY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGveW5NRNY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGveW5NRNY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGveW5NRNY .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGveW5NRNY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGveW5NRNY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGveW5NRNY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGveW5NRNY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGveW5NRNY .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-tGveW5NRNY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGveW5NRNY .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGveW5NRNY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGveW5NRNY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGveW5NRNY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGveW5NRNY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGveW5NRNY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGveW5NRNY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGveW5NRNY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGveW5NRNY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGveW5NRNY .dropdown-item.active,
.cid-tGveW5NRNY .dropdown-item:active {
  background-color: transparent;
}
.cid-tGveW5NRNY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGveW5NRNY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGveW5NRNY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGveW5NRNY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGveW5NRNY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGveW5NRNY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGveW5NRNY ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGveW5NRNY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGveW5NRNY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGveW5NRNY button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGveW5NRNY button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGveW5NRNY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGveW5NRNY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGveW5NRNY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGveW5NRNY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGveW5NRNY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGveW5NRNY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGveW5NRNY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGveW5NRNY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGveW5NRNY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGveW5NRNY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGveW5NRNY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGveW5NRNY .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-tGveW5NRNY .navbar {
    height: 70px;
  }
  .cid-tGveW5NRNY .navbar.opened {
    height: auto;
  }
  .cid-tGveW5NRNY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGveW6dLab {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGveW6dLab .link a {
  background-image: none !important;
}
.cid-tGveW6dLab .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGveW6dLab .date {
  margin-bottom: 6px;
}
.cid-tGveW6dLab .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGveW6dLab .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGveW6dLab a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGveW6dLab rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGveW6dLab .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGveW6dLab svg {
  margin-left: 15px;
}
.cid-tGveW6dLab path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGveW6dLab .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGveW6dLab .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGveW6dLab .row {
  justify-content: center;
}
.cid-tGveW6dLab .p,
.cid-tGveW6dLab .link {
  color: #767676;
}
.cid-tGveW6uC7r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGveW6uC7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGveW6uC7r .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-tGveW6uC7r .container {
    padding: 0 30px;
  }
}
.cid-tGveW6uC7r .row {
  justify-content: center;
}
.cid-tGveW6uC7r .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGveW6uC7r .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGveW6uC7r .card {
    margin-bottom: 30px;
  }
}
.cid-tGveW6uC7r .card .card-wrapper {
  display: flex;
}
.cid-tGveW6uC7r .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGveW6uC7r .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGveW6uC7r .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGveW6uC7r .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGveW6uC7r .mbr-section-title {
  color: #767676;
}
.cid-tGveW6uC7r .mbr-number {
  color: #000000;
}
.cid-tGveW6uC7r .mbr-card-title {
  color: #1070b9;
}
.cid-tGveW6uC7r .mbr-text {
  color: #767676;
}
.cid-tGveW6NkeI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGveW6NkeI .mbr-section-title {
  color: #1070b9;
}
.cid-tGveW6NkeI .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGveW6NkeI .row {
  justify-content: space-between;
}
.cid-tGveW6NkeI .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGveW6NkeI .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGveW6NkeI .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGveW6NkeI .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGveW6NkeI .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGveW6NkeI .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGveW6NkeI .link-wrapper {
    justify-content: center;
  }
}
.cid-tGveW6NkeI .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGveW6NkeI .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGveW6NkeI .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGveW6NkeI .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGveW6NkeI .link,
.cid-tGveW6NkeI .link-icon {
  color: #000000;
}
.cid-tGveW6NkeI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGveW6NkeI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGveW6NkeI .mbr-text,
.cid-tGveW6NkeI .mbr-section-btn {
  color: #767676;
}
.cid-tGveW79e2q {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGveW79e2q .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGveW79e2q .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGveW79e2q .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGveW79e2q .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGveW79e2q .box {
  right: 20%;
}
.cid-tGveW79e2q .text-box {
  right: 0;
}
.cid-tGveW79e2q .mbr-section-title,
.cid-tGveW79e2q .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGveW79e2q .text-box {
    display: none;
  }
  .cid-tGveW79e2q .mbr-section-title,
  .cid-tGveW79e2q .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGveW79e2q .box {
    display: none;
  }
  .cid-tGveW79e2q .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGveW79e2q .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGveW79e2q .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGveW79e2q .mbr-section-text {
  color: #767676;
}
.cid-tGveW79e2q .mbr-section-title {
  color: #1070b9;
}
#custom-html-gz {
  /* Type valid CSS here */
}
#custom-html-gz .back-button {
  position: fixed;
}
.cid-tGAZbjevAO {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGAZbjevAO .carousel {
    overflow: hidden;
  }
  .cid-tGAZbjevAO .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGAZbjevAO .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGAZbjevAO #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGAZbjevAO #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGAZbjevAO .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGAZbjevAO .link-div {
  margin-left: 20px;
}
.cid-tGAZbjevAO .link-div h3 {
  margin-left: 4px;
}
.cid-tGAZbjevAO .mbr-card-title {
  color: #000e2f;
}
.cid-tGveW7KgDW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGveW7KgDW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGveW7KgDW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGveW7KgDW .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGveW7KgDW .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGveW7KgDW .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGveW7KgDW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGveW7KgDW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGveW7KgDW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGveW7KgDW .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGveW7KgDW .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGveW7KgDW .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGveW7KgDW .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGveW7KgDW .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGveW7KgDW .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGveW7KgDW .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGveW7KgDW .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGveW7KgDW .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGveW7KgDW .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGveW7KgDW .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGveW7KgDW .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGveW7KgDW .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGveW7KgDW .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGveW7KgDW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGveW7KgDW .soc-item {
    padding: 10px;
  }
}
.cid-tGveW7KgDW .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGveW7KgDW .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGveW7KgDW .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGveW7KgDW .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGveW7KgDW .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGveW7KgDW .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGveW7KgDW .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGveW7KgDW .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGveW7KgDW .copyright {
    text-align: center !important;
  }
}
.cid-tGveW7KgDW p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGveW7KgDW .row {
    justify-content: flex-start !important;
  }
}
.cid-tGveW7KgDW .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGveW7KgDW .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGveW7KgDW .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGveW7KgDW .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGveW7KgDW .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGveW7KgDW .card-title {
  color: #ffffff;
}
.cid-tGveW7KgDW P {
  color: #22a5e5;
}
.cid-tGvyGtoStt .navbar-dropdown {
  position: relative !important;
}
.cid-tGvyGtoStt .navbar-dropdown {
  position: absolute !important;
}
.cid-tGvyGtoStt nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGvyGtoStt .nav-item {
    margin: 0 !important;
  }
}
.cid-tGvyGtoStt .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-tGvyGtoStt .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGvyGtoStt .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGvyGtoStt .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGvyGtoStt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGvyGtoStt .nav-link {
  position: relative;
}
.cid-tGvyGtoStt .container {
  display: flex;
  margin: auto;
}
.cid-tGvyGtoStt .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGvyGtoStt .dropdown-menu,
.cid-tGvyGtoStt .navbar.opened {
  background: #000000 !important;
}
.cid-tGvyGtoStt .nav-item:focus,
.cid-tGvyGtoStt .nav-link:focus {
  outline: none;
}
.cid-tGvyGtoStt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGvyGtoStt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGvyGtoStt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGvyGtoStt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGvyGtoStt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGvyGtoStt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGvyGtoStt .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGvyGtoStt .navbar.opened {
  transition: all 0.3s;
}
.cid-tGvyGtoStt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGvyGtoStt .navbar .navbar-logo img {
  width: auto;
}
.cid-tGvyGtoStt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGvyGtoStt .navbar.collapsed {
  justify-content: center;
}
.cid-tGvyGtoStt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGvyGtoStt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGvyGtoStt .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGvyGtoStt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGvyGtoStt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGvyGtoStt .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-tGvyGtoStt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGvyGtoStt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGvyGtoStt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGvyGtoStt .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGvyGtoStt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGvyGtoStt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGvyGtoStt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGvyGtoStt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGvyGtoStt .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-tGvyGtoStt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGvyGtoStt .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGvyGtoStt .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGvyGtoStt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGvyGtoStt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGvyGtoStt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGvyGtoStt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGvyGtoStt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGvyGtoStt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGvyGtoStt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGvyGtoStt .dropdown-item.active,
.cid-tGvyGtoStt .dropdown-item:active {
  background-color: transparent;
}
.cid-tGvyGtoStt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGvyGtoStt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGvyGtoStt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGvyGtoStt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGvyGtoStt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGvyGtoStt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGvyGtoStt ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGvyGtoStt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGvyGtoStt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGvyGtoStt button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGvyGtoStt button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGvyGtoStt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGvyGtoStt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGvyGtoStt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGvyGtoStt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGvyGtoStt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGvyGtoStt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGvyGtoStt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGvyGtoStt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGvyGtoStt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGvyGtoStt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGvyGtoStt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGvyGtoStt .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-tGvyGtoStt .navbar {
    height: 70px;
  }
  .cid-tGvyGtoStt .navbar.opened {
    height: auto;
  }
  .cid-tGvyGtoStt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGvyGtObN9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGvyGtObN9 .link a {
  background-image: none !important;
}
.cid-tGvyGtObN9 .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGvyGtObN9 .date {
  margin-bottom: 6px;
}
.cid-tGvyGtObN9 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGvyGtObN9 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGvyGtObN9 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGvyGtObN9 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGvyGtObN9 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGvyGtObN9 svg {
  margin-left: 15px;
}
.cid-tGvyGtObN9 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGvyGtObN9 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGvyGtObN9 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGvyGtObN9 .row {
  justify-content: center;
}
.cid-tGvyGtObN9 .p,
.cid-tGvyGtObN9 .link {
  color: #767676;
}
.cid-tGvyGu6yfF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGvyGu6yfF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGvyGu6yfF .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-tGvyGu6yfF .container {
    padding: 0 30px;
  }
}
.cid-tGvyGu6yfF .row {
  justify-content: center;
}
.cid-tGvyGu6yfF .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGvyGu6yfF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGvyGu6yfF .card {
    margin-bottom: 30px;
  }
}
.cid-tGvyGu6yfF .card .card-wrapper {
  display: flex;
}
.cid-tGvyGu6yfF .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGvyGu6yfF .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGvyGu6yfF .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGvyGu6yfF .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGvyGu6yfF .mbr-section-title {
  color: #767676;
}
.cid-tGvyGu6yfF .mbr-number {
  color: #000000;
}
.cid-tGvyGu6yfF .mbr-card-title {
  color: #1070b9;
}
.cid-tGvyGu6yfF .mbr-text {
  color: #767676;
}
.cid-tGvyGusNuN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGvyGusNuN .mbr-section-title {
  color: #1070b9;
}
.cid-tGvyGusNuN .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGvyGusNuN .row {
  justify-content: space-between;
}
.cid-tGvyGusNuN .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGvyGusNuN .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGvyGusNuN .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGvyGusNuN .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGvyGusNuN .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGvyGusNuN .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGvyGusNuN .link-wrapper {
    justify-content: center;
  }
}
.cid-tGvyGusNuN .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGvyGusNuN .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGvyGusNuN .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGvyGusNuN .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGvyGusNuN .link,
.cid-tGvyGusNuN .link-icon {
  color: #000000;
}
.cid-tGvyGusNuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGvyGusNuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGvyGusNuN .mbr-text,
.cid-tGvyGusNuN .mbr-section-btn {
  color: #767676;
}
.cid-tGvyGuLaJj {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tGvyGuLaJj .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGvyGuLaJj .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGvyGuLaJj .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGvyGuLaJj .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGvyGuLaJj .box {
  right: 20%;
}
.cid-tGvyGuLaJj .text-box {
  right: 0;
}
.cid-tGvyGuLaJj .mbr-section-title,
.cid-tGvyGuLaJj .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGvyGuLaJj .text-box {
    display: none;
  }
  .cid-tGvyGuLaJj .mbr-section-title,
  .cid-tGvyGuLaJj .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGvyGuLaJj .box {
    display: none;
  }
  .cid-tGvyGuLaJj .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGvyGuLaJj .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGvyGuLaJj .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGvyGuLaJj .mbr-section-text {
  color: #767676;
}
.cid-tGvyGuLaJj .mbr-section-title {
  color: #1070b9;
}
#custom-html-h7 {
  /* Type valid CSS here */
}
#custom-html-h7 .back-button {
  position: fixed;
}
.cid-tGAYPuC4et {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGAYPuC4et .carousel {
    overflow: hidden;
  }
  .cid-tGAYPuC4et .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGAYPuC4et .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGAYPuC4et #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGAYPuC4et #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGAYPuC4et .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGAYPuC4et .link-div {
  margin-left: 20px;
}
.cid-tGAYPuC4et .link-div h3 {
  margin-left: 4px;
}
.cid-tGAYPuC4et .mbr-card-title {
  color: #000e2f;
}
.cid-tGvyGvmHuI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGvyGvmHuI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGvyGvmHuI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGvyGvmHuI .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGvyGvmHuI .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGvyGvmHuI .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGvyGvmHuI .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGvyGvmHuI .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGvyGvmHuI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGvyGvmHuI .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGvyGvmHuI .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGvyGvmHuI .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGvyGvmHuI .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGvyGvmHuI .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGvyGvmHuI .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGvyGvmHuI .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGvyGvmHuI .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGvyGvmHuI .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGvyGvmHuI .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGvyGvmHuI .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGvyGvmHuI .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGvyGvmHuI .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGvyGvmHuI .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGvyGvmHuI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGvyGvmHuI .soc-item {
    padding: 10px;
  }
}
.cid-tGvyGvmHuI .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGvyGvmHuI .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGvyGvmHuI .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGvyGvmHuI .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGvyGvmHuI .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGvyGvmHuI .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGvyGvmHuI .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGvyGvmHuI .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGvyGvmHuI .copyright {
    text-align: center !important;
  }
}
.cid-tGvyGvmHuI p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGvyGvmHuI .row {
    justify-content: flex-start !important;
  }
}
.cid-tGvyGvmHuI .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGvyGvmHuI .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGvyGvmHuI .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGvyGvmHuI .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGvyGvmHuI .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGvyGvmHuI .card-title {
  color: #ffffff;
}
.cid-tGvyGvmHuI P {
  color: #22a5e5;
}
.cid-twGLQyFfTX .navbar-dropdown {
  position: relative !important;
}
.cid-twGLQyFfTX .navbar-dropdown {
  position: absolute !important;
}
.cid-twGLQyFfTX nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .nav-item {
    margin: 0 !important;
  }
}
.cid-twGLQyFfTX .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-twGLQyFfTX .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-twGLQyFfTX .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-twGLQyFfTX .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twGLQyFfTX .nav-link {
  position: relative;
}
.cid-twGLQyFfTX .container {
  display: flex;
  margin: auto;
}
.cid-twGLQyFfTX .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown-menu,
.cid-twGLQyFfTX .navbar.opened {
  background: #000000 !important;
}
.cid-twGLQyFfTX .nav-item:focus,
.cid-twGLQyFfTX .nav-link:focus {
  outline: none;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twGLQyFfTX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twGLQyFfTX .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-twGLQyFfTX .navbar.opened {
  transition: all 0.3s;
}
.cid-twGLQyFfTX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twGLQyFfTX .navbar .navbar-logo img {
  width: auto;
}
.cid-twGLQyFfTX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar.collapsed {
  justify-content: center;
}
.cid-twGLQyFfTX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twGLQyFfTX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twGLQyFfTX .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-twGLQyFfTX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-twGLQyFfTX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twGLQyFfTX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twGLQyFfTX .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-twGLQyFfTX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twGLQyFfTX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twGLQyFfTX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twGLQyFfTX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-twGLQyFfTX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twGLQyFfTX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twGLQyFfTX .dropdown-item.active,
.cid-twGLQyFfTX .dropdown-item:active {
  background-color: transparent;
}
.cid-twGLQyFfTX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twGLQyFfTX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twGLQyFfTX ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-twGLQyFfTX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twGLQyFfTX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-twGLQyFfTX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar {
    height: 70px;
  }
  .cid-twGLQyFfTX .navbar.opened {
    height: auto;
  }
  .cid-twGLQyFfTX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txt1OGHZEj h1,
.cid-txt1OGHZEj p,
.cid-txt1OGHZEj img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
.cid-txt1OGHZEj html {
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  .cid-txt1OGHZEj aside {
    display: none;
  }
}
.cid-txt1OGHZEj aside {
  right: 1px;
  z-index: 1000;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cid-txt1OGHZEj aside ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  margin: 0;
}
.cid-txt1OGHZEj aside ul li .indicator {
  cursor: pointer;
  margin-top: 1rem;
  display: block;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #ffffff;
}
.cid-txt1OGHZEj aside ul li .active {
  transform: scale(1.7);
  transition: transform 200ms ease-in-out;
  background-color: #2689c6;
}
.cid-txt1OGHZEj div.imgtest {
  content: url("../../../assets/images/1-1920x1075.webp");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-txt1OGHZEj div.imgtest1 {
  content: url("../../../assets/images/2-1-1920x1075.webp");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-txt1OGHZEj div.imgtest2 {
  content: url("../../../assets/images/3-1-1920x1075.webp");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-txt1OGHZEj div.imgtest3 {
  content: url("../../../assets/images/asset-3-1920x1076.webp");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-txt1OGHZEj div.imgtest4 {
  content: url("../../../assets/images/05569-1026113624-a-top-view-of-mars-intricated-details-hq-4k-8k-centered-dimly-lit-artistic-shot-award-winning-photo-highly-detailed.webp");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-txt1OGHZEj .split .split-image.object-cover img,
.cid-txt1OGHZEj .slide-image.object-cover img .grid-image img,
.cid-txt1OGHZEj .video-wrap .poster img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.cid-txt1OGHZEj .slide-image.object-contain video,
.cid-txt1OGHZEj .slide-image.object-contain img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}
.cid-txt1OGHZEj .home-hero .safari-fix a,
.cid-txt1OGHZEj .fullscreen a {
  background: none !important;
  text-shadow: none !important;
}
.cid-txt1OGHZEj .wrap {
  padding: 3rem;
  display: block;
  width: 100%;
  filter: drop-shadow(0px 9px 5px #000000);
}
@media only screen and (min-width: 700px) {
  .cid-txt1OGHZEj .wrap {
    padding: 6rem;
  }
  .cid-txt1OGHZEj p + p {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .cid-txt1OGHZEj .wrap {
    padding: 6rem 6rem 5.4rem;
  }
  .cid-txt1OGHZEj section:last-child .wrap,
  .cid-txt1OGHZEj .wrap:last-child {
    padding-bottom: 6rem;
  }
  .cid-txt1OGHZEj .wrap.align-center q {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .cid-txt1OGHZEj .wrap {
    padding: 8.2rem 6rem 7.6rem;
  }
  .cid-txt1OGHZEj section:last-child .wrap,
  .cid-txt1OGHZEj .wrap:last-child {
    padding-bottom: 8.2rem;
  }
}
.cid-txt1OGHZEj input,
.cid-txt1OGHZEj textarea,
.cid-txt1OGHZEj button,
.cid-txt1OGHZEj select,
.cid-txt1OGHZEj body {
  font-family: acumin-pro, Helvetica, Arial, sans-serif;
  font-style: normal;
}
.cid-txt1OGHZEj h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.16666667;
}
.cid-txt1OGHZEj body {
  width: 100%;
  min-height: 100%;
  font-size: 2rem;
  line-height: 1.45;
  overflow-x: hidden;
}
@media only screen and (min-width: 700px) and (min-height: 500px) {
  .cid-txt1OGHZEj h1 {
    font-size: calc(4.6rem);
  }
}
.cid-txt1OGHZEj h1 + button {
  margin-top: 2rem;
}
.cid-txt1OGHZEj h1 + p {
  margin-top: 1rem;
}
.cid-txt1OGHZEj p + p {
  margin-top: 1.6rem;
}
.cid-txt1OGHZEj img {
  display: block;
  max-width: 100%;
}
.cid-txt1OGHZEj img::after {
  content: "🖼️" attr(alt);
  font-size: 1.4rem;
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 4.5rem;
  height: 100%;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #eeecec;
}
@media all and (orientation: landscape) {
  .cid-txt1OGHZEj body:not(.touchscreen) header {
    will-change: auto;
    transition: all 0.4s ease-in-out;
  }
  .cid-txt1OGHZEj .landscape-image ~ .portrait-image {
    opacity: 0;
    display: none;
  }
}
.cid-txt1OGHZEj .wrap.text-wrap {
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
}
.cid-txt1OGHZEj .wrap.full-width {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: calc(94%) !important;
}
.cid-txt1OGHZEj .wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.cid-txt1OGHZEj .content > section:not(.hero):first-child {
  padding-top: 5rem;
}
.cid-txt1OGHZEj .align-left {
  text-align: left;
}
.cid-txt1OGHZEj .align-center {
  text-align: center;
}
.cid-txt1OGHZEj .align-right {
  text-align: right;
}
.cid-txt1OGHZEj .text_block-section + .text-wrap,
.cid-txt1OGHZEj .flexible-section:not(.video-section) + .flexible-section:not(.video-section) > .wrap:first-child,
.cid-txt1OGHZEj .section-title-wrap + .flexible-section > .wrap:first-child,
.cid-txt1OGHZEj .body-copy-with-intro + .hidden-content > .flexible-section > .wrap:first-child,
.cid-txt1OGHZEj .wrap + .wrap {
  padding-top: 0;
}
.cid-txt1OGHZEj .fullscreen {
  position: relative;
  height: 100vh;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-txt1OGHZEj .fullscreen .wrap {
  margin: 0;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-txt1OGHZEj .fullscreen .fixed-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cid-txt1OGHZEj .fullscreen .fixed-wrap.fixed {
  position: fixed;
}
@supports (-ms-ime-align: auto) {
  .cid-txt1OGHZEj .fullscreen {
    clip-path: none !important;
  }
  .cid-txt1OGHZEj .fullscreen .fixed-wrap.fixed {
    position: absolute !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cid-txt1OGHZEj .fullscreen {
    clip-path: none !important;
  }
  .cid-txt1OGHZEj .fullscreen .fixed-wrap.fixed {
    position: absolute !important;
  }
}
.cid-txt1OGHZEj .fullscreen .slide-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.cid-txt1OGHZEj .fullscreen .slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 2;
}
.cid-txt1OGHZEj .fullscreen a {
  color: #ffffff;
}
.cid-txt1OGHZEj .slide-image + .slide-text,
.cid-txt1OGHZEj .slide-text.over-image {
  color: #fff;
  background: radial-gradient(ellipse 50% 50%, rgba(18, 18, 18, 0.125), rgba(18, 18, 18, 0));
}
.cid-txt1OGHZEj .hero .slide-image {
  opacity: 0.8;
}
.cid-txt1OGHZEj .hero.auto-height {
  padding: 5rem 0;
}
.cid-txt1OGHZEj .hero.auto-height .slide-text {
  position: relative;
}
.cid-txt1OGHZEj .home-hero {
  position: relative;
  z-index: 1;
}
.cid-txt1OGHZEj .home-hero + section {
  z-index: 0;
}
.cid-txt1OGHZEj .home-hero + section + section {
  z-index: 1;
}
.cid-txt1OGHZEj .home-hero .safari-fix {
  position: absolute;
  top: 0;
  background: transparent !important;
  overflow: hidden;
}
.cid-txt1OGHZEj .home-hero .safari-fix a {
  display: block;
  position: relative;
  width: 100vw;
  height: 100%;
  background: transparent !important;
  opacity: 0;
}
.cid-txt1OGHZEj body > .fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-txt1OGHZEj body > .fullscreen .slide-image {
  opacity: 0.8;
}
.cid-txt1OGHZEj body > .fullscreen button,
.cid-txt1OGHZEj .project-hero .slide-text button {
  background-color: #fff;
  color: #121212;
  border-color: #fff;
  opacity: 0;
}
.cid-txt1OGHZEj .page-hero .slide-image {
  position: fixed;
}
.cid-txt1OGHZEj .page-hero .slide-text {
  position: relative;
  height: auto;
  margin: 100vh auto 25vh;
  background: transparent;
}
@media all and (orientation: portrait) {
  .cid-txt1OGHZEj .page-hero .wrap h4 {
    font-size: calc(2.25rem);
  }
  .cid-txt1OGHZEj .portrait-image ~ .landscape-image {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.cid-txt1OGHZEj .fullscreen .slide-text button:only-child {
  margin-top: 2rem;
}
.cid-txt1OGHZEj .offblack-bg {
  background-color: #231f20;
}
.cid-txt1OGHZEj .offblack-bg a:not(.button):not([title]):not(:hover) {
  background: linear-gradient(#231f20 calc(99%), #ffffff calc(99%));
  text-shadow: 0 1px #231f20, -1px 0 #231f20, 1px 0 #231f20, -2px 0 #231f20, 2px 0 #231f20;
}
.cid-txt1OGHZEj .hidden {
  display: none;
  visibility: hidden;
}
.cid-txt1OGHZEj H1 {
  color: #ffffff;
}
.cid-txt1OGHZEj .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tzjOcvUXVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzjOcvUXVP #showreel-iframe {
  height: 100vh;
}
.cid-tzjOcvUXVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/s08-3-1920x1080.webp");
}
.cid-tzjOcvUXVP .ytp-show-cards-title {
  display: none;
}
.cid-tzjOcvUXVP .mbr-section-title {
  color: #FFFFFF;
}
.cid-tzjOcvUXVP .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tzjOcvUXVP .mbr-section-btn {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .cid-tzjOcvUXVP #showreel-iframe {
    height: 70vh;
  }
  .cid-tzjOcvUXVP .mbr-section-title {
    font-size: 24px;
  }
  .cid-tzjOcvUXVP .mbr-text {
    font-size: 16px;
    margin-top: 10px;
  }
  .cid-tzjOcvUXVP .mbr-section-btn {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .cid-tzjOcvUXVP #showreel-iframe {
    height: 50vh;
  }
  .cid-tzjOcvUXVP .mbr-section-title {
    font-size: 20px;
  }
  .cid-tzjOcvUXVP .mbr-text {
    font-size: 14px;
    margin-top: 5px;
  }
  .cid-tzjOcvUXVP .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tJTlW3fEvC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tJTlW3fEvC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJTlW3fEvC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJTlW3fEvC .container-fluid {
  padding: 0 0px;
}
@media (max-width: 991px) {
  .cid-tJTlW3fEvC .container-fluid {
    padding: 0 12px;
  }
}
.cid-tJTlW3fEvC .container-fluid .row {
  padding: 0;
}
.cid-tJTlW3fEvC .row {
  border: 3px solid #000000;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tJTlW3fEvC .card {
  padding: 00px 0px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tJTlW3fEvC .card {
    padding: 0px 0px;
  }
}
.cid-tJTlW3fEvC .card .title-wrapper {
  width: 80%;
  margin: 0 auto 28px;
}
.cid-tJTlW3fEvC .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tJTlW3fEvC .card .video-block {
  width: 100%;
  margin: 0 auto;
  border: 0px solid #000000;
}
.cid-tJTlW3fEvC .app-video-wrapper::before {
  color: #ffffff;
  text-shadow: none;
}
.cid-tJTlW3fEvC .mbr-section-title {
  color: #2dd5f5;
  text-align: center;
}
.cid-twMfLw2vwZ {
  position: relative;
  overflow: hidden;
}
.cid-twMfLw2vwZ svg {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%) scale(1.9, 1.6);
}
.cid-twMfLw2vwZ #e2_shape {
  fill: #000000 !important;
}
.cid-twMfLw2vwZ .main-text {
  color: #606060;
}
.cid-twMfLw2vwZ .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 50rem;
}
.cid-twMfLw2vwZ .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: brightness(81%);
}
.cid-twMfLw2vwZ .content-block {
  padding: 0.75rem 1rem;
  top: -50%;
  position: relative;
  z-index: 1;
  transform: translateY(50%);
}
.cid-twMfLw2vwZ .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-twMfLw2vwZ .btn.display-4 {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 16px 24px;
}
.cid-twMfLw2vwZ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-twMfLw2vwZ .carousel-item.active,
.cid-twMfLw2vwZ .carousel-item-next,
.cid-twMfLw2vwZ .carousel-item-prev {
  display: flex;
}
.cid-twMfLw2vwZ .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: 50px;
}
.cid-twMfLw2vwZ .carousel-indicators .active {
  transform: scale(1);
  border: 0;
  background-color: #2cf1f5;
  transition: all 200ms ease-in-out;
}
.cid-twMfLw2vwZ .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  border-width: 0px;
  transform: scale(0.6);
  opacity: 1;
}
.cid-twMfLw2vwZ .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-twMfLw2vwZ .carousel-controls {
    display: block;
  }
  .cid-twMfLw2vwZ .carousel-controls a {
    transition: opacity 0.5s;
    font-size: 2rem;
  }
  .cid-twMfLw2vwZ .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: 0.9;
  }
  .cid-twMfLw2vwZ .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-twMfLw2vwZ .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-twMfLw2vwZ .text-element {
    padding: 1rem;
  }
  .cid-twMfLw2vwZ .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-twMfLw2vwZ .image-element {
    min-width: 50%;
  }
  .cid-twMfLw2vwZ .media-container-row {
    width: 100%;
  }
}
.cid-tFgVKdmEz7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tFgVKdmEz7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFgVKdmEz7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFgVKdmEz7 .text-wrap {
  width: 100%;
}
.cid-tFgVKdmEz7 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tFgVKdmEz7 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tFgVKdmEz7 .mbr-section-title {
  color: #2dd5f5;
  margin-bottom: 0;
}
.cid-tFgVKdmEz7 .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tFgVKdmEz7 .item-row {
  row-gap: 50px;
}
.cid-tFgVKdmEz7 .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-tFgVKdmEz7 .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-tFgVKdmEz7 .img-box img {
  width: 100%;
  height: auto;
}
.cid-tFgVKdmEz7 .item-title {
  width: 100%;
  margin: 0;
  color: #2dd5f5;
}
.cid-tFgVKdmEz7 .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-tFgVKdmEz7 .item-text {
    margin: 16px 0 0;
  }
}
.cid-tFgVKdmEz7 .mbr-section-btn {
  margin-top: 20px;
}
.cid-tFgVKdmEz7 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tFgVKdmEz7 .item-text,
.cid-tFgVKdmEz7 .mbr-section-btn {
  color: #efeeee;
}
.cid-tJTGA04E0G {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #000000;
}
.cid-tJTGA04E0G .img-wrapper {
  text-align: center;
}
.cid-tJTGA04E0G img {
  margin: auto;
  max-width: 150px;
}
.cid-tJTGA04E0G .row {
  align-items: flex-start;
}
.cid-tJTGA04E0G .card-title {
  color: #666666;
}
.cid-tJTGA04E0G .text {
  color: #666666;
}
.cid-tJTGA04E0G .card-wrapper {
  margin: 0 32px;
}
.cid-tJTGA04E0G .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tJTGA04E0G .carousel-item.active,
.cid-tJTGA04E0G .carousel-item-next,
.cid-tJTGA04E0G .carousel-item-prev {
  display: flex;
}
.cid-tJTGA04E0G .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: -25px;
}
.cid-tJTGA04E0G .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #012b3a;
}
.cid-tJTGA04E0G .carousel-indicators li {
  margin: 0 10px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 1px solid #75dbcd;
  transition: opacity .5s;
  background-color: #75dbcd;
  font-size: 2rem;
  opacity: .5;
  border-width: 0px;
}
.cid-tJTGA04E0G .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tJTGA04E0G .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-tJTGA04E0G .carousel-controls {
    display: none;
  }
  .cid-tJTGA04E0G .carousel-controls a {
    transition: opacity .5s;
    font-size: 2rem;
  }
  .cid-tJTGA04E0G .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: .9;
  }
  .cid-tJTGA04E0G .carousel-controls a:hover span {
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .cid-tJTGA04E0G .text-element {
    padding: 1rem;
  }
  .cid-tJTGA04E0G .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJTGA04E0G .image-element {
    min-width: 50%;
  }
  .cid-tJTGA04E0G .media-container-row {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .cid-tJTGA04E0G .card-wrapper {
    margin: 0 15px;
  }
}
.cid-tJTGA04E0G .card {
  margin-bottom: 30px;
}
.cid-tJTGA04E0G .card:last-child {
  margin-bottom: 0;
}
.cid-tJTGA04E0G .mbr-section-title {
  color: #2dd5f5;
}
.cid-tJTGA04E0G h2 {
  margin-bottom: 49px;
}
.cid-twLC4bUNBI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-twLC4bUNBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-twLC4bUNBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twLC4bUNBI .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-twLC4bUNBI .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li:hover {
  color: #2dd5f5 !important;
}
.cid-twLC4bUNBI .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-twLC4bUNBI .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-twLC4bUNBI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-twLC4bUNBI .soc-item {
    padding: 10px;
  }
}
.cid-twLC4bUNBI .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-twLC4bUNBI .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-twLC4bUNBI .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-twLC4bUNBI .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-twLC4bUNBI .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-twLC4bUNBI .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .copyright {
    text-align: center !important;
  }
}
.cid-twLC4bUNBI p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .row {
    justify-content: flex-start !important;
  }
}
.cid-twLC4bUNBI .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-container {
    margin-bottom: 2rem;
  }
}
.cid-twLC4bUNBI .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-twLC4bUNBI .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-twLC4bUNBI .card-title {
  color: #ffffff;
}
.cid-twLC4bUNBI P {
  color: #22a5e5;
}
.cid-tFKgn1Z5kb .navbar-dropdown {
  position: relative !important;
}
.cid-tFKgn1Z5kb .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKgn1Z5kb nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKgn1Z5kb .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKgn1Z5kb .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-tFKgn1Z5kb .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKgn1Z5kb .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKgn1Z5kb .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKgn1Z5kb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKgn1Z5kb .nav-link {
  position: relative;
}
.cid-tFKgn1Z5kb .container {
  display: flex;
  margin: auto;
}
.cid-tFKgn1Z5kb .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKgn1Z5kb .dropdown-menu,
.cid-tFKgn1Z5kb .navbar.opened {
  background: #000000 !important;
}
.cid-tFKgn1Z5kb .nav-item:focus,
.cid-tFKgn1Z5kb .nav-link:focus {
  outline: none;
}
.cid-tFKgn1Z5kb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKgn1Z5kb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKgn1Z5kb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKgn1Z5kb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKgn1Z5kb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKgn1Z5kb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKgn1Z5kb .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKgn1Z5kb .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKgn1Z5kb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKgn1Z5kb .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKgn1Z5kb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKgn1Z5kb .navbar.collapsed {
  justify-content: center;
}
.cid-tFKgn1Z5kb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKgn1Z5kb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKgn1Z5kb .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKgn1Z5kb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKgn1Z5kb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKgn1Z5kb .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-tFKgn1Z5kb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKgn1Z5kb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKgn1Z5kb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKgn1Z5kb .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKgn1Z5kb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKgn1Z5kb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKgn1Z5kb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKgn1Z5kb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKgn1Z5kb .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-tFKgn1Z5kb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKgn1Z5kb .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKgn1Z5kb .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKgn1Z5kb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKgn1Z5kb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKgn1Z5kb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKgn1Z5kb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKgn1Z5kb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKgn1Z5kb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKgn1Z5kb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKgn1Z5kb .dropdown-item.active,
.cid-tFKgn1Z5kb .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKgn1Z5kb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKgn1Z5kb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKgn1Z5kb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKgn1Z5kb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKgn1Z5kb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKgn1Z5kb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKgn1Z5kb ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKgn1Z5kb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKgn1Z5kb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKgn1Z5kb button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKgn1Z5kb button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKgn1Z5kb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKgn1Z5kb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKgn1Z5kb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgn1Z5kb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgn1Z5kb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKgn1Z5kb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgn1Z5kb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKgn1Z5kb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKgn1Z5kb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgn1Z5kb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKgn1Z5kb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKgn1Z5kb .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-tFKgn1Z5kb .navbar {
    height: 70px;
  }
  .cid-tFKgn1Z5kb .navbar.opened {
    height: auto;
  }
  .cid-tFKgn1Z5kb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKgn2uQo1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgn2uQo1 .link a {
  background-image: none !important;
}
.cid-tFKgn2uQo1 .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKgn2uQo1 .date {
  margin-bottom: 6px;
}
.cid-tFKgn2uQo1 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKgn2uQo1 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKgn2uQo1 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKgn2uQo1 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKgn2uQo1 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKgn2uQo1 svg {
  margin-left: 15px;
}
.cid-tFKgn2uQo1 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKgn2uQo1 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKgn2uQo1 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKgn2uQo1 .row {
  justify-content: center;
}
.cid-tFKgn2uQo1 .p,
.cid-tFKgn2uQo1 .link {
  color: #767676;
}
.cid-tFKgn2UmA0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKgn2UmA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgn2UmA0 .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-tFKgn2UmA0 .container {
    padding: 0 30px;
  }
}
.cid-tFKgn2UmA0 .row {
  justify-content: center;
}
.cid-tFKgn2UmA0 .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKgn2UmA0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKgn2UmA0 .card {
    margin-bottom: 30px;
  }
}
.cid-tFKgn2UmA0 .card .card-wrapper {
  display: flex;
}
.cid-tFKgn2UmA0 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKgn2UmA0 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKgn2UmA0 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKgn2UmA0 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKgn2UmA0 .mbr-section-title {
  color: #767676;
}
.cid-tFKgn2UmA0 .mbr-number {
  color: #000000;
}
.cid-tFKgn2UmA0 .mbr-card-title {
  color: #1070b9;
}
.cid-tFKgn2UmA0 .mbr-text {
  color: #767676;
}
.cid-tFKgn3ecgY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgn3ecgY .mbr-section-title {
  color: #1070b9;
}
.cid-tFKgn3ecgY .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKgn3ecgY .row {
  justify-content: space-between;
}
.cid-tFKgn3ecgY .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKgn3ecgY .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKgn3ecgY .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKgn3ecgY .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKgn3ecgY .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKgn3ecgY .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKgn3ecgY .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKgn3ecgY .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKgn3ecgY .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKgn3ecgY .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKgn3ecgY .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKgn3ecgY .link,
.cid-tFKgn3ecgY .link-icon {
  color: #000000;
}
.cid-tFKgn3ecgY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgn3ecgY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgn3ecgY .mbr-text,
.cid-tFKgn3ecgY .mbr-section-btn {
  color: #767676;
}
.cid-tFKgn3Aicr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKgn3Aicr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKgn3Aicr .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKgn3Aicr .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKgn3Aicr .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKgn3Aicr .box {
  right: 20%;
}
.cid-tFKgn3Aicr .text-box {
  right: 0;
}
.cid-tFKgn3Aicr .mbr-section-title,
.cid-tFKgn3Aicr .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKgn3Aicr .text-box {
    display: none;
  }
  .cid-tFKgn3Aicr .mbr-section-title,
  .cid-tFKgn3Aicr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKgn3Aicr .box {
    display: none;
  }
  .cid-tFKgn3Aicr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKgn3Aicr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKgn3Aicr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKgn3Aicr .mbr-section-text {
  color: #767676;
}
.cid-tFKgn3Aicr .mbr-section-title {
  color: #1070b9;
}
.cid-u2szUhL4p9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2szUhL4p9 .box {
  margin-bottom: 15px;
}
.cid-u2szUhL4p9 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u2szUhL4p9 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u2szUhL4p9 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u2szUhL4p9 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u2szUhL4p9 .mbr-media {
    max-height: 432px;
  }
}
.cid-u2szUhL4p9 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u2szUhL4p9 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u2szUhL4p9 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u2szUhL4p9 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u2szUhL4p9 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u2szUhL4p9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u2szUhL4p9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u2szUhL4p9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2szUhL4p9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2szUhL4p9 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u2szUhL4p9 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u2szUhL4p9 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u2szUhL4p9 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u2szUhL4p9 .item-img {
  overflow: hidden;
}
.cid-u2szUhL4p9 .item-img img {
  width: 100%;
}
.cid-u2szUhL4p9 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u2szUhL4p9 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u2szUhL4p9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2szUhL4p9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgn4shoa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKgn4shoa .carousel {
    overflow: hidden;
  }
  .cid-tFKgn4shoa .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKgn4shoa .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKgn4shoa .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKgn4shoa .carousel,
.cid-tFKgn4shoa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKgn4shoa .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKgn4shoa .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKgn4shoa .item-wrapper {
    height: 215px;
  }
}
.cid-tFKgn4shoa .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKgn4shoa .carousel-caption {
  bottom: 40px;
}
.cid-tFKgn4shoa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKgn4shoa .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKgn4shoa .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKgn4shoa .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKgn4shoa .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKgn4shoa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKgn4shoa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKgn4shoa .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKgn4shoa .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKgn4shoa .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKgn4shoa .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKgn4shoa .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKgn4shoa .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKgn4shoa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKgn4shoa .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKgn4shoa .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKgn4shoa .soc-item::before,
.cid-tFKgn4shoa .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKgn4shoa .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKgn4shoa .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKgn4shoa .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKgn4shoa .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKgn4shoa .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKgn4shoa .text {
  color: #ddc499;
}
.cid-tFKgn4shoa .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB5kQVfZ8 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB5kQVfZ8 .carousel {
    overflow: hidden;
  }
  .cid-tGB5kQVfZ8 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB5kQVfZ8 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB5kQVfZ8 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB5kQVfZ8 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB5kQVfZ8 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB5kQVfZ8 .link-div {
  margin-left: 20px;
}
.cid-tGB5kQVfZ8 .link-div h3 {
  margin-left: 4px;
}
.cid-tGB5kQVfZ8 .mbr-card-title {
  color: #000e2f;
}
#custom-html-8s {
  /* Type valid CSS here */
}
#custom-html-8s .back-button {
  position: fixed;
}
.cid-tFKgn54S9g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKgn54S9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgn54S9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgn54S9g .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKgn54S9g .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKgn54S9g .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKgn54S9g .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKgn54S9g .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKgn54S9g .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgn54S9g .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKgn54S9g .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgn54S9g .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKgn54S9g .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKgn54S9g .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKgn54S9g .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKgn54S9g .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKgn54S9g .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKgn54S9g .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKgn54S9g .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKgn54S9g .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKgn54S9g .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKgn54S9g .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKgn54S9g .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKgn54S9g .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKgn54S9g .soc-item {
    padding: 10px;
  }
}
.cid-tFKgn54S9g .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKgn54S9g .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKgn54S9g .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKgn54S9g .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKgn54S9g .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKgn54S9g .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgn54S9g .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKgn54S9g .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKgn54S9g .copyright {
    text-align: center !important;
  }
}
.cid-tFKgn54S9g p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKgn54S9g .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKgn54S9g .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKgn54S9g .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKgn54S9g .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgn54S9g .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKgn54S9g .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKgn54S9g .card-title {
  color: #ffffff;
}
.cid-tFKgn54S9g P {
  color: #22a5e5;
}
.cid-tJeE5IjZjz .navbar-dropdown {
  position: relative !important;
}
.cid-tJeE5IjZjz .navbar-dropdown {
  position: absolute !important;
}
.cid-tJeE5IjZjz nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tJeE5IjZjz .nav-item {
    margin: 0 !important;
  }
}
.cid-tJeE5IjZjz .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-tJeE5IjZjz .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tJeE5IjZjz .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tJeE5IjZjz .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tJeE5IjZjz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJeE5IjZjz .nav-link {
  position: relative;
}
.cid-tJeE5IjZjz .container {
  display: flex;
  margin: auto;
}
.cid-tJeE5IjZjz .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJeE5IjZjz .dropdown-menu,
.cid-tJeE5IjZjz .navbar.opened {
  background: #000000 !important;
}
.cid-tJeE5IjZjz .nav-item:focus,
.cid-tJeE5IjZjz .nav-link:focus {
  outline: none;
}
.cid-tJeE5IjZjz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJeE5IjZjz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJeE5IjZjz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJeE5IjZjz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJeE5IjZjz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJeE5IjZjz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJeE5IjZjz .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tJeE5IjZjz .navbar.opened {
  transition: all 0.3s;
}
.cid-tJeE5IjZjz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJeE5IjZjz .navbar .navbar-logo img {
  width: auto;
}
.cid-tJeE5IjZjz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJeE5IjZjz .navbar.collapsed {
  justify-content: center;
}
.cid-tJeE5IjZjz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJeE5IjZjz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJeE5IjZjz .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJeE5IjZjz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJeE5IjZjz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJeE5IjZjz .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-tJeE5IjZjz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJeE5IjZjz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJeE5IjZjz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJeE5IjZjz .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tJeE5IjZjz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJeE5IjZjz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJeE5IjZjz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJeE5IjZjz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJeE5IjZjz .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-tJeE5IjZjz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJeE5IjZjz .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tJeE5IjZjz .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tJeE5IjZjz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJeE5IjZjz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJeE5IjZjz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJeE5IjZjz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJeE5IjZjz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJeE5IjZjz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJeE5IjZjz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJeE5IjZjz .dropdown-item.active,
.cid-tJeE5IjZjz .dropdown-item:active {
  background-color: transparent;
}
.cid-tJeE5IjZjz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJeE5IjZjz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJeE5IjZjz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJeE5IjZjz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tJeE5IjZjz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJeE5IjZjz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJeE5IjZjz ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tJeE5IjZjz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJeE5IjZjz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tJeE5IjZjz button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tJeE5IjZjz button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tJeE5IjZjz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tJeE5IjZjz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJeE5IjZjz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJeE5IjZjz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJeE5IjZjz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJeE5IjZjz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJeE5IjZjz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJeE5IjZjz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJeE5IjZjz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJeE5IjZjz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tJeE5IjZjz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJeE5IjZjz .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-tJeE5IjZjz .navbar {
    height: 70px;
  }
  .cid-tJeE5IjZjz .navbar.opened {
    height: auto;
  }
  .cid-tJeE5IjZjz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJeE5K0XrR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJeE5K0XrR .link a {
  background-image: none !important;
}
.cid-tJeE5K0XrR .item-wrapper {
  margin-bottom: 56px;
}
.cid-tJeE5K0XrR .date {
  margin-bottom: 6px;
}
.cid-tJeE5K0XrR .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tJeE5K0XrR .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tJeE5K0XrR a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tJeE5K0XrR rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tJeE5K0XrR .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tJeE5K0XrR svg {
  margin-left: 15px;
}
.cid-tJeE5K0XrR path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tJeE5K0XrR .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tJeE5K0XrR .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tJeE5K0XrR .row {
  justify-content: center;
}
.cid-tJeE5K0XrR .p,
.cid-tJeE5K0XrR .link {
  color: #767676;
}
.cid-tJeE5Uvq9D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tJeE5Uvq9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJeE5Uvq9D .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-tJeE5Uvq9D .container {
    padding: 0 30px;
  }
}
.cid-tJeE5Uvq9D .row {
  justify-content: center;
}
.cid-tJeE5Uvq9D .title-wrapper {
  margin-bottom: 55px;
}
.cid-tJeE5Uvq9D .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tJeE5Uvq9D .card {
    margin-bottom: 30px;
  }
}
.cid-tJeE5Uvq9D .card .card-wrapper {
  display: flex;
}
.cid-tJeE5Uvq9D .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tJeE5Uvq9D .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tJeE5Uvq9D .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tJeE5Uvq9D .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tJeE5Uvq9D .mbr-section-title {
  color: #767676;
}
.cid-tJeE5Uvq9D .mbr-number {
  color: #000000;
}
.cid-tJeE5Uvq9D .mbr-card-title {
  color: #1070b9;
}
.cid-tJeE5Uvq9D .mbr-text {
  color: #767676;
}
.cid-tJeE5VBBSh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJeE5VBBSh .mbr-section-title {
  color: #1070b9;
}
.cid-tJeE5VBBSh .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tJeE5VBBSh .row {
  justify-content: space-between;
}
.cid-tJeE5VBBSh .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tJeE5VBBSh .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tJeE5VBBSh .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tJeE5VBBSh .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tJeE5VBBSh .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tJeE5VBBSh .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tJeE5VBBSh .link-wrapper {
    justify-content: center;
  }
}
.cid-tJeE5VBBSh .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tJeE5VBBSh .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tJeE5VBBSh .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tJeE5VBBSh .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tJeE5VBBSh .link,
.cid-tJeE5VBBSh .link-icon {
  color: #000000;
}
.cid-tJeE5VBBSh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJeE5VBBSh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJeE5VBBSh .mbr-text,
.cid-tJeE5VBBSh .mbr-section-btn {
  color: #767676;
}
.cid-tJeE5WBwWt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJeE5WBwWt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tJeE5WBwWt .text-block {
  position: relative;
  z-index: 0;
}
.cid-tJeE5WBwWt .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tJeE5WBwWt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tJeE5WBwWt .box {
  right: 20%;
}
.cid-tJeE5WBwWt .text-box {
  right: 0;
}
.cid-tJeE5WBwWt .mbr-section-title,
.cid-tJeE5WBwWt .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tJeE5WBwWt .text-box {
    display: none;
  }
  .cid-tJeE5WBwWt .mbr-section-title,
  .cid-tJeE5WBwWt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tJeE5WBwWt .box {
    display: none;
  }
  .cid-tJeE5WBwWt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tJeE5WBwWt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJeE5WBwWt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tJeE5WBwWt .mbr-section-text {
  color: #767676;
}
.cid-tJeE5WBwWt .mbr-section-title {
  color: #1070b9;
}
.cid-tJeE5XJ4vo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJeE5XJ4vo .box {
  margin-bottom: 15px;
}
.cid-tJeE5XJ4vo .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tJeE5XJ4vo .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tJeE5XJ4vo .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tJeE5XJ4vo .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tJeE5XJ4vo .mbr-media {
    max-height: 432px;
  }
}
.cid-tJeE5XJ4vo .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tJeE5XJ4vo .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tJeE5XJ4vo .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tJeE5XJ4vo .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tJeE5XJ4vo .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tJeE5XJ4vo .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tJeE5XJ4vo .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tJeE5XJ4vo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tJeE5XJ4vo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tJeE5XJ4vo .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tJeE5XJ4vo .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tJeE5XJ4vo .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tJeE5XJ4vo .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tJeE5XJ4vo .item-img {
  overflow: hidden;
}
.cid-tJeE5XJ4vo .item-img img {
  width: 100%;
}
.cid-tJeE5XJ4vo .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tJeE5XJ4vo .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tJeE5XJ4vo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJeE5XJ4vo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJeE5YVAEY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJeE5YVAEY .carousel {
    overflow: hidden;
  }
  .cid-tJeE5YVAEY .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tJeE5YVAEY .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tJeE5YVAEY .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tJeE5YVAEY .carousel,
.cid-tJeE5YVAEY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tJeE5YVAEY .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tJeE5YVAEY .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tJeE5YVAEY .item-wrapper {
    height: 215px;
  }
}
.cid-tJeE5YVAEY .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tJeE5YVAEY .carousel-caption {
  bottom: 40px;
}
.cid-tJeE5YVAEY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tJeE5YVAEY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tJeE5YVAEY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tJeE5YVAEY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tJeE5YVAEY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tJeE5YVAEY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJeE5YVAEY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tJeE5YVAEY .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tJeE5YVAEY .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tJeE5YVAEY .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tJeE5YVAEY .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tJeE5YVAEY .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tJeE5YVAEY .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tJeE5YVAEY .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJeE5YVAEY .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tJeE5YVAEY .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tJeE5YVAEY .soc-item::before,
.cid-tJeE5YVAEY .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tJeE5YVAEY .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tJeE5YVAEY .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tJeE5YVAEY .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tJeE5YVAEY .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tJeE5YVAEY .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tJeE5YVAEY .text {
  color: #ddc499;
}
.cid-tJeE5YVAEY .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tJeE60wRy7 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tJeE60wRy7 .carousel {
    overflow: hidden;
  }
  .cid-tJeE60wRy7 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tJeE60wRy7 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tJeE60wRy7 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tJeE60wRy7 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tJeE60wRy7 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tJeE60wRy7 .link-div {
  margin-left: 20px;
}
.cid-tJeE60wRy7 .link-div h3 {
  margin-left: 4px;
}
.cid-tJeE60wRy7 .mbr-card-title {
  color: #000e2f;
}
#custom-html-iu {
  /* Type valid CSS here */
}
#custom-html-iu .back-button {
  position: fixed;
}
.cid-tJeE61CKpt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tJeE61CKpt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJeE61CKpt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJeE61CKpt .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tJeE61CKpt .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tJeE61CKpt .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tJeE61CKpt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tJeE61CKpt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tJeE61CKpt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJeE61CKpt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tJeE61CKpt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJeE61CKpt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tJeE61CKpt .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tJeE61CKpt .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tJeE61CKpt .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tJeE61CKpt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tJeE61CKpt .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tJeE61CKpt .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tJeE61CKpt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tJeE61CKpt .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tJeE61CKpt .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tJeE61CKpt .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tJeE61CKpt .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tJeE61CKpt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tJeE61CKpt .soc-item {
    padding: 10px;
  }
}
.cid-tJeE61CKpt .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tJeE61CKpt .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tJeE61CKpt .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tJeE61CKpt .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tJeE61CKpt .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tJeE61CKpt .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tJeE61CKpt .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tJeE61CKpt .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tJeE61CKpt .copyright {
    text-align: center !important;
  }
}
.cid-tJeE61CKpt p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tJeE61CKpt .row {
    justify-content: flex-start !important;
  }
}
.cid-tJeE61CKpt .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tJeE61CKpt .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tJeE61CKpt .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tJeE61CKpt .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tJeE61CKpt .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tJeE61CKpt .card-title {
  color: #ffffff;
}
.cid-tJeE61CKpt P {
  color: #22a5e5;
}
.cid-tFKiukcXtu .navbar-dropdown {
  position: relative !important;
}
.cid-tFKiukcXtu .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKiukcXtu nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKiukcXtu .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKiukcXtu .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-tFKiukcXtu .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKiukcXtu .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKiukcXtu .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKiukcXtu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKiukcXtu .nav-link {
  position: relative;
}
.cid-tFKiukcXtu .container {
  display: flex;
  margin: auto;
}
.cid-tFKiukcXtu .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKiukcXtu .dropdown-menu,
.cid-tFKiukcXtu .navbar.opened {
  background: #000000 !important;
}
.cid-tFKiukcXtu .nav-item:focus,
.cid-tFKiukcXtu .nav-link:focus {
  outline: none;
}
.cid-tFKiukcXtu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKiukcXtu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKiukcXtu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKiukcXtu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKiukcXtu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKiukcXtu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKiukcXtu .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKiukcXtu .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKiukcXtu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKiukcXtu .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKiukcXtu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKiukcXtu .navbar.collapsed {
  justify-content: center;
}
.cid-tFKiukcXtu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKiukcXtu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKiukcXtu .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKiukcXtu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKiukcXtu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKiukcXtu .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-tFKiukcXtu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKiukcXtu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKiukcXtu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKiukcXtu .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKiukcXtu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKiukcXtu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKiukcXtu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKiukcXtu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKiukcXtu .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-tFKiukcXtu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKiukcXtu .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKiukcXtu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKiukcXtu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKiukcXtu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKiukcXtu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKiukcXtu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKiukcXtu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKiukcXtu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKiukcXtu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKiukcXtu .dropdown-item.active,
.cid-tFKiukcXtu .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKiukcXtu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKiukcXtu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKiukcXtu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKiukcXtu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKiukcXtu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKiukcXtu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKiukcXtu ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKiukcXtu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKiukcXtu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKiukcXtu button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKiukcXtu button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKiukcXtu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKiukcXtu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKiukcXtu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiukcXtu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiukcXtu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKiukcXtu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiukcXtu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKiukcXtu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKiukcXtu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiukcXtu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKiukcXtu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKiukcXtu .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-tFKiukcXtu .navbar {
    height: 70px;
  }
  .cid-tFKiukcXtu .navbar.opened {
    height: auto;
  }
  .cid-tFKiukcXtu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKiukBHzQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiukBHzQ .link a {
  background-image: none !important;
}
.cid-tFKiukBHzQ .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKiukBHzQ .date {
  margin-bottom: 6px;
}
.cid-tFKiukBHzQ .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKiukBHzQ .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKiukBHzQ a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKiukBHzQ rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKiukBHzQ .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKiukBHzQ svg {
  margin-left: 15px;
}
.cid-tFKiukBHzQ path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKiukBHzQ .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKiukBHzQ .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKiukBHzQ .row {
  justify-content: center;
}
.cid-tFKiukBHzQ .p,
.cid-tFKiukBHzQ .link {
  color: #767676;
}
.cid-tFKiukSx29 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKiukSx29 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiukSx29 .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-tFKiukSx29 .container {
    padding: 0 30px;
  }
}
.cid-tFKiukSx29 .row {
  justify-content: center;
}
.cid-tFKiukSx29 .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKiukSx29 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKiukSx29 .card {
    margin-bottom: 30px;
  }
}
.cid-tFKiukSx29 .card .card-wrapper {
  display: flex;
}
.cid-tFKiukSx29 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKiukSx29 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKiukSx29 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKiukSx29 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKiukSx29 .mbr-section-title {
  color: #767676;
}
.cid-tFKiukSx29 .mbr-number {
  color: #000000;
}
.cid-tFKiukSx29 .mbr-card-title {
  color: #1070b9;
}
.cid-tFKiukSx29 .mbr-text {
  color: #767676;
}
.cid-tFKiulbTC9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiulbTC9 .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiulbTC9 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKiulbTC9 .row {
  justify-content: space-between;
}
.cid-tFKiulbTC9 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKiulbTC9 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKiulbTC9 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKiulbTC9 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKiulbTC9 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKiulbTC9 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKiulbTC9 .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKiulbTC9 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKiulbTC9 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKiulbTC9 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKiulbTC9 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKiulbTC9 .link,
.cid-tFKiulbTC9 .link-icon {
  color: #000000;
}
.cid-tFKiulbTC9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiulbTC9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiulbTC9 .mbr-text,
.cid-tFKiulbTC9 .mbr-section-btn {
  color: #767676;
}
.cid-tFKiulthp8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKiulthp8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKiulthp8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKiulthp8 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKiulthp8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKiulthp8 .box {
  right: 20%;
}
.cid-tFKiulthp8 .text-box {
  right: 0;
}
.cid-tFKiulthp8 .mbr-section-title,
.cid-tFKiulthp8 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKiulthp8 .text-box {
    display: none;
  }
  .cid-tFKiulthp8 .mbr-section-title,
  .cid-tFKiulthp8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKiulthp8 .box {
    display: none;
  }
  .cid-tFKiulthp8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKiulthp8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKiulthp8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKiulthp8 .mbr-section-text {
  color: #767676;
}
.cid-tFKiulthp8 .mbr-section-title {
  color: #1070b9;
}
.cid-tGBac5wQ6x {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBac5wQ6x .carousel {
    overflow: hidden;
  }
  .cid-tGBac5wQ6x .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBac5wQ6x .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBac5wQ6x #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBac5wQ6x #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBac5wQ6x .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBac5wQ6x .link-div {
  margin-left: 20px;
}
.cid-tGBac5wQ6x .link-div h3 {
  margin-left: 4px;
}
.cid-tGBac5wQ6x .mbr-card-title {
  color: #000e2f;
}
#custom-html-ag {
  /* Type valid CSS here */
}
#custom-html-ag .back-button {
  position: fixed;
}
.cid-tFKiumWsQR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKiumWsQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiumWsQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiumWsQR .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKiumWsQR .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKiumWsQR .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKiumWsQR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKiumWsQR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKiumWsQR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiumWsQR .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKiumWsQR .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiumWsQR .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKiumWsQR .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKiumWsQR .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKiumWsQR .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKiumWsQR .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKiumWsQR .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKiumWsQR .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKiumWsQR .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKiumWsQR .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKiumWsQR .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKiumWsQR .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKiumWsQR .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKiumWsQR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKiumWsQR .soc-item {
    padding: 10px;
  }
}
.cid-tFKiumWsQR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKiumWsQR .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKiumWsQR .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKiumWsQR .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKiumWsQR .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKiumWsQR .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiumWsQR .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKiumWsQR .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKiumWsQR .copyright {
    text-align: center !important;
  }
}
.cid-tFKiumWsQR p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKiumWsQR .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKiumWsQR .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKiumWsQR .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKiumWsQR .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiumWsQR .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKiumWsQR .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKiumWsQR .card-title {
  color: #ffffff;
}
.cid-tFKiumWsQR P {
  color: #22a5e5;
}
.cid-tJkimG7bJN .navbar-dropdown {
  position: relative !important;
}
.cid-tJkimG7bJN .navbar-dropdown {
  position: absolute !important;
}
.cid-tJkimG7bJN nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tJkimG7bJN .nav-item {
    margin: 0 !important;
  }
}
.cid-tJkimG7bJN .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-tJkimG7bJN .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tJkimG7bJN .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tJkimG7bJN .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tJkimG7bJN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJkimG7bJN .nav-link {
  position: relative;
}
.cid-tJkimG7bJN .container {
  display: flex;
  margin: auto;
}
.cid-tJkimG7bJN .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJkimG7bJN .dropdown-menu,
.cid-tJkimG7bJN .navbar.opened {
  background: #000000 !important;
}
.cid-tJkimG7bJN .nav-item:focus,
.cid-tJkimG7bJN .nav-link:focus {
  outline: none;
}
.cid-tJkimG7bJN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJkimG7bJN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJkimG7bJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJkimG7bJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJkimG7bJN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJkimG7bJN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJkimG7bJN .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tJkimG7bJN .navbar.opened {
  transition: all 0.3s;
}
.cid-tJkimG7bJN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJkimG7bJN .navbar .navbar-logo img {
  width: auto;
}
.cid-tJkimG7bJN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJkimG7bJN .navbar.collapsed {
  justify-content: center;
}
.cid-tJkimG7bJN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJkimG7bJN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJkimG7bJN .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJkimG7bJN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJkimG7bJN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJkimG7bJN .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-tJkimG7bJN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJkimG7bJN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJkimG7bJN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJkimG7bJN .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tJkimG7bJN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJkimG7bJN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJkimG7bJN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJkimG7bJN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJkimG7bJN .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-tJkimG7bJN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJkimG7bJN .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tJkimG7bJN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tJkimG7bJN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJkimG7bJN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJkimG7bJN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJkimG7bJN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJkimG7bJN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJkimG7bJN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJkimG7bJN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJkimG7bJN .dropdown-item.active,
.cid-tJkimG7bJN .dropdown-item:active {
  background-color: transparent;
}
.cid-tJkimG7bJN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJkimG7bJN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJkimG7bJN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJkimG7bJN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tJkimG7bJN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJkimG7bJN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJkimG7bJN ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tJkimG7bJN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJkimG7bJN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tJkimG7bJN button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tJkimG7bJN button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tJkimG7bJN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tJkimG7bJN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJkimG7bJN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJkimG7bJN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJkimG7bJN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJkimG7bJN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJkimG7bJN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJkimG7bJN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJkimG7bJN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJkimG7bJN .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tJkimG7bJN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJkimG7bJN .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-tJkimG7bJN .navbar {
    height: 70px;
  }
  .cid-tJkimG7bJN .navbar.opened {
    height: auto;
  }
  .cid-tJkimG7bJN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJkimGLsCR {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJkimGLsCR .link a {
  background-image: none !important;
}
.cid-tJkimGLsCR .item-wrapper {
  margin-bottom: 56px;
}
.cid-tJkimGLsCR .date {
  margin-bottom: 6px;
}
.cid-tJkimGLsCR .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tJkimGLsCR .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tJkimGLsCR a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tJkimGLsCR rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tJkimGLsCR .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tJkimGLsCR svg {
  margin-left: 15px;
}
.cid-tJkimGLsCR path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tJkimGLsCR .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tJkimGLsCR .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tJkimGLsCR .row {
  justify-content: center;
}
.cid-tJkimGLsCR .p,
.cid-tJkimGLsCR .link {
  color: #767676;
}
.cid-tJkimHa0Ra {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tJkimHa0Ra .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJkimHa0Ra .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-tJkimHa0Ra .container {
    padding: 0 30px;
  }
}
.cid-tJkimHa0Ra .row {
  justify-content: center;
}
.cid-tJkimHa0Ra .title-wrapper {
  margin-bottom: 55px;
}
.cid-tJkimHa0Ra .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tJkimHa0Ra .card {
    margin-bottom: 30px;
  }
}
.cid-tJkimHa0Ra .card .card-wrapper {
  display: flex;
}
.cid-tJkimHa0Ra .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tJkimHa0Ra .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tJkimHa0Ra .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tJkimHa0Ra .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tJkimHa0Ra .mbr-section-title {
  color: #767676;
}
.cid-tJkimHa0Ra .mbr-number {
  color: #000000;
}
.cid-tJkimHa0Ra .mbr-card-title {
  color: #1070b9;
}
.cid-tJkimHa0Ra .mbr-text {
  color: #767676;
}
.cid-tJkimI69uC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJkimI69uC .mbr-section-title {
  color: #1070b9;
}
.cid-tJkimI69uC .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tJkimI69uC .row {
  justify-content: space-between;
}
.cid-tJkimI69uC .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tJkimI69uC .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tJkimI69uC .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tJkimI69uC .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tJkimI69uC .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tJkimI69uC .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tJkimI69uC .link-wrapper {
    justify-content: center;
  }
}
.cid-tJkimI69uC .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tJkimI69uC .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tJkimI69uC .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tJkimI69uC .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tJkimI69uC .link,
.cid-tJkimI69uC .link-icon {
  color: #000000;
}
.cid-tJkimI69uC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJkimI69uC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJkimI69uC .mbr-text,
.cid-tJkimI69uC .mbr-section-btn {
  color: #767676;
}
.cid-tJkimIwrMF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJkimIwrMF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tJkimIwrMF .text-block {
  position: relative;
  z-index: 0;
}
.cid-tJkimIwrMF .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tJkimIwrMF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tJkimIwrMF .box {
  right: 20%;
}
.cid-tJkimIwrMF .text-box {
  right: 0;
}
.cid-tJkimIwrMF .mbr-section-title,
.cid-tJkimIwrMF .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tJkimIwrMF .text-box {
    display: none;
  }
  .cid-tJkimIwrMF .mbr-section-title,
  .cid-tJkimIwrMF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tJkimIwrMF .box {
    display: none;
  }
  .cid-tJkimIwrMF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tJkimIwrMF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJkimIwrMF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tJkimIwrMF .mbr-section-text {
  color: #767676;
}
.cid-tJkimIwrMF .mbr-section-title {
  color: #1070b9;
}
.cid-tJkimIUt72 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJkimIUt72 .box {
  margin-bottom: 15px;
}
.cid-tJkimIUt72 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tJkimIUt72 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tJkimIUt72 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tJkimIUt72 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tJkimIUt72 .mbr-media {
    max-height: 432px;
  }
}
.cid-tJkimIUt72 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tJkimIUt72 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tJkimIUt72 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tJkimIUt72 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tJkimIUt72 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tJkimIUt72 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tJkimIUt72 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tJkimIUt72 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tJkimIUt72 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tJkimIUt72 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tJkimIUt72 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tJkimIUt72 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tJkimIUt72 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tJkimIUt72 .item-img {
  overflow: hidden;
}
.cid-tJkimIUt72 .item-img img {
  width: 100%;
}
.cid-tJkimIUt72 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tJkimIUt72 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tJkimIUt72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJkimIUt72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJkimK3maS {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tJkimK3maS .carousel {
    overflow: hidden;
  }
  .cid-tJkimK3maS .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tJkimK3maS .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tJkimK3maS #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tJkimK3maS #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tJkimK3maS .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tJkimK3maS .link-div {
  margin-left: 20px;
}
.cid-tJkimK3maS .link-div h3 {
  margin-left: 4px;
}
.cid-tJkimK3maS .mbr-card-title {
  color: #000e2f;
}
#custom-html-j4 {
  /* Type valid CSS here */
}
#custom-html-j4 .back-button {
  position: fixed;
}
.cid-tJkimKz8kd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tJkimKz8kd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJkimKz8kd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJkimKz8kd .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tJkimKz8kd .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tJkimKz8kd .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tJkimKz8kd .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tJkimKz8kd .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tJkimKz8kd .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJkimKz8kd .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tJkimKz8kd .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJkimKz8kd .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tJkimKz8kd .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tJkimKz8kd .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tJkimKz8kd .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tJkimKz8kd .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tJkimKz8kd .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tJkimKz8kd .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tJkimKz8kd .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tJkimKz8kd .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tJkimKz8kd .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tJkimKz8kd .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tJkimKz8kd .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tJkimKz8kd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tJkimKz8kd .soc-item {
    padding: 10px;
  }
}
.cid-tJkimKz8kd .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tJkimKz8kd .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tJkimKz8kd .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tJkimKz8kd .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tJkimKz8kd .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tJkimKz8kd .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tJkimKz8kd .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tJkimKz8kd .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tJkimKz8kd .copyright {
    text-align: center !important;
  }
}
.cid-tJkimKz8kd p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tJkimKz8kd .row {
    justify-content: flex-start !important;
  }
}
.cid-tJkimKz8kd .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tJkimKz8kd .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tJkimKz8kd .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tJkimKz8kd .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tJkimKz8kd .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tJkimKz8kd .card-title {
  color: #ffffff;
}
.cid-tJkimKz8kd P {
  color: #22a5e5;
}
.cid-tFKijStNmj .navbar-dropdown {
  position: relative !important;
}
.cid-tFKijStNmj .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKijStNmj nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKijStNmj .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKijStNmj .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-tFKijStNmj .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKijStNmj .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKijStNmj .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKijStNmj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKijStNmj .nav-link {
  position: relative;
}
.cid-tFKijStNmj .container {
  display: flex;
  margin: auto;
}
.cid-tFKijStNmj .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKijStNmj .dropdown-menu,
.cid-tFKijStNmj .navbar.opened {
  background: #000000 !important;
}
.cid-tFKijStNmj .nav-item:focus,
.cid-tFKijStNmj .nav-link:focus {
  outline: none;
}
.cid-tFKijStNmj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKijStNmj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKijStNmj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKijStNmj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKijStNmj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKijStNmj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKijStNmj .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKijStNmj .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKijStNmj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKijStNmj .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKijStNmj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKijStNmj .navbar.collapsed {
  justify-content: center;
}
.cid-tFKijStNmj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKijStNmj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKijStNmj .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKijStNmj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKijStNmj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKijStNmj .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-tFKijStNmj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKijStNmj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKijStNmj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKijStNmj .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKijStNmj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKijStNmj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKijStNmj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKijStNmj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKijStNmj .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-tFKijStNmj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKijStNmj .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKijStNmj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKijStNmj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKijStNmj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKijStNmj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKijStNmj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKijStNmj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKijStNmj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKijStNmj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKijStNmj .dropdown-item.active,
.cid-tFKijStNmj .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKijStNmj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKijStNmj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKijStNmj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKijStNmj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKijStNmj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKijStNmj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKijStNmj ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKijStNmj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKijStNmj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKijStNmj button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKijStNmj button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKijStNmj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKijStNmj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKijStNmj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKijStNmj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKijStNmj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKijStNmj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKijStNmj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKijStNmj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKijStNmj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKijStNmj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKijStNmj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKijStNmj .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-tFKijStNmj .navbar {
    height: 70px;
  }
  .cid-tFKijStNmj .navbar.opened {
    height: auto;
  }
  .cid-tFKijStNmj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKijSWqqj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKijSWqqj .link a {
  background-image: none !important;
}
.cid-tFKijSWqqj .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKijSWqqj .date {
  margin-bottom: 6px;
}
.cid-tFKijSWqqj .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKijSWqqj .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKijSWqqj a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKijSWqqj rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKijSWqqj .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKijSWqqj svg {
  margin-left: 15px;
}
.cid-tFKijSWqqj path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKijSWqqj .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKijSWqqj .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKijSWqqj .row {
  justify-content: center;
}
.cid-tFKijSWqqj .p,
.cid-tFKijSWqqj .link {
  color: #767676;
}
.cid-tFKijTf1m3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKijTf1m3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKijTf1m3 .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-tFKijTf1m3 .container {
    padding: 0 30px;
  }
}
.cid-tFKijTf1m3 .row {
  justify-content: center;
}
.cid-tFKijTf1m3 .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKijTf1m3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKijTf1m3 .card {
    margin-bottom: 30px;
  }
}
.cid-tFKijTf1m3 .card .card-wrapper {
  display: flex;
}
.cid-tFKijTf1m3 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKijTf1m3 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKijTf1m3 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKijTf1m3 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKijTf1m3 .mbr-section-title {
  color: #767676;
}
.cid-tFKijTf1m3 .mbr-number {
  color: #000000;
}
.cid-tFKijTf1m3 .mbr-card-title {
  color: #1070b9;
}
.cid-tFKijTf1m3 .mbr-text {
  color: #767676;
}
.cid-tFKijTBIsN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKijTBIsN .mbr-section-title {
  color: #1070b9;
}
.cid-tFKijTBIsN .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKijTBIsN .row {
  justify-content: space-between;
}
.cid-tFKijTBIsN .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKijTBIsN .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKijTBIsN .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKijTBIsN .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKijTBIsN .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKijTBIsN .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKijTBIsN .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKijTBIsN .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKijTBIsN .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKijTBIsN .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKijTBIsN .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKijTBIsN .link,
.cid-tFKijTBIsN .link-icon {
  color: #000000;
}
.cid-tFKijTBIsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKijTBIsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKijTBIsN .mbr-text,
.cid-tFKijTBIsN .mbr-section-btn {
  color: #767676;
}
.cid-tFKijTYW4P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKijTYW4P .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKijTYW4P .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKijTYW4P .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKijTYW4P .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKijTYW4P .box {
  right: 20%;
}
.cid-tFKijTYW4P .text-box {
  right: 0;
}
.cid-tFKijTYW4P .mbr-section-title,
.cid-tFKijTYW4P .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKijTYW4P .text-box {
    display: none;
  }
  .cid-tFKijTYW4P .mbr-section-title,
  .cid-tFKijTYW4P .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKijTYW4P .box {
    display: none;
  }
  .cid-tFKijTYW4P .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKijTYW4P .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKijTYW4P .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKijTYW4P .mbr-section-text {
  color: #767676;
}
.cid-tFKijTYW4P .mbr-section-title {
  color: #1070b9;
}
.cid-tGB9WtDrfe {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB9WtDrfe .carousel {
    overflow: hidden;
  }
  .cid-tGB9WtDrfe .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB9WtDrfe .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB9WtDrfe #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB9WtDrfe #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB9WtDrfe .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB9WtDrfe .link-div {
  margin-left: 20px;
}
.cid-tGB9WtDrfe .link-div h3 {
  margin-left: 4px;
}
.cid-tGB9WtDrfe .mbr-card-title {
  color: #000e2f;
}
#custom-html-9w {
  /* Type valid CSS here */
}
#custom-html-9w .back-button {
  position: fixed;
}
.cid-tFKijVrCT9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKijVrCT9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKijVrCT9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKijVrCT9 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKijVrCT9 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKijVrCT9 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKijVrCT9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKijVrCT9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKijVrCT9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKijVrCT9 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKijVrCT9 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKijVrCT9 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKijVrCT9 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKijVrCT9 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKijVrCT9 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKijVrCT9 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKijVrCT9 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKijVrCT9 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKijVrCT9 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKijVrCT9 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKijVrCT9 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKijVrCT9 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKijVrCT9 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKijVrCT9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKijVrCT9 .soc-item {
    padding: 10px;
  }
}
.cid-tFKijVrCT9 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKijVrCT9 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKijVrCT9 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKijVrCT9 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKijVrCT9 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKijVrCT9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKijVrCT9 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKijVrCT9 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKijVrCT9 .copyright {
    text-align: center !important;
  }
}
.cid-tFKijVrCT9 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKijVrCT9 .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKijVrCT9 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKijVrCT9 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKijVrCT9 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKijVrCT9 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKijVrCT9 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKijVrCT9 .card-title {
  color: #ffffff;
}
.cid-tFKijVrCT9 P {
  color: #22a5e5;
}
.cid-tFKgoXN3A2 .navbar-dropdown {
  position: relative !important;
}
.cid-tFKgoXN3A2 .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKgoXN3A2 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKgoXN3A2 .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKgoXN3A2 .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-tFKgoXN3A2 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKgoXN3A2 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKgoXN3A2 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKgoXN3A2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKgoXN3A2 .nav-link {
  position: relative;
}
.cid-tFKgoXN3A2 .container {
  display: flex;
  margin: auto;
}
.cid-tFKgoXN3A2 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKgoXN3A2 .dropdown-menu,
.cid-tFKgoXN3A2 .navbar.opened {
  background: #000000 !important;
}
.cid-tFKgoXN3A2 .nav-item:focus,
.cid-tFKgoXN3A2 .nav-link:focus {
  outline: none;
}
.cid-tFKgoXN3A2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKgoXN3A2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKgoXN3A2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKgoXN3A2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKgoXN3A2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKgoXN3A2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKgoXN3A2 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKgoXN3A2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKgoXN3A2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKgoXN3A2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKgoXN3A2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKgoXN3A2 .navbar.collapsed {
  justify-content: center;
}
.cid-tFKgoXN3A2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKgoXN3A2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKgoXN3A2 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKgoXN3A2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKgoXN3A2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKgoXN3A2 .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-tFKgoXN3A2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKgoXN3A2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKgoXN3A2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKgoXN3A2 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKgoXN3A2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKgoXN3A2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKgoXN3A2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKgoXN3A2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKgoXN3A2 .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-tFKgoXN3A2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKgoXN3A2 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKgoXN3A2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKgoXN3A2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKgoXN3A2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKgoXN3A2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKgoXN3A2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKgoXN3A2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKgoXN3A2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKgoXN3A2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKgoXN3A2 .dropdown-item.active,
.cid-tFKgoXN3A2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKgoXN3A2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKgoXN3A2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKgoXN3A2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKgoXN3A2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKgoXN3A2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKgoXN3A2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKgoXN3A2 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKgoXN3A2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKgoXN3A2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKgoXN3A2 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKgoXN3A2 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKgoXN3A2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKgoXN3A2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKgoXN3A2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgoXN3A2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKgoXN3A2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKgoXN3A2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgoXN3A2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKgoXN3A2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKgoXN3A2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKgoXN3A2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKgoXN3A2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKgoXN3A2 .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-tFKgoXN3A2 .navbar {
    height: 70px;
  }
  .cid-tFKgoXN3A2 .navbar.opened {
    height: auto;
  }
  .cid-tFKgoXN3A2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKgoYdems {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgoYdems .link a {
  background-image: none !important;
}
.cid-tFKgoYdems .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKgoYdems .date {
  margin-bottom: 6px;
}
.cid-tFKgoYdems .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKgoYdems .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKgoYdems a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKgoYdems rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKgoYdems .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKgoYdems svg {
  margin-left: 15px;
}
.cid-tFKgoYdems path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKgoYdems .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKgoYdems .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKgoYdems .row {
  justify-content: center;
}
.cid-tFKgoYdems .p,
.cid-tFKgoYdems .link {
  color: #767676;
}
.cid-tFKgoYvzij {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKgoYvzij .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgoYvzij .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-tFKgoYvzij .container {
    padding: 0 30px;
  }
}
.cid-tFKgoYvzij .row {
  justify-content: center;
}
.cid-tFKgoYvzij .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKgoYvzij .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKgoYvzij .card {
    margin-bottom: 30px;
  }
}
.cid-tFKgoYvzij .card .card-wrapper {
  display: flex;
}
.cid-tFKgoYvzij .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKgoYvzij .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKgoYvzij .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKgoYvzij .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKgoYvzij .mbr-section-title {
  color: #767676;
}
.cid-tFKgoYvzij .mbr-number {
  color: #000000;
}
.cid-tFKgoYvzij .mbr-card-title {
  color: #1070b9;
}
.cid-tFKgoYvzij .mbr-text {
  color: #767676;
}
.cid-tFKgoYMq1Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKgoYMq1Z .mbr-section-title {
  color: #1070b9;
}
.cid-tFKgoYMq1Z .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKgoYMq1Z .row {
  justify-content: space-between;
}
.cid-tFKgoYMq1Z .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKgoYMq1Z .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKgoYMq1Z .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKgoYMq1Z .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKgoYMq1Z .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKgoYMq1Z .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKgoYMq1Z .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKgoYMq1Z .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKgoYMq1Z .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKgoYMq1Z .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKgoYMq1Z .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKgoYMq1Z .link,
.cid-tFKgoYMq1Z .link-icon {
  color: #000000;
}
.cid-tFKgoYMq1Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgoYMq1Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgoYMq1Z .mbr-text,
.cid-tFKgoYMq1Z .mbr-section-btn {
  color: #767676;
}
.cid-tFKgoZ45BD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKgoZ45BD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKgoZ45BD .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKgoZ45BD .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKgoZ45BD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKgoZ45BD .box {
  right: 20%;
}
.cid-tFKgoZ45BD .text-box {
  right: 0;
}
.cid-tFKgoZ45BD .mbr-section-title,
.cid-tFKgoZ45BD .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKgoZ45BD .text-box {
    display: none;
  }
  .cid-tFKgoZ45BD .mbr-section-title,
  .cid-tFKgoZ45BD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKgoZ45BD .box {
    display: none;
  }
  .cid-tFKgoZ45BD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKgoZ45BD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKgoZ45BD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKgoZ45BD .mbr-section-text {
  color: #767676;
}
.cid-tFKgoZ45BD .mbr-section-title {
  color: #1070b9;
}
.cid-tGBa4Ner4B {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBa4Ner4B .carousel {
    overflow: hidden;
  }
  .cid-tGBa4Ner4B .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBa4Ner4B .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBa4Ner4B #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBa4Ner4B #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBa4Ner4B .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBa4Ner4B .link-div {
  margin-left: 20px;
}
.cid-tGBa4Ner4B .link-div h3 {
  margin-left: 4px;
}
.cid-tGBa4Ner4B .mbr-card-title {
  color: #000e2f;
}
#custom-html-92 {
  /* Type valid CSS here */
}
#custom-html-92 .back-button {
  position: fixed;
}
.cid-tFKgp0qIgh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKgp0qIgh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKgp0qIgh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKgp0qIgh .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKgp0qIgh .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKgp0qIgh .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKgp0qIgh .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKgp0qIgh .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKgp0qIgh .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgp0qIgh .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKgp0qIgh .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKgp0qIgh .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKgp0qIgh .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKgp0qIgh .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKgp0qIgh .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKgp0qIgh .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKgp0qIgh .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKgp0qIgh .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKgp0qIgh .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKgp0qIgh .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKgp0qIgh .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKgp0qIgh .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKgp0qIgh .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKgp0qIgh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKgp0qIgh .soc-item {
    padding: 10px;
  }
}
.cid-tFKgp0qIgh .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKgp0qIgh .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKgp0qIgh .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKgp0qIgh .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKgp0qIgh .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKgp0qIgh .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgp0qIgh .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKgp0qIgh .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKgp0qIgh .copyright {
    text-align: center !important;
  }
}
.cid-tFKgp0qIgh p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKgp0qIgh .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKgp0qIgh .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKgp0qIgh .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKgp0qIgh .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKgp0qIgh .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKgp0qIgh .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKgp0qIgh .card-title {
  color: #ffffff;
}
.cid-tFKgp0qIgh P {
  color: #22a5e5;
}
.cid-tFKiEBVh3s .navbar-dropdown {
  position: relative !important;
}
.cid-tFKiEBVh3s .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKiEBVh3s nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKiEBVh3s .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKiEBVh3s .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-tFKiEBVh3s .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKiEBVh3s .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKiEBVh3s .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKiEBVh3s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKiEBVh3s .nav-link {
  position: relative;
}
.cid-tFKiEBVh3s .container {
  display: flex;
  margin: auto;
}
.cid-tFKiEBVh3s .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKiEBVh3s .dropdown-menu,
.cid-tFKiEBVh3s .navbar.opened {
  background: #000000 !important;
}
.cid-tFKiEBVh3s .nav-item:focus,
.cid-tFKiEBVh3s .nav-link:focus {
  outline: none;
}
.cid-tFKiEBVh3s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKiEBVh3s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKiEBVh3s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKiEBVh3s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKiEBVh3s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKiEBVh3s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKiEBVh3s .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKiEBVh3s .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKiEBVh3s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKiEBVh3s .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKiEBVh3s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKiEBVh3s .navbar.collapsed {
  justify-content: center;
}
.cid-tFKiEBVh3s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKiEBVh3s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKiEBVh3s .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKiEBVh3s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKiEBVh3s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKiEBVh3s .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-tFKiEBVh3s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKiEBVh3s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKiEBVh3s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKiEBVh3s .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKiEBVh3s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKiEBVh3s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKiEBVh3s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKiEBVh3s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKiEBVh3s .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-tFKiEBVh3s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKiEBVh3s .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKiEBVh3s .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKiEBVh3s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKiEBVh3s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKiEBVh3s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKiEBVh3s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKiEBVh3s .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKiEBVh3s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKiEBVh3s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKiEBVh3s .dropdown-item.active,
.cid-tFKiEBVh3s .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKiEBVh3s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKiEBVh3s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKiEBVh3s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKiEBVh3s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKiEBVh3s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKiEBVh3s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKiEBVh3s ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKiEBVh3s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKiEBVh3s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKiEBVh3s button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKiEBVh3s button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKiEBVh3s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKiEBVh3s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKiEBVh3s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiEBVh3s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKiEBVh3s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKiEBVh3s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiEBVh3s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKiEBVh3s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKiEBVh3s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKiEBVh3s .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKiEBVh3s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKiEBVh3s .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-tFKiEBVh3s .navbar {
    height: 70px;
  }
  .cid-tFKiEBVh3s .navbar.opened {
    height: auto;
  }
  .cid-tFKiEBVh3s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKiECkS07 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiECkS07 .link a {
  background-image: none !important;
}
.cid-tFKiECkS07 .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKiECkS07 .date {
  margin-bottom: 6px;
}
.cid-tFKiECkS07 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKiECkS07 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKiECkS07 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKiECkS07 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKiECkS07 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKiECkS07 svg {
  margin-left: 15px;
}
.cid-tFKiECkS07 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKiECkS07 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKiECkS07 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKiECkS07 .row {
  justify-content: center;
}
.cid-tFKiECkS07 .p,
.cid-tFKiECkS07 .link {
  color: #767676;
}
.cid-tFKiECBlsS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKiECBlsS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiECBlsS .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-tFKiECBlsS .container {
    padding: 0 30px;
  }
}
.cid-tFKiECBlsS .row {
  justify-content: center;
}
.cid-tFKiECBlsS .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKiECBlsS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKiECBlsS .card {
    margin-bottom: 30px;
  }
}
.cid-tFKiECBlsS .card .card-wrapper {
  display: flex;
}
.cid-tFKiECBlsS .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKiECBlsS .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKiECBlsS .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKiECBlsS .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKiECBlsS .mbr-section-title {
  color: #767676;
}
.cid-tFKiECBlsS .mbr-number {
  color: #000000;
}
.cid-tFKiECBlsS .mbr-card-title {
  color: #1070b9;
}
.cid-tFKiECBlsS .mbr-text {
  color: #767676;
}
.cid-tFKiECTdnb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKiECTdnb .mbr-section-title {
  color: #1070b9;
}
.cid-tFKiECTdnb .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKiECTdnb .row {
  justify-content: space-between;
}
.cid-tFKiECTdnb .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKiECTdnb .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKiECTdnb .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKiECTdnb .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKiECTdnb .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKiECTdnb .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKiECTdnb .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKiECTdnb .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKiECTdnb .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKiECTdnb .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKiECTdnb .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKiECTdnb .link,
.cid-tFKiECTdnb .link-icon {
  color: #000000;
}
.cid-tFKiECTdnb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiECTdnb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiECTdnb .mbr-text,
.cid-tFKiECTdnb .mbr-section-btn {
  color: #767676;
}
.cid-tFKiEDbeec {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tFKiEDbeec .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKiEDbeec .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKiEDbeec .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKiEDbeec .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKiEDbeec .box {
  right: 20%;
}
.cid-tFKiEDbeec .text-box {
  right: 0;
}
.cid-tFKiEDbeec .mbr-section-title,
.cid-tFKiEDbeec .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKiEDbeec .text-box {
    display: none;
  }
  .cid-tFKiEDbeec .mbr-section-title,
  .cid-tFKiEDbeec .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKiEDbeec .box {
    display: none;
  }
  .cid-tFKiEDbeec .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKiEDbeec .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKiEDbeec .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKiEDbeec .mbr-section-text {
  color: #767676;
}
.cid-tFKiEDbeec .mbr-section-title {
  color: #1070b9;
}
.cid-tGBbTFH8pN {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBbTFH8pN .carousel {
    overflow: hidden;
  }
  .cid-tGBbTFH8pN .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBbTFH8pN .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBbTFH8pN #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBbTFH8pN #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBbTFH8pN .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBbTFH8pN .link-div {
  margin-left: 20px;
}
.cid-tGBbTFH8pN .link-div h3 {
  margin-left: 4px;
}
.cid-tGBbTFH8pN .mbr-card-title {
  color: #000e2f;
}
#custom-html-ba {
  /* Type valid CSS here */
}
#custom-html-ba .back-button {
  position: fixed;
}
.cid-tFKiEEEk0t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKiEEEk0t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKiEEEk0t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKiEEEk0t .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKiEEEk0t .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKiEEEk0t .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKiEEEk0t .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKiEEEk0t .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKiEEEk0t .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiEEEk0t .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKiEEEk0t .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKiEEEk0t .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKiEEEk0t .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKiEEEk0t .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKiEEEk0t .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKiEEEk0t .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKiEEEk0t .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKiEEEk0t .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKiEEEk0t .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKiEEEk0t .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKiEEEk0t .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKiEEEk0t .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKiEEEk0t .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKiEEEk0t .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKiEEEk0t .soc-item {
    padding: 10px;
  }
}
.cid-tFKiEEEk0t .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKiEEEk0t .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKiEEEk0t .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKiEEEk0t .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKiEEEk0t .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKiEEEk0t .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiEEEk0t .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKiEEEk0t .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKiEEEk0t .copyright {
    text-align: center !important;
  }
}
.cid-tFKiEEEk0t p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKiEEEk0t .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKiEEEk0t .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKiEEEk0t .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKiEEEk0t .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKiEEEk0t .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKiEEEk0t .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKiEEEk0t .card-title {
  color: #ffffff;
}
.cid-tFKiEEEk0t P {
  color: #22a5e5;
}
.cid-u0iZCO4VF2 .navbar-dropdown {
  position: relative !important;
}
.cid-u0iZCO4VF2 .navbar-dropdown {
  position: absolute !important;
}
.cid-u0iZCO4VF2 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0iZCO4VF2 .nav-item {
    margin: 0 !important;
  }
}
.cid-u0iZCO4VF2 .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-u0iZCO4VF2 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0iZCO4VF2 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0iZCO4VF2 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0iZCO4VF2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0iZCO4VF2 .nav-link {
  position: relative;
}
.cid-u0iZCO4VF2 .container {
  display: flex;
  margin: auto;
}
.cid-u0iZCO4VF2 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0iZCO4VF2 .dropdown-menu,
.cid-u0iZCO4VF2 .navbar.opened {
  background: #000000 !important;
}
.cid-u0iZCO4VF2 .nav-item:focus,
.cid-u0iZCO4VF2 .nav-link:focus {
  outline: none;
}
.cid-u0iZCO4VF2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0iZCO4VF2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0iZCO4VF2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0iZCO4VF2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0iZCO4VF2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0iZCO4VF2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0iZCO4VF2 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0iZCO4VF2 .navbar.opened {
  transition: all 0.3s;
}
.cid-u0iZCO4VF2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0iZCO4VF2 .navbar .navbar-logo img {
  width: auto;
}
.cid-u0iZCO4VF2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0iZCO4VF2 .navbar.collapsed {
  justify-content: center;
}
.cid-u0iZCO4VF2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0iZCO4VF2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0iZCO4VF2 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0iZCO4VF2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0iZCO4VF2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0iZCO4VF2 .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-u0iZCO4VF2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0iZCO4VF2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0iZCO4VF2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0iZCO4VF2 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0iZCO4VF2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0iZCO4VF2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0iZCO4VF2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0iZCO4VF2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0iZCO4VF2 .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-u0iZCO4VF2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0iZCO4VF2 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0iZCO4VF2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0iZCO4VF2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0iZCO4VF2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0iZCO4VF2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0iZCO4VF2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0iZCO4VF2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0iZCO4VF2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0iZCO4VF2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0iZCO4VF2 .dropdown-item.active,
.cid-u0iZCO4VF2 .dropdown-item:active {
  background-color: transparent;
}
.cid-u0iZCO4VF2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0iZCO4VF2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0iZCO4VF2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0iZCO4VF2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0iZCO4VF2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0iZCO4VF2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0iZCO4VF2 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0iZCO4VF2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0iZCO4VF2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0iZCO4VF2 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0iZCO4VF2 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0iZCO4VF2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0iZCO4VF2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0iZCO4VF2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0iZCO4VF2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0iZCO4VF2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0iZCO4VF2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0iZCO4VF2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0iZCO4VF2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0iZCO4VF2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0iZCO4VF2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0iZCO4VF2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0iZCO4VF2 .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-u0iZCO4VF2 .navbar {
    height: 70px;
  }
  .cid-u0iZCO4VF2 .navbar.opened {
    height: auto;
  }
  .cid-u0iZCO4VF2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0iZCOHOAb {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0iZCOHOAb .link a {
  background-image: none !important;
}
.cid-u0iZCOHOAb .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0iZCOHOAb .date {
  margin-bottom: 6px;
}
.cid-u0iZCOHOAb .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0iZCOHOAb .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0iZCOHOAb a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0iZCOHOAb rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0iZCOHOAb .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0iZCOHOAb svg {
  margin-left: 15px;
}
.cid-u0iZCOHOAb path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0iZCOHOAb .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0iZCOHOAb .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0iZCOHOAb .row {
  justify-content: center;
}
.cid-u0iZCOHOAb .p,
.cid-u0iZCOHOAb .link {
  color: #767676;
}
.cid-u0iZCPfDee {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0iZCPfDee .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0iZCPfDee .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-u0iZCPfDee .container {
    padding: 0 30px;
  }
}
.cid-u0iZCPfDee .row {
  justify-content: center;
}
.cid-u0iZCPfDee .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0iZCPfDee .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0iZCPfDee .card {
    margin-bottom: 30px;
  }
}
.cid-u0iZCPfDee .card .card-wrapper {
  display: flex;
}
.cid-u0iZCPfDee .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0iZCPfDee .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0iZCPfDee .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0iZCPfDee .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0iZCPfDee .mbr-section-title {
  color: #767676;
}
.cid-u0iZCPfDee .mbr-number {
  color: #000000;
}
.cid-u0iZCPfDee .mbr-card-title {
  color: #1070b9;
}
.cid-u0iZCPfDee .mbr-text {
  color: #767676;
}
.cid-u0iZCPM77c {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0iZCPM77c .mbr-section-title {
  color: #1070b9;
}
.cid-u0iZCPM77c .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0iZCPM77c .row {
  justify-content: space-between;
}
.cid-u0iZCPM77c .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0iZCPM77c .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0iZCPM77c .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0iZCPM77c .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0iZCPM77c .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0iZCPM77c .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0iZCPM77c .link-wrapper {
    justify-content: center;
  }
}
.cid-u0iZCPM77c .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0iZCPM77c .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0iZCPM77c .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0iZCPM77c .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0iZCPM77c .link,
.cid-u0iZCPM77c .link-icon {
  color: #000000;
}
.cid-u0iZCPM77c .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0iZCPM77c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0iZCPM77c .mbr-text,
.cid-u0iZCPM77c .mbr-section-btn {
  color: #767676;
}
.cid-u0iZCQedOi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0iZCQedOi .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0iZCQedOi .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0iZCQedOi .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0iZCQedOi .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0iZCQedOi .box {
  right: 20%;
}
.cid-u0iZCQedOi .text-box {
  right: 0;
}
.cid-u0iZCQedOi .mbr-section-title,
.cid-u0iZCQedOi .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0iZCQedOi .text-box {
    display: none;
  }
  .cid-u0iZCQedOi .mbr-section-title,
  .cid-u0iZCQedOi .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0iZCQedOi .box {
    display: none;
  }
  .cid-u0iZCQedOi .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0iZCQedOi .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0iZCQedOi .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0iZCQedOi .mbr-section-text {
  color: #767676;
}
.cid-u0iZCQedOi .mbr-section-title {
  color: #1070b9;
}
.cid-u0iZCRflNW {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0iZCRflNW .carousel {
    overflow: hidden;
  }
  .cid-u0iZCRflNW .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0iZCRflNW .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0iZCRflNW #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0iZCRflNW #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0iZCRflNW .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0iZCRflNW .link-div {
  margin-left: 20px;
}
.cid-u0iZCRflNW .link-div h3 {
  margin-left: 4px;
}
.cid-u0iZCRflNW .mbr-card-title {
  color: #000e2f;
}
#custom-html-jo {
  /* Type valid CSS here */
}
#custom-html-jo .back-button {
  position: fixed;
}
.cid-u0iZCStXpi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0iZCStXpi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0iZCStXpi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0iZCStXpi .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0iZCStXpi .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0iZCStXpi .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0iZCStXpi .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0iZCStXpi .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0iZCStXpi .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0iZCStXpi .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0iZCStXpi .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0iZCStXpi .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0iZCStXpi .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0iZCStXpi .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0iZCStXpi .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0iZCStXpi .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0iZCStXpi .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0iZCStXpi .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0iZCStXpi .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0iZCStXpi .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0iZCStXpi .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0iZCStXpi .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0iZCStXpi .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0iZCStXpi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0iZCStXpi .soc-item {
    padding: 10px;
  }
}
.cid-u0iZCStXpi .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0iZCStXpi .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0iZCStXpi .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0iZCStXpi .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0iZCStXpi .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0iZCStXpi .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0iZCStXpi .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0iZCStXpi .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0iZCStXpi .copyright {
    text-align: center !important;
  }
}
.cid-u0iZCStXpi p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0iZCStXpi .row {
    justify-content: flex-start !important;
  }
}
.cid-u0iZCStXpi .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0iZCStXpi .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0iZCStXpi .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0iZCStXpi .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0iZCStXpi .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0iZCStXpi .card-title {
  color: #ffffff;
}
.cid-u0iZCStXpi P {
  color: #22a5e5;
}
.cid-u0jmCIPzZ9 .navbar-dropdown {
  position: relative !important;
}
.cid-u0jmCIPzZ9 .navbar-dropdown {
  position: absolute !important;
}
.cid-u0jmCIPzZ9 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0jmCIPzZ9 .nav-item {
    margin: 0 !important;
  }
}
.cid-u0jmCIPzZ9 .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-u0jmCIPzZ9 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0jmCIPzZ9 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0jmCIPzZ9 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0jmCIPzZ9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0jmCIPzZ9 .nav-link {
  position: relative;
}
.cid-u0jmCIPzZ9 .container {
  display: flex;
  margin: auto;
}
.cid-u0jmCIPzZ9 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0jmCIPzZ9 .dropdown-menu,
.cid-u0jmCIPzZ9 .navbar.opened {
  background: #000000 !important;
}
.cid-u0jmCIPzZ9 .nav-item:focus,
.cid-u0jmCIPzZ9 .nav-link:focus {
  outline: none;
}
.cid-u0jmCIPzZ9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0jmCIPzZ9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0jmCIPzZ9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0jmCIPzZ9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0jmCIPzZ9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0jmCIPzZ9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0jmCIPzZ9 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0jmCIPzZ9 .navbar.opened {
  transition: all 0.3s;
}
.cid-u0jmCIPzZ9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0jmCIPzZ9 .navbar .navbar-logo img {
  width: auto;
}
.cid-u0jmCIPzZ9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0jmCIPzZ9 .navbar.collapsed {
  justify-content: center;
}
.cid-u0jmCIPzZ9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0jmCIPzZ9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0jmCIPzZ9 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0jmCIPzZ9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0jmCIPzZ9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0jmCIPzZ9 .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-u0jmCIPzZ9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0jmCIPzZ9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0jmCIPzZ9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0jmCIPzZ9 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0jmCIPzZ9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0jmCIPzZ9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0jmCIPzZ9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0jmCIPzZ9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0jmCIPzZ9 .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-u0jmCIPzZ9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0jmCIPzZ9 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0jmCIPzZ9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0jmCIPzZ9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0jmCIPzZ9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0jmCIPzZ9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0jmCIPzZ9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0jmCIPzZ9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0jmCIPzZ9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0jmCIPzZ9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0jmCIPzZ9 .dropdown-item.active,
.cid-u0jmCIPzZ9 .dropdown-item:active {
  background-color: transparent;
}
.cid-u0jmCIPzZ9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0jmCIPzZ9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0jmCIPzZ9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0jmCIPzZ9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0jmCIPzZ9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0jmCIPzZ9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0jmCIPzZ9 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0jmCIPzZ9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0jmCIPzZ9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0jmCIPzZ9 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0jmCIPzZ9 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0jmCIPzZ9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0jmCIPzZ9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0jmCIPzZ9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jmCIPzZ9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jmCIPzZ9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0jmCIPzZ9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jmCIPzZ9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0jmCIPzZ9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0jmCIPzZ9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jmCIPzZ9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0jmCIPzZ9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0jmCIPzZ9 .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-u0jmCIPzZ9 .navbar {
    height: 70px;
  }
  .cid-u0jmCIPzZ9 .navbar.opened {
    height: auto;
  }
  .cid-u0jmCIPzZ9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0jmCJlCVH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jmCJlCVH .link a {
  background-image: none !important;
}
.cid-u0jmCJlCVH .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0jmCJlCVH .date {
  margin-bottom: 6px;
}
.cid-u0jmCJlCVH .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0jmCJlCVH .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0jmCJlCVH a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0jmCJlCVH rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0jmCJlCVH .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0jmCJlCVH svg {
  margin-left: 15px;
}
.cid-u0jmCJlCVH path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0jmCJlCVH .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0jmCJlCVH .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0jmCJlCVH .row {
  justify-content: center;
}
.cid-u0jmCJlCVH .p,
.cid-u0jmCJlCVH .link {
  color: #767676;
}
.cid-u0jmCJKMM6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0jmCJKMM6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jmCJKMM6 .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-u0jmCJKMM6 .container {
    padding: 0 30px;
  }
}
.cid-u0jmCJKMM6 .row {
  justify-content: center;
}
.cid-u0jmCJKMM6 .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0jmCJKMM6 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0jmCJKMM6 .card {
    margin-bottom: 30px;
  }
}
.cid-u0jmCJKMM6 .card .card-wrapper {
  display: flex;
}
.cid-u0jmCJKMM6 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0jmCJKMM6 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0jmCJKMM6 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0jmCJKMM6 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0jmCJKMM6 .mbr-section-title {
  color: #767676;
}
.cid-u0jmCJKMM6 .mbr-number {
  color: #000000;
}
.cid-u0jmCJKMM6 .mbr-card-title {
  color: #1070b9;
}
.cid-u0jmCJKMM6 .mbr-text {
  color: #767676;
}
.cid-u0jmCKd7r0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jmCKd7r0 .mbr-section-title {
  color: #1070b9;
}
.cid-u0jmCKd7r0 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0jmCKd7r0 .row {
  justify-content: space-between;
}
.cid-u0jmCKd7r0 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0jmCKd7r0 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0jmCKd7r0 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0jmCKd7r0 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0jmCKd7r0 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0jmCKd7r0 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0jmCKd7r0 .link-wrapper {
    justify-content: center;
  }
}
.cid-u0jmCKd7r0 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0jmCKd7r0 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0jmCKd7r0 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0jmCKd7r0 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0jmCKd7r0 .link,
.cid-u0jmCKd7r0 .link-icon {
  color: #000000;
}
.cid-u0jmCKd7r0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jmCKd7r0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jmCKd7r0 .mbr-text,
.cid-u0jmCKd7r0 .mbr-section-btn {
  color: #767676;
}
.cid-u0jmCKyGTo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0jmCKyGTo .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0jmCKyGTo .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0jmCKyGTo .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0jmCKyGTo .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0jmCKyGTo .box {
  right: 20%;
}
.cid-u0jmCKyGTo .text-box {
  right: 0;
}
.cid-u0jmCKyGTo .mbr-section-title,
.cid-u0jmCKyGTo .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0jmCKyGTo .text-box {
    display: none;
  }
  .cid-u0jmCKyGTo .mbr-section-title,
  .cid-u0jmCKyGTo .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0jmCKyGTo .box {
    display: none;
  }
  .cid-u0jmCKyGTo .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0jmCKyGTo .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0jmCKyGTo .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0jmCKyGTo .mbr-section-text {
  color: #767676;
}
.cid-u0jmCKyGTo .mbr-section-title {
  color: #1070b9;
}
.cid-u0jmCKYHDL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0jmCKYHDL .box {
  margin-bottom: 15px;
}
.cid-u0jmCKYHDL .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0jmCKYHDL .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0jmCKYHDL .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0jmCKYHDL .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0jmCKYHDL .mbr-media {
    max-height: 432px;
  }
}
.cid-u0jmCKYHDL .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0jmCKYHDL .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0jmCKYHDL .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0jmCKYHDL .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0jmCKYHDL .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0jmCKYHDL .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0jmCKYHDL .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0jmCKYHDL .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0jmCKYHDL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0jmCKYHDL .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0jmCKYHDL .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0jmCKYHDL .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0jmCKYHDL .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0jmCKYHDL .item-img {
  overflow: hidden;
}
.cid-u0jmCKYHDL .item-img img {
  width: 100%;
}
.cid-u0jmCKYHDL .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0jmCKYHDL .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0jmCKYHDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jmCKYHDL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jmCM70SB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0jmCM70SB .carousel {
    overflow: hidden;
  }
  .cid-u0jmCM70SB .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jmCM70SB .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0jmCM70SB .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0jmCM70SB .carousel,
.cid-u0jmCM70SB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0jmCM70SB .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0jmCM70SB .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0jmCM70SB .item-wrapper {
    height: 215px;
  }
}
.cid-u0jmCM70SB .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0jmCM70SB .carousel-caption {
  bottom: 40px;
}
.cid-u0jmCM70SB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0jmCM70SB .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0jmCM70SB .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0jmCM70SB .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0jmCM70SB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0jmCM70SB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0jmCM70SB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0jmCM70SB .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jmCM70SB .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0jmCM70SB .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jmCM70SB .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0jmCM70SB .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0jmCM70SB .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0jmCM70SB .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0jmCM70SB .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0jmCM70SB .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0jmCM70SB .soc-item::before,
.cid-u0jmCM70SB .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0jmCM70SB .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0jmCM70SB .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0jmCM70SB .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0jmCM70SB .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0jmCM70SB .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0jmCM70SB .text {
  color: #ddc499;
}
.cid-u0jmCM70SB .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0jmCMFLke {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0jmCMFLke .carousel {
    overflow: hidden;
  }
  .cid-u0jmCMFLke .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jmCMFLke .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0jmCMFLke #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0jmCMFLke #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0jmCMFLke .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0jmCMFLke .link-div {
  margin-left: 20px;
}
.cid-u0jmCMFLke .link-div h3 {
  margin-left: 4px;
}
.cid-u0jmCMFLke .mbr-card-title {
  color: #000e2f;
}
#custom-html-l3 {
  /* Type valid CSS here */
}
#custom-html-l3 .back-button {
  position: fixed;
}
.cid-u0jmCN2YVm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0jmCN2YVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jmCN2YVm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jmCN2YVm .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0jmCN2YVm .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0jmCN2YVm .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0jmCN2YVm .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0jmCN2YVm .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0jmCN2YVm .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jmCN2YVm .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0jmCN2YVm .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jmCN2YVm .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0jmCN2YVm .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0jmCN2YVm .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0jmCN2YVm .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0jmCN2YVm .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0jmCN2YVm .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0jmCN2YVm .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0jmCN2YVm .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0jmCN2YVm .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0jmCN2YVm .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0jmCN2YVm .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0jmCN2YVm .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0jmCN2YVm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0jmCN2YVm .soc-item {
    padding: 10px;
  }
}
.cid-u0jmCN2YVm .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0jmCN2YVm .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0jmCN2YVm .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0jmCN2YVm .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0jmCN2YVm .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0jmCN2YVm .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0jmCN2YVm .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0jmCN2YVm .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0jmCN2YVm .copyright {
    text-align: center !important;
  }
}
.cid-u0jmCN2YVm p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0jmCN2YVm .row {
    justify-content: flex-start !important;
  }
}
.cid-u0jmCN2YVm .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0jmCN2YVm .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0jmCN2YVm .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0jmCN2YVm .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0jmCN2YVm .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0jmCN2YVm .card-title {
  color: #ffffff;
}
.cid-u0jmCN2YVm P {
  color: #22a5e5;
}
.cid-u0joYZiHgR .navbar-dropdown {
  position: relative !important;
}
.cid-u0joYZiHgR .navbar-dropdown {
  position: absolute !important;
}
.cid-u0joYZiHgR nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0joYZiHgR .nav-item {
    margin: 0 !important;
  }
}
.cid-u0joYZiHgR .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-u0joYZiHgR .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0joYZiHgR .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0joYZiHgR .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0joYZiHgR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0joYZiHgR .nav-link {
  position: relative;
}
.cid-u0joYZiHgR .container {
  display: flex;
  margin: auto;
}
.cid-u0joYZiHgR .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0joYZiHgR .dropdown-menu,
.cid-u0joYZiHgR .navbar.opened {
  background: #000000 !important;
}
.cid-u0joYZiHgR .nav-item:focus,
.cid-u0joYZiHgR .nav-link:focus {
  outline: none;
}
.cid-u0joYZiHgR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0joYZiHgR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0joYZiHgR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0joYZiHgR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0joYZiHgR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0joYZiHgR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0joYZiHgR .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0joYZiHgR .navbar.opened {
  transition: all 0.3s;
}
.cid-u0joYZiHgR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0joYZiHgR .navbar .navbar-logo img {
  width: auto;
}
.cid-u0joYZiHgR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0joYZiHgR .navbar.collapsed {
  justify-content: center;
}
.cid-u0joYZiHgR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0joYZiHgR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0joYZiHgR .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0joYZiHgR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0joYZiHgR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0joYZiHgR .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-u0joYZiHgR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0joYZiHgR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0joYZiHgR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0joYZiHgR .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0joYZiHgR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0joYZiHgR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0joYZiHgR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0joYZiHgR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0joYZiHgR .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-u0joYZiHgR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0joYZiHgR .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0joYZiHgR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0joYZiHgR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0joYZiHgR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0joYZiHgR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0joYZiHgR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0joYZiHgR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0joYZiHgR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0joYZiHgR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0joYZiHgR .dropdown-item.active,
.cid-u0joYZiHgR .dropdown-item:active {
  background-color: transparent;
}
.cid-u0joYZiHgR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0joYZiHgR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0joYZiHgR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0joYZiHgR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0joYZiHgR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0joYZiHgR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0joYZiHgR ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0joYZiHgR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0joYZiHgR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0joYZiHgR button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0joYZiHgR button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0joYZiHgR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0joYZiHgR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0joYZiHgR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0joYZiHgR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0joYZiHgR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0joYZiHgR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0joYZiHgR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0joYZiHgR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0joYZiHgR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0joYZiHgR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0joYZiHgR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0joYZiHgR .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-u0joYZiHgR .navbar {
    height: 70px;
  }
  .cid-u0joYZiHgR .navbar.opened {
    height: auto;
  }
  .cid-u0joYZiHgR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0joYZV4Gj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0joYZV4Gj .link a {
  background-image: none !important;
}
.cid-u0joYZV4Gj .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0joYZV4Gj .date {
  margin-bottom: 6px;
}
.cid-u0joYZV4Gj .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0joYZV4Gj .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0joYZV4Gj a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0joYZV4Gj rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0joYZV4Gj .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0joYZV4Gj svg {
  margin-left: 15px;
}
.cid-u0joYZV4Gj path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0joYZV4Gj .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0joYZV4Gj .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0joYZV4Gj .row {
  justify-content: center;
}
.cid-u0joYZV4Gj .p,
.cid-u0joYZV4Gj .link {
  color: #767676;
}
.cid-u0joZ0mkkS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0joZ0mkkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0joZ0mkkS .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-u0joZ0mkkS .container {
    padding: 0 30px;
  }
}
.cid-u0joZ0mkkS .row {
  justify-content: center;
}
.cid-u0joZ0mkkS .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0joZ0mkkS .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0joZ0mkkS .card {
    margin-bottom: 30px;
  }
}
.cid-u0joZ0mkkS .card .card-wrapper {
  display: flex;
}
.cid-u0joZ0mkkS .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0joZ0mkkS .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0joZ0mkkS .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0joZ0mkkS .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0joZ0mkkS .mbr-section-title {
  color: #767676;
}
.cid-u0joZ0mkkS .mbr-number {
  color: #000000;
}
.cid-u0joZ0mkkS .mbr-card-title {
  color: #1070b9;
}
.cid-u0joZ0mkkS .mbr-text {
  color: #767676;
}
.cid-u0joZ0Ic4j {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0joZ0Ic4j .mbr-section-title {
  color: #1070b9;
}
.cid-u0joZ0Ic4j .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0joZ0Ic4j .row {
  justify-content: space-between;
}
.cid-u0joZ0Ic4j .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0joZ0Ic4j .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0joZ0Ic4j .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0joZ0Ic4j .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0joZ0Ic4j .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0joZ0Ic4j .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0joZ0Ic4j .link-wrapper {
    justify-content: center;
  }
}
.cid-u0joZ0Ic4j .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0joZ0Ic4j .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0joZ0Ic4j .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0joZ0Ic4j .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0joZ0Ic4j .link,
.cid-u0joZ0Ic4j .link-icon {
  color: #000000;
}
.cid-u0joZ0Ic4j .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0joZ0Ic4j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0joZ0Ic4j .mbr-text,
.cid-u0joZ0Ic4j .mbr-section-btn {
  color: #767676;
}
.cid-u0joZ15rbF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0joZ15rbF .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0joZ15rbF .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0joZ15rbF .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0joZ15rbF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0joZ15rbF .box {
  right: 20%;
}
.cid-u0joZ15rbF .text-box {
  right: 0;
}
.cid-u0joZ15rbF .mbr-section-title,
.cid-u0joZ15rbF .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0joZ15rbF .text-box {
    display: none;
  }
  .cid-u0joZ15rbF .mbr-section-title,
  .cid-u0joZ15rbF .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0joZ15rbF .box {
    display: none;
  }
  .cid-u0joZ15rbF .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0joZ15rbF .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0joZ15rbF .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0joZ15rbF .mbr-section-text {
  color: #767676;
}
.cid-u0joZ15rbF .mbr-section-title {
  color: #1070b9;
}
.cid-u0joZ1vkcy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0joZ1vkcy .box {
  margin-bottom: 15px;
}
.cid-u0joZ1vkcy .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0joZ1vkcy .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0joZ1vkcy .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0joZ1vkcy .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0joZ1vkcy .mbr-media {
    max-height: 432px;
  }
}
.cid-u0joZ1vkcy .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0joZ1vkcy .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0joZ1vkcy .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0joZ1vkcy .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0joZ1vkcy .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0joZ1vkcy .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0joZ1vkcy .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0joZ1vkcy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0joZ1vkcy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0joZ1vkcy .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0joZ1vkcy .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0joZ1vkcy .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0joZ1vkcy .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0joZ1vkcy .item-img {
  overflow: hidden;
}
.cid-u0joZ1vkcy .item-img img {
  width: 100%;
}
.cid-u0joZ1vkcy .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0joZ1vkcy .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0joZ1vkcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0joZ1vkcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0joZ2I7ss {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0joZ2I7ss .carousel {
    overflow: hidden;
  }
  .cid-u0joZ2I7ss .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0joZ2I7ss .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0joZ2I7ss .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0joZ2I7ss .carousel,
.cid-u0joZ2I7ss .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0joZ2I7ss .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0joZ2I7ss .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0joZ2I7ss .item-wrapper {
    height: 215px;
  }
}
.cid-u0joZ2I7ss .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0joZ2I7ss .carousel-caption {
  bottom: 40px;
}
.cid-u0joZ2I7ss .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0joZ2I7ss .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0joZ2I7ss .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0joZ2I7ss .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0joZ2I7ss .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0joZ2I7ss .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0joZ2I7ss .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0joZ2I7ss .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0joZ2I7ss .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0joZ2I7ss .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0joZ2I7ss .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0joZ2I7ss .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0joZ2I7ss .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0joZ2I7ss .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0joZ2I7ss .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0joZ2I7ss .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0joZ2I7ss .soc-item::before,
.cid-u0joZ2I7ss .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0joZ2I7ss .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0joZ2I7ss .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0joZ2I7ss .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0joZ2I7ss .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0joZ2I7ss .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0joZ2I7ss .text {
  color: #ddc499;
}
.cid-u0joZ2I7ss .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0joZ3ivmf {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0joZ3ivmf .carousel {
    overflow: hidden;
  }
  .cid-u0joZ3ivmf .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0joZ3ivmf .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0joZ3ivmf #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0joZ3ivmf #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0joZ3ivmf .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0joZ3ivmf .link-div {
  margin-left: 20px;
}
.cid-u0joZ3ivmf .link-div h3 {
  margin-left: 4px;
}
.cid-u0joZ3ivmf .mbr-card-title {
  color: #000e2f;
}
#custom-html-le {
  /* Type valid CSS here */
}
#custom-html-le .back-button {
  position: fixed;
}
.cid-u0joZ3GrFy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0joZ3GrFy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0joZ3GrFy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0joZ3GrFy .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0joZ3GrFy .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0joZ3GrFy .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0joZ3GrFy .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0joZ3GrFy .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0joZ3GrFy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0joZ3GrFy .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0joZ3GrFy .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0joZ3GrFy .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0joZ3GrFy .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0joZ3GrFy .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0joZ3GrFy .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0joZ3GrFy .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0joZ3GrFy .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0joZ3GrFy .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0joZ3GrFy .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0joZ3GrFy .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0joZ3GrFy .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0joZ3GrFy .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0joZ3GrFy .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0joZ3GrFy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0joZ3GrFy .soc-item {
    padding: 10px;
  }
}
.cid-u0joZ3GrFy .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0joZ3GrFy .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0joZ3GrFy .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0joZ3GrFy .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0joZ3GrFy .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0joZ3GrFy .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0joZ3GrFy .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0joZ3GrFy .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0joZ3GrFy .copyright {
    text-align: center !important;
  }
}
.cid-u0joZ3GrFy p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0joZ3GrFy .row {
    justify-content: flex-start !important;
  }
}
.cid-u0joZ3GrFy .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0joZ3GrFy .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0joZ3GrFy .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0joZ3GrFy .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0joZ3GrFy .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0joZ3GrFy .card-title {
  color: #ffffff;
}
.cid-u0joZ3GrFy P {
  color: #22a5e5;
}
.cid-tFKg3HxF8r .navbar-dropdown {
  position: relative !important;
}
.cid-tFKg3HxF8r .navbar-dropdown {
  position: absolute !important;
}
.cid-tFKg3HxF8r nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tFKg3HxF8r .nav-item {
    margin: 0 !important;
  }
}
.cid-tFKg3HxF8r .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-tFKg3HxF8r .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tFKg3HxF8r .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tFKg3HxF8r .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tFKg3HxF8r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFKg3HxF8r .nav-link {
  position: relative;
}
.cid-tFKg3HxF8r .container {
  display: flex;
  margin: auto;
}
.cid-tFKg3HxF8r .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFKg3HxF8r .dropdown-menu,
.cid-tFKg3HxF8r .navbar.opened {
  background: #000000 !important;
}
.cid-tFKg3HxF8r .nav-item:focus,
.cid-tFKg3HxF8r .nav-link:focus {
  outline: none;
}
.cid-tFKg3HxF8r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFKg3HxF8r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFKg3HxF8r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFKg3HxF8r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFKg3HxF8r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFKg3HxF8r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFKg3HxF8r .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tFKg3HxF8r .navbar.opened {
  transition: all 0.3s;
}
.cid-tFKg3HxF8r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFKg3HxF8r .navbar .navbar-logo img {
  width: auto;
}
.cid-tFKg3HxF8r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFKg3HxF8r .navbar.collapsed {
  justify-content: center;
}
.cid-tFKg3HxF8r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFKg3HxF8r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFKg3HxF8r .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFKg3HxF8r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFKg3HxF8r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFKg3HxF8r .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-tFKg3HxF8r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFKg3HxF8r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFKg3HxF8r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFKg3HxF8r .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tFKg3HxF8r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFKg3HxF8r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFKg3HxF8r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFKg3HxF8r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFKg3HxF8r .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-tFKg3HxF8r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFKg3HxF8r .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tFKg3HxF8r .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tFKg3HxF8r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFKg3HxF8r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFKg3HxF8r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFKg3HxF8r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFKg3HxF8r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFKg3HxF8r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFKg3HxF8r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFKg3HxF8r .dropdown-item.active,
.cid-tFKg3HxF8r .dropdown-item:active {
  background-color: transparent;
}
.cid-tFKg3HxF8r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFKg3HxF8r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFKg3HxF8r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFKg3HxF8r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tFKg3HxF8r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFKg3HxF8r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFKg3HxF8r ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tFKg3HxF8r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFKg3HxF8r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tFKg3HxF8r button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tFKg3HxF8r button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tFKg3HxF8r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFKg3HxF8r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFKg3HxF8r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg3HxF8r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFKg3HxF8r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFKg3HxF8r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg3HxF8r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFKg3HxF8r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFKg3HxF8r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFKg3HxF8r .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFKg3HxF8r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFKg3HxF8r .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-tFKg3HxF8r .navbar {
    height: 70px;
  }
  .cid-tFKg3HxF8r .navbar.opened {
    height: auto;
  }
  .cid-tFKg3HxF8r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFKg3I7ZeX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg3I7ZeX .link a {
  background-image: none !important;
}
.cid-tFKg3I7ZeX .item-wrapper {
  margin-bottom: 56px;
}
.cid-tFKg3I7ZeX .date {
  margin-bottom: 6px;
}
.cid-tFKg3I7ZeX .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tFKg3I7ZeX .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tFKg3I7ZeX a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tFKg3I7ZeX rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tFKg3I7ZeX .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tFKg3I7ZeX svg {
  margin-left: 15px;
}
.cid-tFKg3I7ZeX path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tFKg3I7ZeX .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tFKg3I7ZeX .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tFKg3I7ZeX .row {
  justify-content: center;
}
.cid-tFKg3I7ZeX .p,
.cid-tFKg3I7ZeX .link {
  color: #767676;
}
.cid-tFKg3IvTlp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tFKg3IvTlp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg3IvTlp .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-tFKg3IvTlp .container {
    padding: 0 30px;
  }
}
.cid-tFKg3IvTlp .row {
  justify-content: center;
}
.cid-tFKg3IvTlp .title-wrapper {
  margin-bottom: 55px;
}
.cid-tFKg3IvTlp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tFKg3IvTlp .card {
    margin-bottom: 30px;
  }
}
.cid-tFKg3IvTlp .card .card-wrapper {
  display: flex;
}
.cid-tFKg3IvTlp .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tFKg3IvTlp .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tFKg3IvTlp .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tFKg3IvTlp .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tFKg3IvTlp .mbr-section-title {
  color: #767676;
}
.cid-tFKg3IvTlp .mbr-number {
  color: #000000;
}
.cid-tFKg3IvTlp .mbr-card-title {
  color: #1070b9;
}
.cid-tFKg3IvTlp .mbr-text {
  color: #767676;
}
.cid-tFKg3J0TDK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tFKg3J0TDK .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg3J0TDK .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tFKg3J0TDK .row {
  justify-content: space-between;
}
.cid-tFKg3J0TDK .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tFKg3J0TDK .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tFKg3J0TDK .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tFKg3J0TDK .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tFKg3J0TDK .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tFKg3J0TDK .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tFKg3J0TDK .link-wrapper {
    justify-content: center;
  }
}
.cid-tFKg3J0TDK .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tFKg3J0TDK .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tFKg3J0TDK .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tFKg3J0TDK .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tFKg3J0TDK .link,
.cid-tFKg3J0TDK .link-icon {
  color: #000000;
}
.cid-tFKg3J0TDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg3J0TDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg3J0TDK .mbr-text,
.cid-tFKg3J0TDK .mbr-section-btn {
  color: #767676;
}
.cid-tFKg3Jqvkt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tFKg3Jqvkt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tFKg3Jqvkt .text-block {
  position: relative;
  z-index: 0;
}
.cid-tFKg3Jqvkt .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tFKg3Jqvkt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFKg3Jqvkt .box {
  right: 20%;
}
.cid-tFKg3Jqvkt .text-box {
  right: 0;
}
.cid-tFKg3Jqvkt .mbr-section-title,
.cid-tFKg3Jqvkt .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tFKg3Jqvkt .text-box {
    display: none;
  }
  .cid-tFKg3Jqvkt .mbr-section-title,
  .cid-tFKg3Jqvkt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tFKg3Jqvkt .box {
    display: none;
  }
  .cid-tFKg3Jqvkt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tFKg3Jqvkt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFKg3Jqvkt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tFKg3Jqvkt .mbr-section-text {
  color: #767676;
}
.cid-tFKg3Jqvkt .mbr-section-title {
  color: #1070b9;
}
.cid-tFKg3JTsYS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKg3JTsYS .box {
  margin-bottom: 15px;
}
.cid-tFKg3JTsYS .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKg3JTsYS .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKg3JTsYS .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKg3JTsYS .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKg3JTsYS .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKg3JTsYS .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKg3JTsYS .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKg3JTsYS .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKg3JTsYS .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKg3JTsYS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKg3JTsYS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKg3JTsYS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKg3JTsYS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKg3JTsYS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKg3JTsYS .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKg3JTsYS .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKg3JTsYS .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKg3JTsYS .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKg3JTsYS .item-img {
  overflow: hidden;
}
.cid-tFKg3JTsYS .item-img img {
  width: 100%;
}
.cid-tFKg3JTsYS .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKg3JTsYS .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKg3JTsYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg3JTsYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg3KL1EU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFKg3KL1EU .carousel {
    overflow: hidden;
  }
  .cid-tFKg3KL1EU .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tFKg3KL1EU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tFKg3KL1EU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tFKg3KL1EU .carousel,
.cid-tFKg3KL1EU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFKg3KL1EU .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tFKg3KL1EU .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tFKg3KL1EU .item-wrapper {
    height: 215px;
  }
}
.cid-tFKg3KL1EU .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tFKg3KL1EU .carousel-caption {
  bottom: 40px;
}
.cid-tFKg3KL1EU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tFKg3KL1EU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tFKg3KL1EU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tFKg3KL1EU .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tFKg3KL1EU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tFKg3KL1EU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFKg3KL1EU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFKg3KL1EU .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg3KL1EU .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tFKg3KL1EU .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tFKg3KL1EU .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tFKg3KL1EU .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tFKg3KL1EU .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tFKg3KL1EU .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFKg3KL1EU .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tFKg3KL1EU .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tFKg3KL1EU .soc-item::before,
.cid-tFKg3KL1EU .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tFKg3KL1EU .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tFKg3KL1EU .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tFKg3KL1EU .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tFKg3KL1EU .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tFKg3KL1EU .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tFKg3KL1EU .text {
  color: #ddc499;
}
.cid-tFKg3KL1EU .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB68g6SkP {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB68g6SkP .carousel {
    overflow: hidden;
  }
  .cid-tGB68g6SkP .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB68g6SkP .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB68g6SkP #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB68g6SkP #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB68g6SkP .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB68g6SkP .link-div {
  margin-left: 20px;
}
.cid-tGB68g6SkP .link-div h3 {
  margin-left: 4px;
}
.cid-tGB68g6SkP .mbr-card-title {
  color: #000e2f;
}
#custom-html-74 {
  /* Type valid CSS here */
}
#custom-html-74 .back-button {
  position: fixed;
}
.cid-tFKg3LqcyM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tFKg3LqcyM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKg3LqcyM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKg3LqcyM .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tFKg3LqcyM .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tFKg3LqcyM .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tFKg3LqcyM .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tFKg3LqcyM .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tFKg3LqcyM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg3LqcyM .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tFKg3LqcyM .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tFKg3LqcyM .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tFKg3LqcyM .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tFKg3LqcyM .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tFKg3LqcyM .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tFKg3LqcyM .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tFKg3LqcyM .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tFKg3LqcyM .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tFKg3LqcyM .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tFKg3LqcyM .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tFKg3LqcyM .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tFKg3LqcyM .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tFKg3LqcyM .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tFKg3LqcyM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tFKg3LqcyM .soc-item {
    padding: 10px;
  }
}
.cid-tFKg3LqcyM .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tFKg3LqcyM .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tFKg3LqcyM .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tFKg3LqcyM .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tFKg3LqcyM .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tFKg3LqcyM .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg3LqcyM .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tFKg3LqcyM .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tFKg3LqcyM .copyright {
    text-align: center !important;
  }
}
.cid-tFKg3LqcyM p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tFKg3LqcyM .row {
    justify-content: flex-start !important;
  }
}
.cid-tFKg3LqcyM .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tFKg3LqcyM .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tFKg3LqcyM .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tFKg3LqcyM .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tFKg3LqcyM .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tFKg3LqcyM .card-title {
  color: #ffffff;
}
.cid-tFKg3LqcyM P {
  color: #22a5e5;
}
.cid-tGp86Pn2EN .navbar-dropdown {
  position: relative !important;
}
.cid-tGp86Pn2EN .navbar-dropdown {
  position: absolute !important;
}
.cid-tGp86Pn2EN nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGp86Pn2EN .nav-item {
    margin: 0 !important;
  }
}
.cid-tGp86Pn2EN .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-tGp86Pn2EN .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGp86Pn2EN .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGp86Pn2EN .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGp86Pn2EN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGp86Pn2EN .nav-link {
  position: relative;
}
.cid-tGp86Pn2EN .container {
  display: flex;
  margin: auto;
}
.cid-tGp86Pn2EN .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGp86Pn2EN .dropdown-menu,
.cid-tGp86Pn2EN .navbar.opened {
  background: #000000 !important;
}
.cid-tGp86Pn2EN .nav-item:focus,
.cid-tGp86Pn2EN .nav-link:focus {
  outline: none;
}
.cid-tGp86Pn2EN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGp86Pn2EN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGp86Pn2EN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGp86Pn2EN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGp86Pn2EN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGp86Pn2EN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGp86Pn2EN .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGp86Pn2EN .navbar.opened {
  transition: all 0.3s;
}
.cid-tGp86Pn2EN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGp86Pn2EN .navbar .navbar-logo img {
  width: auto;
}
.cid-tGp86Pn2EN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGp86Pn2EN .navbar.collapsed {
  justify-content: center;
}
.cid-tGp86Pn2EN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGp86Pn2EN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGp86Pn2EN .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGp86Pn2EN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGp86Pn2EN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGp86Pn2EN .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-tGp86Pn2EN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGp86Pn2EN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGp86Pn2EN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGp86Pn2EN .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGp86Pn2EN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGp86Pn2EN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGp86Pn2EN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGp86Pn2EN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGp86Pn2EN .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-tGp86Pn2EN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGp86Pn2EN .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGp86Pn2EN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGp86Pn2EN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGp86Pn2EN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGp86Pn2EN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGp86Pn2EN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGp86Pn2EN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGp86Pn2EN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGp86Pn2EN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGp86Pn2EN .dropdown-item.active,
.cid-tGp86Pn2EN .dropdown-item:active {
  background-color: transparent;
}
.cid-tGp86Pn2EN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGp86Pn2EN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGp86Pn2EN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGp86Pn2EN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGp86Pn2EN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGp86Pn2EN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGp86Pn2EN ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGp86Pn2EN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGp86Pn2EN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGp86Pn2EN button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGp86Pn2EN button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGp86Pn2EN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGp86Pn2EN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGp86Pn2EN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp86Pn2EN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGp86Pn2EN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGp86Pn2EN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp86Pn2EN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGp86Pn2EN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGp86Pn2EN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGp86Pn2EN .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGp86Pn2EN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGp86Pn2EN .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-tGp86Pn2EN .navbar {
    height: 70px;
  }
  .cid-tGp86Pn2EN .navbar.opened {
    height: auto;
  }
  .cid-tGp86Pn2EN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGp86PPVrt {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGp86PPVrt .link a {
  background-image: none !important;
}
.cid-tGp86PPVrt .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGp86PPVrt .date {
  margin-bottom: 6px;
}
.cid-tGp86PPVrt .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGp86PPVrt .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGp86PPVrt a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGp86PPVrt rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGp86PPVrt .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGp86PPVrt svg {
  margin-left: 15px;
}
.cid-tGp86PPVrt path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGp86PPVrt .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGp86PPVrt .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGp86PPVrt .row {
  justify-content: center;
}
.cid-tGp86PPVrt .p,
.cid-tGp86PPVrt .link {
  color: #767676;
}
.cid-tGp86Q8cwI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGp86Q8cwI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGp86Q8cwI .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-tGp86Q8cwI .container {
    padding: 0 30px;
  }
}
.cid-tGp86Q8cwI .row {
  justify-content: center;
}
.cid-tGp86Q8cwI .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGp86Q8cwI .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGp86Q8cwI .card {
    margin-bottom: 30px;
  }
}
.cid-tGp86Q8cwI .card .card-wrapper {
  display: flex;
}
.cid-tGp86Q8cwI .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGp86Q8cwI .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGp86Q8cwI .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGp86Q8cwI .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGp86Q8cwI .mbr-section-title {
  color: #767676;
}
.cid-tGp86Q8cwI .mbr-number {
  color: #000000;
}
.cid-tGp86Q8cwI .mbr-card-title {
  color: #1070b9;
}
.cid-tGp86Q8cwI .mbr-text {
  color: #767676;
}
.cid-tGp86QvVdC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGp86QvVdC .mbr-section-title {
  color: #1070b9;
}
.cid-tGp86QvVdC .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGp86QvVdC .row {
  justify-content: space-between;
}
.cid-tGp86QvVdC .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGp86QvVdC .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGp86QvVdC .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGp86QvVdC .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGp86QvVdC .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGp86QvVdC .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGp86QvVdC .link-wrapper {
    justify-content: center;
  }
}
.cid-tGp86QvVdC .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGp86QvVdC .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGp86QvVdC .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGp86QvVdC .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGp86QvVdC .link,
.cid-tGp86QvVdC .link-icon {
  color: #000000;
}
.cid-tGp86QvVdC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGp86QvVdC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGp86QvVdC .mbr-text,
.cid-tGp86QvVdC .mbr-section-btn {
  color: #767676;
}
.cid-tGp86QPFV7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGp86QPFV7 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGp86QPFV7 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGp86QPFV7 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGp86QPFV7 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGp86QPFV7 .box {
  right: 20%;
}
.cid-tGp86QPFV7 .text-box {
  right: 0;
}
.cid-tGp86QPFV7 .mbr-section-title,
.cid-tGp86QPFV7 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGp86QPFV7 .text-box {
    display: none;
  }
  .cid-tGp86QPFV7 .mbr-section-title,
  .cid-tGp86QPFV7 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGp86QPFV7 .box {
    display: none;
  }
  .cid-tGp86QPFV7 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGp86QPFV7 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGp86QPFV7 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGp86QPFV7 .mbr-section-text {
  color: #767676;
}
.cid-tGp86QPFV7 .mbr-section-title {
  color: #1070b9;
}
.cid-tGp86RbgT0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGp86RbgT0 .box {
  margin-bottom: 15px;
}
.cid-tGp86RbgT0 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGp86RbgT0 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGp86RbgT0 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGp86RbgT0 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGp86RbgT0 .mbr-media {
    max-height: 432px;
  }
}
.cid-tGp86RbgT0 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGp86RbgT0 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGp86RbgT0 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGp86RbgT0 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGp86RbgT0 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGp86RbgT0 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGp86RbgT0 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGp86RbgT0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGp86RbgT0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGp86RbgT0 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGp86RbgT0 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGp86RbgT0 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGp86RbgT0 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGp86RbgT0 .item-img {
  overflow: hidden;
}
.cid-tGp86RbgT0 .item-img img {
  width: 100%;
}
.cid-tGp86RbgT0 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGp86RbgT0 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGp86RbgT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGp86RbgT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGp86Scj7k {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tGp86Scj7k .carousel {
    overflow: hidden;
  }
  .cid-tGp86Scj7k .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGp86Scj7k .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tGp86Scj7k .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tGp86Scj7k .carousel,
.cid-tGp86Scj7k .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tGp86Scj7k .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGp86Scj7k .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tGp86Scj7k .item-wrapper {
    height: 215px;
  }
}
.cid-tGp86Scj7k .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tGp86Scj7k .carousel-caption {
  bottom: 40px;
}
.cid-tGp86Scj7k .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tGp86Scj7k .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tGp86Scj7k .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tGp86Scj7k .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tGp86Scj7k .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tGp86Scj7k .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGp86Scj7k .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGp86Scj7k .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGp86Scj7k .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tGp86Scj7k .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGp86Scj7k .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tGp86Scj7k .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tGp86Scj7k .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tGp86Scj7k .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGp86Scj7k .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tGp86Scj7k .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tGp86Scj7k .soc-item::before,
.cid-tGp86Scj7k .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tGp86Scj7k .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tGp86Scj7k .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tGp86Scj7k .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tGp86Scj7k .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tGp86Scj7k .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tGp86Scj7k .text {
  color: #ddc499;
}
.cid-tGp86Scj7k .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGBdlhev2Y {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBdlhev2Y .carousel {
    overflow: hidden;
  }
  .cid-tGBdlhev2Y .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBdlhev2Y .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBdlhev2Y #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBdlhev2Y #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBdlhev2Y .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBdlhev2Y .link-div {
  margin-left: 20px;
}
.cid-tGBdlhev2Y .link-div h3 {
  margin-left: 4px;
}
.cid-tGBdlhev2Y .mbr-card-title {
  color: #000e2f;
}
#custom-html-gb {
  /* Type valid CSS here */
}
#custom-html-gb .back-button {
  position: fixed;
}
.cid-tGp86SWuoR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGp86SWuoR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGp86SWuoR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGp86SWuoR .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGp86SWuoR .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGp86SWuoR .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGp86SWuoR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGp86SWuoR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGp86SWuoR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGp86SWuoR .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGp86SWuoR .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGp86SWuoR .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGp86SWuoR .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGp86SWuoR .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGp86SWuoR .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGp86SWuoR .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGp86SWuoR .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGp86SWuoR .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGp86SWuoR .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGp86SWuoR .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGp86SWuoR .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGp86SWuoR .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGp86SWuoR .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGp86SWuoR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGp86SWuoR .soc-item {
    padding: 10px;
  }
}
.cid-tGp86SWuoR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGp86SWuoR .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGp86SWuoR .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGp86SWuoR .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGp86SWuoR .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGp86SWuoR .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGp86SWuoR .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGp86SWuoR .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGp86SWuoR .copyright {
    text-align: center !important;
  }
}
.cid-tGp86SWuoR p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGp86SWuoR .row {
    justify-content: flex-start !important;
  }
}
.cid-tGp86SWuoR .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGp86SWuoR .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGp86SWuoR .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGp86SWuoR .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGp86SWuoR .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGp86SWuoR .card-title {
  color: #ffffff;
}
.cid-tGp86SWuoR P {
  color: #22a5e5;
}
.cid-u2Lji5UMEt .navbar-dropdown {
  position: relative !important;
}
.cid-u2Lji5UMEt .navbar-dropdown {
  position: absolute !important;
}
.cid-u2Lji5UMEt nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u2Lji5UMEt .nav-item {
    margin: 0 !important;
  }
}
.cid-u2Lji5UMEt .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-u2Lji5UMEt .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u2Lji5UMEt .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u2Lji5UMEt .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u2Lji5UMEt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2Lji5UMEt .nav-link {
  position: relative;
}
.cid-u2Lji5UMEt .container {
  display: flex;
  margin: auto;
}
.cid-u2Lji5UMEt .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2Lji5UMEt .dropdown-menu,
.cid-u2Lji5UMEt .navbar.opened {
  background: #000000 !important;
}
.cid-u2Lji5UMEt .nav-item:focus,
.cid-u2Lji5UMEt .nav-link:focus {
  outline: none;
}
.cid-u2Lji5UMEt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2Lji5UMEt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2Lji5UMEt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2Lji5UMEt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2Lji5UMEt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2Lji5UMEt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2Lji5UMEt .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u2Lji5UMEt .navbar.opened {
  transition: all 0.3s;
}
.cid-u2Lji5UMEt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2Lji5UMEt .navbar .navbar-logo img {
  width: auto;
}
.cid-u2Lji5UMEt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2Lji5UMEt .navbar.collapsed {
  justify-content: center;
}
.cid-u2Lji5UMEt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2Lji5UMEt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2Lji5UMEt .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u2Lji5UMEt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2Lji5UMEt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2Lji5UMEt .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-u2Lji5UMEt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2Lji5UMEt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2Lji5UMEt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2Lji5UMEt .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u2Lji5UMEt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2Lji5UMEt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2Lji5UMEt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2Lji5UMEt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2Lji5UMEt .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-u2Lji5UMEt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2Lji5UMEt .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u2Lji5UMEt .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u2Lji5UMEt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2Lji5UMEt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2Lji5UMEt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2Lji5UMEt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u2Lji5UMEt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2Lji5UMEt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2Lji5UMEt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2Lji5UMEt .dropdown-item.active,
.cid-u2Lji5UMEt .dropdown-item:active {
  background-color: transparent;
}
.cid-u2Lji5UMEt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2Lji5UMEt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2Lji5UMEt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2Lji5UMEt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u2Lji5UMEt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2Lji5UMEt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2Lji5UMEt ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u2Lji5UMEt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2Lji5UMEt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u2Lji5UMEt button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u2Lji5UMEt button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u2Lji5UMEt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u2Lji5UMEt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2Lji5UMEt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2Lji5UMEt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2Lji5UMEt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2Lji5UMEt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2Lji5UMEt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2Lji5UMEt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2Lji5UMEt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2Lji5UMEt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u2Lji5UMEt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2Lji5UMEt .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-u2Lji5UMEt .navbar {
    height: 70px;
  }
  .cid-u2Lji5UMEt .navbar.opened {
    height: auto;
  }
  .cid-u2Lji5UMEt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2Lji6m1vr {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2Lji6m1vr .link a {
  background-image: none !important;
}
.cid-u2Lji6m1vr .item-wrapper {
  margin-bottom: 56px;
}
.cid-u2Lji6m1vr .date {
  margin-bottom: 6px;
}
.cid-u2Lji6m1vr .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u2Lji6m1vr .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u2Lji6m1vr a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u2Lji6m1vr rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u2Lji6m1vr .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u2Lji6m1vr svg {
  margin-left: 15px;
}
.cid-u2Lji6m1vr path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u2Lji6m1vr .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u2Lji6m1vr .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u2Lji6m1vr .row {
  justify-content: center;
}
.cid-u2Lji6m1vr .p,
.cid-u2Lji6m1vr .link {
  color: #767676;
}
.cid-u2Lji6GQ9q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u2Lji6GQ9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2Lji6GQ9q .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-u2Lji6GQ9q .container {
    padding: 0 30px;
  }
}
.cid-u2Lji6GQ9q .row {
  justify-content: center;
}
.cid-u2Lji6GQ9q .title-wrapper {
  margin-bottom: 55px;
}
.cid-u2Lji6GQ9q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u2Lji6GQ9q .card {
    margin-bottom: 30px;
  }
}
.cid-u2Lji6GQ9q .card .card-wrapper {
  display: flex;
}
.cid-u2Lji6GQ9q .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u2Lji6GQ9q .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u2Lji6GQ9q .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u2Lji6GQ9q .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u2Lji6GQ9q .mbr-section-title {
  color: #767676;
}
.cid-u2Lji6GQ9q .mbr-number {
  color: #000000;
}
.cid-u2Lji6GQ9q .mbr-card-title {
  color: #1070b9;
}
.cid-u2Lji6GQ9q .mbr-text {
  color: #767676;
}
.cid-u2Lji70fyo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2Lji70fyo .mbr-section-title {
  color: #1070b9;
}
.cid-u2Lji70fyo .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u2Lji70fyo .row {
  justify-content: space-between;
}
.cid-u2Lji70fyo .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u2Lji70fyo .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u2Lji70fyo .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u2Lji70fyo .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u2Lji70fyo .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u2Lji70fyo .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u2Lji70fyo .link-wrapper {
    justify-content: center;
  }
}
.cid-u2Lji70fyo .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u2Lji70fyo .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u2Lji70fyo .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u2Lji70fyo .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u2Lji70fyo .link,
.cid-u2Lji70fyo .link-icon {
  color: #000000;
}
.cid-u2Lji70fyo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2Lji70fyo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2Lji70fyo .mbr-text,
.cid-u2Lji70fyo .mbr-section-btn {
  color: #767676;
}
.cid-u2Lji7KkMw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u2Lji7KkMw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u2Lji7KkMw .text-block {
  position: relative;
  z-index: 0;
}
.cid-u2Lji7KkMw .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u2Lji7KkMw .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u2Lji7KkMw .box {
  right: 20%;
}
.cid-u2Lji7KkMw .text-box {
  right: 0;
}
.cid-u2Lji7KkMw .mbr-section-title,
.cid-u2Lji7KkMw .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u2Lji7KkMw .text-box {
    display: none;
  }
  .cid-u2Lji7KkMw .mbr-section-title,
  .cid-u2Lji7KkMw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u2Lji7KkMw .box {
    display: none;
  }
  .cid-u2Lji7KkMw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u2Lji7KkMw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2Lji7KkMw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u2Lji7KkMw .mbr-section-text {
  color: #767676;
}
.cid-u2Lji7KkMw .mbr-section-title {
  color: #1070b9;
}
.cid-u2Lji8ry1C {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2Lji8ry1C .box {
  margin-bottom: 15px;
}
.cid-u2Lji8ry1C .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u2Lji8ry1C .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u2Lji8ry1C .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u2Lji8ry1C .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u2Lji8ry1C .mbr-media {
    max-height: 432px;
  }
}
.cid-u2Lji8ry1C .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u2Lji8ry1C .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u2Lji8ry1C .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u2Lji8ry1C .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u2Lji8ry1C .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u2Lji8ry1C .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u2Lji8ry1C .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u2Lji8ry1C .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2Lji8ry1C .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2Lji8ry1C .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u2Lji8ry1C .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u2Lji8ry1C .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u2Lji8ry1C .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u2Lji8ry1C .item-img {
  overflow: hidden;
}
.cid-u2Lji8ry1C .item-img img {
  width: 100%;
}
.cid-u2Lji8ry1C .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u2Lji8ry1C .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u2Lji8ry1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2Lji8ry1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2Lji98H36 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u2Lji98H36 .carousel {
    overflow: hidden;
  }
  .cid-u2Lji98H36 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u2Lji98H36 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u2Lji98H36 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u2Lji98H36 .carousel,
.cid-u2Lji98H36 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u2Lji98H36 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u2Lji98H36 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u2Lji98H36 .item-wrapper {
    height: 215px;
  }
}
.cid-u2Lji98H36 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u2Lji98H36 .carousel-caption {
  bottom: 40px;
}
.cid-u2Lji98H36 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u2Lji98H36 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u2Lji98H36 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u2Lji98H36 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u2Lji98H36 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u2Lji98H36 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2Lji98H36 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2Lji98H36 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u2Lji98H36 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u2Lji98H36 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u2Lji98H36 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u2Lji98H36 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u2Lji98H36 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u2Lji98H36 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2Lji98H36 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u2Lji98H36 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u2Lji98H36 .soc-item::before,
.cid-u2Lji98H36 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u2Lji98H36 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u2Lji98H36 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u2Lji98H36 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u2Lji98H36 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u2Lji98H36 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u2Lji98H36 .text {
  color: #ddc499;
}
.cid-u2Lji98H36 .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-n6 {
  /* Type valid CSS here */
}
#custom-html-n6 .back-button {
  position: fixed;
}
.cid-u2Ljia1zJL {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u2Ljia1zJL .carousel {
    overflow: hidden;
  }
  .cid-u2Ljia1zJL .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u2Ljia1zJL .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u2Ljia1zJL #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u2Ljia1zJL #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u2Ljia1zJL .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u2Ljia1zJL .link-div {
  margin-left: 20px;
}
.cid-u2Ljia1zJL .link-div h3 {
  margin-left: 4px;
}
.cid-u2Ljia1zJL .mbr-card-title {
  color: #000e2f;
}
.cid-u2LjiaDF2i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u2LjiaDF2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2LjiaDF2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2LjiaDF2i .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2LjiaDF2i .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u2LjiaDF2i .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u2LjiaDF2i .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u2LjiaDF2i .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u2LjiaDF2i .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u2LjiaDF2i .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u2LjiaDF2i .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u2LjiaDF2i .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u2LjiaDF2i .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u2LjiaDF2i .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u2LjiaDF2i .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u2LjiaDF2i .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u2LjiaDF2i .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u2LjiaDF2i .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u2LjiaDF2i .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u2LjiaDF2i .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u2LjiaDF2i .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u2LjiaDF2i .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u2LjiaDF2i .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u2LjiaDF2i .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u2LjiaDF2i .soc-item {
    padding: 10px;
  }
}
.cid-u2LjiaDF2i .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u2LjiaDF2i .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u2LjiaDF2i .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u2LjiaDF2i .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u2LjiaDF2i .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u2LjiaDF2i .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u2LjiaDF2i .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u2LjiaDF2i .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u2LjiaDF2i .copyright {
    text-align: center !important;
  }
}
.cid-u2LjiaDF2i p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u2LjiaDF2i .row {
    justify-content: flex-start !important;
  }
}
.cid-u2LjiaDF2i .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u2LjiaDF2i .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u2LjiaDF2i .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u2LjiaDF2i .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u2LjiaDF2i .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u2LjiaDF2i .card-title {
  color: #ffffff;
}
.cid-u2LjiaDF2i P {
  color: #22a5e5;
}
.cid-tG0EX9cKT7 .navbar-dropdown {
  position: relative !important;
}
.cid-tG0EX9cKT7 .navbar-dropdown {
  position: absolute !important;
}
.cid-tG0EX9cKT7 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tG0EX9cKT7 .nav-item {
    margin: 0 !important;
  }
}
.cid-tG0EX9cKT7 .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-tG0EX9cKT7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tG0EX9cKT7 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tG0EX9cKT7 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tG0EX9cKT7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG0EX9cKT7 .nav-link {
  position: relative;
}
.cid-tG0EX9cKT7 .container {
  display: flex;
  margin: auto;
}
.cid-tG0EX9cKT7 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG0EX9cKT7 .dropdown-menu,
.cid-tG0EX9cKT7 .navbar.opened {
  background: #000000 !important;
}
.cid-tG0EX9cKT7 .nav-item:focus,
.cid-tG0EX9cKT7 .nav-link:focus {
  outline: none;
}
.cid-tG0EX9cKT7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG0EX9cKT7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG0EX9cKT7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG0EX9cKT7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG0EX9cKT7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG0EX9cKT7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG0EX9cKT7 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tG0EX9cKT7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tG0EX9cKT7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG0EX9cKT7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tG0EX9cKT7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG0EX9cKT7 .navbar.collapsed {
  justify-content: center;
}
.cid-tG0EX9cKT7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG0EX9cKT7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG0EX9cKT7 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG0EX9cKT7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG0EX9cKT7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG0EX9cKT7 .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-tG0EX9cKT7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG0EX9cKT7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG0EX9cKT7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG0EX9cKT7 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tG0EX9cKT7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG0EX9cKT7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG0EX9cKT7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG0EX9cKT7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG0EX9cKT7 .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-tG0EX9cKT7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG0EX9cKT7 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tG0EX9cKT7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tG0EX9cKT7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG0EX9cKT7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG0EX9cKT7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG0EX9cKT7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tG0EX9cKT7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tG0EX9cKT7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG0EX9cKT7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG0EX9cKT7 .dropdown-item.active,
.cid-tG0EX9cKT7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tG0EX9cKT7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG0EX9cKT7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG0EX9cKT7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG0EX9cKT7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tG0EX9cKT7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG0EX9cKT7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG0EX9cKT7 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tG0EX9cKT7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG0EX9cKT7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tG0EX9cKT7 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tG0EX9cKT7 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tG0EX9cKT7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tG0EX9cKT7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG0EX9cKT7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0EX9cKT7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG0EX9cKT7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG0EX9cKT7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0EX9cKT7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG0EX9cKT7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG0EX9cKT7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG0EX9cKT7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tG0EX9cKT7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG0EX9cKT7 .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-tG0EX9cKT7 .navbar {
    height: 70px;
  }
  .cid-tG0EX9cKT7 .navbar.opened {
    height: auto;
  }
  .cid-tG0EX9cKT7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG0EX9HBx7 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0EX9HBx7 .link a {
  background-image: none !important;
}
.cid-tG0EX9HBx7 .item-wrapper {
  margin-bottom: 56px;
}
.cid-tG0EX9HBx7 .date {
  margin-bottom: 6px;
}
.cid-tG0EX9HBx7 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tG0EX9HBx7 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tG0EX9HBx7 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tG0EX9HBx7 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tG0EX9HBx7 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tG0EX9HBx7 svg {
  margin-left: 15px;
}
.cid-tG0EX9HBx7 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tG0EX9HBx7 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tG0EX9HBx7 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tG0EX9HBx7 .row {
  justify-content: center;
}
.cid-tG0EX9HBx7 .p,
.cid-tG0EX9HBx7 .link {
  color: #767676;
}
.cid-tG0EXa0JuN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tG0EXa0JuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0EXa0JuN .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-tG0EXa0JuN .container {
    padding: 0 30px;
  }
}
.cid-tG0EXa0JuN .row {
  justify-content: center;
}
.cid-tG0EXa0JuN .title-wrapper {
  margin-bottom: 55px;
}
.cid-tG0EXa0JuN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tG0EXa0JuN .card {
    margin-bottom: 30px;
  }
}
.cid-tG0EXa0JuN .card .card-wrapper {
  display: flex;
}
.cid-tG0EXa0JuN .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tG0EXa0JuN .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tG0EXa0JuN .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tG0EXa0JuN .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tG0EXa0JuN .mbr-section-title {
  color: #767676;
}
.cid-tG0EXa0JuN .mbr-number {
  color: #000000;
}
.cid-tG0EXa0JuN .mbr-card-title {
  color: #1070b9;
}
.cid-tG0EXa0JuN .mbr-text {
  color: #767676;
}
.cid-tG0EXaoZgL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tG0EXaoZgL .mbr-section-title {
  color: #1070b9;
}
.cid-tG0EXaoZgL .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tG0EXaoZgL .row {
  justify-content: space-between;
}
.cid-tG0EXaoZgL .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tG0EXaoZgL .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tG0EXaoZgL .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tG0EXaoZgL .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tG0EXaoZgL .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tG0EXaoZgL .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tG0EXaoZgL .link-wrapper {
    justify-content: center;
  }
}
.cid-tG0EXaoZgL .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tG0EXaoZgL .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tG0EXaoZgL .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tG0EXaoZgL .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tG0EXaoZgL .link,
.cid-tG0EXaoZgL .link-icon {
  color: #000000;
}
.cid-tG0EXaoZgL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0EXaoZgL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0EXaoZgL .mbr-text,
.cid-tG0EXaoZgL .mbr-section-btn {
  color: #767676;
}
.cid-tG0EXaLF2A {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tG0EXaLF2A .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tG0EXaLF2A .text-block {
  position: relative;
  z-index: 0;
}
.cid-tG0EXaLF2A .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tG0EXaLF2A .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tG0EXaLF2A .box {
  right: 20%;
}
.cid-tG0EXaLF2A .text-box {
  right: 0;
}
.cid-tG0EXaLF2A .mbr-section-title,
.cid-tG0EXaLF2A .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tG0EXaLF2A .text-box {
    display: none;
  }
  .cid-tG0EXaLF2A .mbr-section-title,
  .cid-tG0EXaLF2A .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tG0EXaLF2A .box {
    display: none;
  }
  .cid-tG0EXaLF2A .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tG0EXaLF2A .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tG0EXaLF2A .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tG0EXaLF2A .mbr-section-text {
  color: #767676;
}
.cid-tG0EXaLF2A .mbr-section-title {
  color: #1070b9;
}
.cid-tG0EXbvsc3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG0EXbvsc3 .carousel {
    overflow: hidden;
  }
  .cid-tG0EXbvsc3 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tG0EXbvsc3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tG0EXbvsc3 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tG0EXbvsc3 .carousel,
.cid-tG0EXbvsc3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tG0EXbvsc3 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tG0EXbvsc3 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tG0EXbvsc3 .item-wrapper {
    height: 215px;
  }
}
.cid-tG0EXbvsc3 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tG0EXbvsc3 .carousel-caption {
  bottom: 40px;
}
.cid-tG0EXbvsc3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tG0EXbvsc3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tG0EXbvsc3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tG0EXbvsc3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tG0EXbvsc3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tG0EXbvsc3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tG0EXbvsc3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tG0EXbvsc3 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0EXbvsc3 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tG0EXbvsc3 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tG0EXbvsc3 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tG0EXbvsc3 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tG0EXbvsc3 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tG0EXbvsc3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tG0EXbvsc3 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tG0EXbvsc3 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tG0EXbvsc3 .soc-item::before,
.cid-tG0EXbvsc3 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tG0EXbvsc3 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tG0EXbvsc3 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tG0EXbvsc3 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tG0EXbvsc3 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tG0EXbvsc3 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tG0EXbvsc3 .text {
  color: #ddc499;
}
.cid-tG0EXbvsc3 .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-ea {
  /* Type valid CSS here */
}
#custom-html-ea .back-button {
  position: fixed;
}
.cid-tGBd1sKP7U {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBd1sKP7U .carousel {
    overflow: hidden;
  }
  .cid-tGBd1sKP7U .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBd1sKP7U .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBd1sKP7U #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBd1sKP7U #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBd1sKP7U .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBd1sKP7U .link-div {
  margin-left: 20px;
}
.cid-tGBd1sKP7U .link-div h3 {
  margin-left: 4px;
}
.cid-tGBd1sKP7U .mbr-card-title {
  color: #000e2f;
}
.cid-tG0EXcbGox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tG0EXcbGox .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0EXcbGox .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0EXcbGox .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tG0EXcbGox .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tG0EXcbGox .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tG0EXcbGox .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tG0EXcbGox .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tG0EXcbGox .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0EXcbGox .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tG0EXcbGox .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tG0EXcbGox .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tG0EXcbGox .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tG0EXcbGox .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tG0EXcbGox .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tG0EXcbGox .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tG0EXcbGox .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tG0EXcbGox .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tG0EXcbGox .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tG0EXcbGox .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tG0EXcbGox .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tG0EXcbGox .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tG0EXcbGox .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tG0EXcbGox .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tG0EXcbGox .soc-item {
    padding: 10px;
  }
}
.cid-tG0EXcbGox .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tG0EXcbGox .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tG0EXcbGox .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tG0EXcbGox .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tG0EXcbGox .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tG0EXcbGox .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tG0EXcbGox .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tG0EXcbGox .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG0EXcbGox .copyright {
    text-align: center !important;
  }
}
.cid-tG0EXcbGox p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tG0EXcbGox .row {
    justify-content: flex-start !important;
  }
}
.cid-tG0EXcbGox .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tG0EXcbGox .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tG0EXcbGox .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tG0EXcbGox .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tG0EXcbGox .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tG0EXcbGox .card-title {
  color: #ffffff;
}
.cid-tG0EXcbGox P {
  color: #22a5e5;
}
.cid-u0jm3JtV5E .navbar-dropdown {
  position: relative !important;
}
.cid-u0jm3JtV5E .navbar-dropdown {
  position: absolute !important;
}
.cid-u0jm3JtV5E nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0jm3JtV5E .nav-item {
    margin: 0 !important;
  }
}
.cid-u0jm3JtV5E .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-u0jm3JtV5E .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0jm3JtV5E .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0jm3JtV5E .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0jm3JtV5E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0jm3JtV5E .nav-link {
  position: relative;
}
.cid-u0jm3JtV5E .container {
  display: flex;
  margin: auto;
}
.cid-u0jm3JtV5E .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0jm3JtV5E .dropdown-menu,
.cid-u0jm3JtV5E .navbar.opened {
  background: #000000 !important;
}
.cid-u0jm3JtV5E .nav-item:focus,
.cid-u0jm3JtV5E .nav-link:focus {
  outline: none;
}
.cid-u0jm3JtV5E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0jm3JtV5E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0jm3JtV5E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0jm3JtV5E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0jm3JtV5E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0jm3JtV5E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0jm3JtV5E .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0jm3JtV5E .navbar.opened {
  transition: all 0.3s;
}
.cid-u0jm3JtV5E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0jm3JtV5E .navbar .navbar-logo img {
  width: auto;
}
.cid-u0jm3JtV5E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0jm3JtV5E .navbar.collapsed {
  justify-content: center;
}
.cid-u0jm3JtV5E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0jm3JtV5E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0jm3JtV5E .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0jm3JtV5E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0jm3JtV5E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0jm3JtV5E .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-u0jm3JtV5E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0jm3JtV5E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0jm3JtV5E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0jm3JtV5E .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0jm3JtV5E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0jm3JtV5E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0jm3JtV5E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0jm3JtV5E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0jm3JtV5E .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-u0jm3JtV5E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0jm3JtV5E .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0jm3JtV5E .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0jm3JtV5E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0jm3JtV5E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0jm3JtV5E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0jm3JtV5E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0jm3JtV5E .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0jm3JtV5E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0jm3JtV5E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0jm3JtV5E .dropdown-item.active,
.cid-u0jm3JtV5E .dropdown-item:active {
  background-color: transparent;
}
.cid-u0jm3JtV5E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0jm3JtV5E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0jm3JtV5E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0jm3JtV5E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0jm3JtV5E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0jm3JtV5E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0jm3JtV5E ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0jm3JtV5E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0jm3JtV5E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0jm3JtV5E button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0jm3JtV5E button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0jm3JtV5E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0jm3JtV5E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0jm3JtV5E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jm3JtV5E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jm3JtV5E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0jm3JtV5E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jm3JtV5E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0jm3JtV5E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0jm3JtV5E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jm3JtV5E .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0jm3JtV5E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0jm3JtV5E .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-u0jm3JtV5E .navbar {
    height: 70px;
  }
  .cid-u0jm3JtV5E .navbar.opened {
    height: auto;
  }
  .cid-u0jm3JtV5E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0jm3K3dBa {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jm3K3dBa .link a {
  background-image: none !important;
}
.cid-u0jm3K3dBa .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0jm3K3dBa .date {
  margin-bottom: 6px;
}
.cid-u0jm3K3dBa .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0jm3K3dBa .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0jm3K3dBa a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0jm3K3dBa rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0jm3K3dBa .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0jm3K3dBa svg {
  margin-left: 15px;
}
.cid-u0jm3K3dBa path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0jm3K3dBa .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0jm3K3dBa .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0jm3K3dBa .row {
  justify-content: center;
}
.cid-u0jm3K3dBa .p,
.cid-u0jm3K3dBa .link {
  color: #767676;
}
.cid-u0jm3Ktigj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0jm3Ktigj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jm3Ktigj .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-u0jm3Ktigj .container {
    padding: 0 30px;
  }
}
.cid-u0jm3Ktigj .row {
  justify-content: center;
}
.cid-u0jm3Ktigj .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0jm3Ktigj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0jm3Ktigj .card {
    margin-bottom: 30px;
  }
}
.cid-u0jm3Ktigj .card .card-wrapper {
  display: flex;
}
.cid-u0jm3Ktigj .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0jm3Ktigj .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0jm3Ktigj .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0jm3Ktigj .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0jm3Ktigj .mbr-section-title {
  color: #767676;
}
.cid-u0jm3Ktigj .mbr-number {
  color: #000000;
}
.cid-u0jm3Ktigj .mbr-card-title {
  color: #1070b9;
}
.cid-u0jm3Ktigj .mbr-text {
  color: #767676;
}
.cid-u0jm3KVO0S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jm3KVO0S .mbr-section-title {
  color: #1070b9;
}
.cid-u0jm3KVO0S .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0jm3KVO0S .row {
  justify-content: space-between;
}
.cid-u0jm3KVO0S .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0jm3KVO0S .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0jm3KVO0S .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0jm3KVO0S .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0jm3KVO0S .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0jm3KVO0S .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0jm3KVO0S .link-wrapper {
    justify-content: center;
  }
}
.cid-u0jm3KVO0S .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0jm3KVO0S .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0jm3KVO0S .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0jm3KVO0S .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0jm3KVO0S .link,
.cid-u0jm3KVO0S .link-icon {
  color: #000000;
}
.cid-u0jm3KVO0S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jm3KVO0S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jm3KVO0S .mbr-text,
.cid-u0jm3KVO0S .mbr-section-btn {
  color: #767676;
}
.cid-u0jm3LkxtG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0jm3LkxtG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0jm3LkxtG .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0jm3LkxtG .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0jm3LkxtG .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0jm3LkxtG .box {
  right: 20%;
}
.cid-u0jm3LkxtG .text-box {
  right: 0;
}
.cid-u0jm3LkxtG .mbr-section-title,
.cid-u0jm3LkxtG .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0jm3LkxtG .text-box {
    display: none;
  }
  .cid-u0jm3LkxtG .mbr-section-title,
  .cid-u0jm3LkxtG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0jm3LkxtG .box {
    display: none;
  }
  .cid-u0jm3LkxtG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0jm3LkxtG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0jm3LkxtG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0jm3LkxtG .mbr-section-text {
  color: #767676;
}
.cid-u0jm3LkxtG .mbr-section-title {
  color: #1070b9;
}
.cid-u0jm3MJuvw {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0jm3MJuvw .carousel {
    overflow: hidden;
  }
  .cid-u0jm3MJuvw .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jm3MJuvw .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0jm3MJuvw #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0jm3MJuvw #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0jm3MJuvw .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0jm3MJuvw .link-div {
  margin-left: 20px;
}
.cid-u0jm3MJuvw .link-div h3 {
  margin-left: 4px;
}
.cid-u0jm3MJuvw .mbr-card-title {
  color: #000e2f;
}
.cid-u1ORMTvHLq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1ORMTvHLq .box {
  margin-bottom: 15px;
}
.cid-u1ORMTvHLq .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u1ORMTvHLq .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u1ORMTvHLq .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u1ORMTvHLq .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u1ORMTvHLq .mbr-media {
    max-height: 432px;
  }
}
.cid-u1ORMTvHLq .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u1ORMTvHLq .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u1ORMTvHLq .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u1ORMTvHLq .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u1ORMTvHLq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u1ORMTvHLq .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u1ORMTvHLq .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u1ORMTvHLq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u1ORMTvHLq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u1ORMTvHLq .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u1ORMTvHLq .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u1ORMTvHLq .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u1ORMTvHLq .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u1ORMTvHLq .item-img {
  overflow: hidden;
}
.cid-u1ORMTvHLq .item-img img {
  width: 100%;
}
.cid-u1ORMTvHLq .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u1ORMTvHLq .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u1ORMTvHLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1ORMTvHLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-ks {
  /* Type valid CSS here */
}
#custom-html-ks .back-button {
  position: fixed;
}
.cid-u0jm3N3nsE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0jm3N3nsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jm3N3nsE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jm3N3nsE .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0jm3N3nsE .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0jm3N3nsE .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0jm3N3nsE .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0jm3N3nsE .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0jm3N3nsE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jm3N3nsE .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0jm3N3nsE .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jm3N3nsE .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0jm3N3nsE .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0jm3N3nsE .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0jm3N3nsE .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0jm3N3nsE .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0jm3N3nsE .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0jm3N3nsE .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0jm3N3nsE .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0jm3N3nsE .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0jm3N3nsE .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0jm3N3nsE .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0jm3N3nsE .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0jm3N3nsE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0jm3N3nsE .soc-item {
    padding: 10px;
  }
}
.cid-u0jm3N3nsE .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0jm3N3nsE .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0jm3N3nsE .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0jm3N3nsE .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0jm3N3nsE .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0jm3N3nsE .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0jm3N3nsE .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0jm3N3nsE .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0jm3N3nsE .copyright {
    text-align: center !important;
  }
}
.cid-u0jm3N3nsE p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0jm3N3nsE .row {
    justify-content: flex-start !important;
  }
}
.cid-u0jm3N3nsE .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0jm3N3nsE .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0jm3N3nsE .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0jm3N3nsE .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0jm3N3nsE .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0jm3N3nsE .card-title {
  color: #ffffff;
}
.cid-u0jm3N3nsE P {
  color: #22a5e5;
}
.cid-u0jl9WFWuh .navbar-dropdown {
  position: relative !important;
}
.cid-u0jl9WFWuh .navbar-dropdown {
  position: absolute !important;
}
.cid-u0jl9WFWuh nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0jl9WFWuh .nav-item {
    margin: 0 !important;
  }
}
.cid-u0jl9WFWuh .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-u0jl9WFWuh .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0jl9WFWuh .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0jl9WFWuh .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0jl9WFWuh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0jl9WFWuh .nav-link {
  position: relative;
}
.cid-u0jl9WFWuh .container {
  display: flex;
  margin: auto;
}
.cid-u0jl9WFWuh .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0jl9WFWuh .dropdown-menu,
.cid-u0jl9WFWuh .navbar.opened {
  background: #000000 !important;
}
.cid-u0jl9WFWuh .nav-item:focus,
.cid-u0jl9WFWuh .nav-link:focus {
  outline: none;
}
.cid-u0jl9WFWuh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0jl9WFWuh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0jl9WFWuh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0jl9WFWuh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0jl9WFWuh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0jl9WFWuh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0jl9WFWuh .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0jl9WFWuh .navbar.opened {
  transition: all 0.3s;
}
.cid-u0jl9WFWuh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0jl9WFWuh .navbar .navbar-logo img {
  width: auto;
}
.cid-u0jl9WFWuh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0jl9WFWuh .navbar.collapsed {
  justify-content: center;
}
.cid-u0jl9WFWuh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0jl9WFWuh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0jl9WFWuh .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0jl9WFWuh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0jl9WFWuh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0jl9WFWuh .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-u0jl9WFWuh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0jl9WFWuh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0jl9WFWuh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0jl9WFWuh .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0jl9WFWuh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0jl9WFWuh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0jl9WFWuh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0jl9WFWuh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0jl9WFWuh .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-u0jl9WFWuh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0jl9WFWuh .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0jl9WFWuh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0jl9WFWuh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0jl9WFWuh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0jl9WFWuh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0jl9WFWuh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0jl9WFWuh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0jl9WFWuh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0jl9WFWuh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0jl9WFWuh .dropdown-item.active,
.cid-u0jl9WFWuh .dropdown-item:active {
  background-color: transparent;
}
.cid-u0jl9WFWuh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0jl9WFWuh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0jl9WFWuh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0jl9WFWuh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0jl9WFWuh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0jl9WFWuh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0jl9WFWuh ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0jl9WFWuh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0jl9WFWuh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0jl9WFWuh button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0jl9WFWuh button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0jl9WFWuh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0jl9WFWuh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0jl9WFWuh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jl9WFWuh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jl9WFWuh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0jl9WFWuh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jl9WFWuh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0jl9WFWuh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0jl9WFWuh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jl9WFWuh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0jl9WFWuh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0jl9WFWuh .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-u0jl9WFWuh .navbar {
    height: 70px;
  }
  .cid-u0jl9WFWuh .navbar.opened {
    height: auto;
  }
  .cid-u0jl9WFWuh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0jl9Xfsf1 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jl9Xfsf1 .link a {
  background-image: none !important;
}
.cid-u0jl9Xfsf1 .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0jl9Xfsf1 .date {
  margin-bottom: 6px;
}
.cid-u0jl9Xfsf1 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0jl9Xfsf1 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0jl9Xfsf1 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0jl9Xfsf1 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0jl9Xfsf1 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0jl9Xfsf1 svg {
  margin-left: 15px;
}
.cid-u0jl9Xfsf1 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0jl9Xfsf1 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0jl9Xfsf1 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0jl9Xfsf1 .row {
  justify-content: center;
}
.cid-u0jl9Xfsf1 .p,
.cid-u0jl9Xfsf1 .link {
  color: #767676;
}
.cid-u0jl9XFRd8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0jl9XFRd8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jl9XFRd8 .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-u0jl9XFRd8 .container {
    padding: 0 30px;
  }
}
.cid-u0jl9XFRd8 .row {
  justify-content: center;
}
.cid-u0jl9XFRd8 .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0jl9XFRd8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0jl9XFRd8 .card {
    margin-bottom: 30px;
  }
}
.cid-u0jl9XFRd8 .card .card-wrapper {
  display: flex;
}
.cid-u0jl9XFRd8 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0jl9XFRd8 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0jl9XFRd8 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0jl9XFRd8 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0jl9XFRd8 .mbr-section-title {
  color: #767676;
}
.cid-u0jl9XFRd8 .mbr-number {
  color: #000000;
}
.cid-u0jl9XFRd8 .mbr-card-title {
  color: #1070b9;
}
.cid-u0jl9XFRd8 .mbr-text {
  color: #767676;
}
.cid-u0jl9Y6Qn1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jl9Y6Qn1 .mbr-section-title {
  color: #1070b9;
}
.cid-u0jl9Y6Qn1 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0jl9Y6Qn1 .row {
  justify-content: space-between;
}
.cid-u0jl9Y6Qn1 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0jl9Y6Qn1 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0jl9Y6Qn1 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0jl9Y6Qn1 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0jl9Y6Qn1 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0jl9Y6Qn1 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0jl9Y6Qn1 .link-wrapper {
    justify-content: center;
  }
}
.cid-u0jl9Y6Qn1 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0jl9Y6Qn1 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0jl9Y6Qn1 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0jl9Y6Qn1 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0jl9Y6Qn1 .link,
.cid-u0jl9Y6Qn1 .link-icon {
  color: #000000;
}
.cid-u0jl9Y6Qn1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jl9Y6Qn1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jl9Y6Qn1 .mbr-text,
.cid-u0jl9Y6Qn1 .mbr-section-btn {
  color: #767676;
}
.cid-u0jl9YqDPr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0jl9YqDPr .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0jl9YqDPr .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0jl9YqDPr .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0jl9YqDPr .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0jl9YqDPr .box {
  right: 20%;
}
.cid-u0jl9YqDPr .text-box {
  right: 0;
}
.cid-u0jl9YqDPr .mbr-section-title,
.cid-u0jl9YqDPr .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0jl9YqDPr .text-box {
    display: none;
  }
  .cid-u0jl9YqDPr .mbr-section-title,
  .cid-u0jl9YqDPr .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0jl9YqDPr .box {
    display: none;
  }
  .cid-u0jl9YqDPr .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0jl9YqDPr .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0jl9YqDPr .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0jl9YqDPr .mbr-section-text {
  color: #767676;
}
.cid-u0jl9YqDPr .mbr-section-title {
  color: #1070b9;
}
.cid-u0jl9YNvKZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0jl9YNvKZ .box {
  margin-bottom: 15px;
}
.cid-u0jl9YNvKZ .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0jl9YNvKZ .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0jl9YNvKZ .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0jl9YNvKZ .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0jl9YNvKZ .mbr-media {
    max-height: 432px;
  }
}
.cid-u0jl9YNvKZ .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0jl9YNvKZ .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0jl9YNvKZ .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0jl9YNvKZ .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0jl9YNvKZ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0jl9YNvKZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0jl9YNvKZ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0jl9YNvKZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0jl9YNvKZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0jl9YNvKZ .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0jl9YNvKZ .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0jl9YNvKZ .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0jl9YNvKZ .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0jl9YNvKZ .item-img {
  overflow: hidden;
}
.cid-u0jl9YNvKZ .item-img img {
  width: 100%;
}
.cid-u0jl9YNvKZ .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0jl9YNvKZ .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0jl9YNvKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jl9YNvKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jl9ZmaXe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0jl9ZmaXe .carousel {
    overflow: hidden;
  }
  .cid-u0jl9ZmaXe .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jl9ZmaXe .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0jl9ZmaXe .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0jl9ZmaXe .carousel,
.cid-u0jl9ZmaXe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0jl9ZmaXe .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0jl9ZmaXe .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0jl9ZmaXe .item-wrapper {
    height: 215px;
  }
}
.cid-u0jl9ZmaXe .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0jl9ZmaXe .carousel-caption {
  bottom: 40px;
}
.cid-u0jl9ZmaXe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0jl9ZmaXe .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0jl9ZmaXe .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0jl9ZmaXe .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0jl9ZmaXe .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0jl9ZmaXe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0jl9ZmaXe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0jl9ZmaXe .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jl9ZmaXe .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0jl9ZmaXe .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jl9ZmaXe .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0jl9ZmaXe .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0jl9ZmaXe .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0jl9ZmaXe .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0jl9ZmaXe .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0jl9ZmaXe .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0jl9ZmaXe .soc-item::before,
.cid-u0jl9ZmaXe .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0jl9ZmaXe .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0jl9ZmaXe .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0jl9ZmaXe .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0jl9ZmaXe .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0jl9ZmaXe .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0jl9ZmaXe .text {
  color: #ddc499;
}
.cid-u0jl9ZmaXe .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0jl9ZNqWv {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0jl9ZNqWv .carousel {
    overflow: hidden;
  }
  .cid-u0jl9ZNqWv .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jl9ZNqWv .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0jl9ZNqWv #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0jl9ZNqWv #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0jl9ZNqWv .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0jl9ZNqWv .link-div {
  margin-left: 20px;
}
.cid-u0jl9ZNqWv .link-div h3 {
  margin-left: 4px;
}
.cid-u0jl9ZNqWv .mbr-card-title {
  color: #000e2f;
}
#custom-html-ki {
  /* Type valid CSS here */
}
#custom-html-ki .back-button {
  position: fixed;
}
.cid-u0jla096k4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0jla096k4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jla096k4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jla096k4 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0jla096k4 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0jla096k4 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0jla096k4 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0jla096k4 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0jla096k4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jla096k4 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0jla096k4 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jla096k4 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0jla096k4 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0jla096k4 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0jla096k4 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0jla096k4 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0jla096k4 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0jla096k4 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0jla096k4 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0jla096k4 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0jla096k4 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0jla096k4 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0jla096k4 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0jla096k4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0jla096k4 .soc-item {
    padding: 10px;
  }
}
.cid-u0jla096k4 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0jla096k4 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0jla096k4 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0jla096k4 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0jla096k4 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0jla096k4 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0jla096k4 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0jla096k4 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0jla096k4 .copyright {
    text-align: center !important;
  }
}
.cid-u0jla096k4 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0jla096k4 .row {
    justify-content: flex-start !important;
  }
}
.cid-u0jla096k4 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0jla096k4 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0jla096k4 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0jla096k4 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0jla096k4 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0jla096k4 .card-title {
  color: #ffffff;
}
.cid-u0jla096k4 P {
  color: #22a5e5;
}
.cid-u0jkqvpt9I .navbar-dropdown {
  position: relative !important;
}
.cid-u0jkqvpt9I .navbar-dropdown {
  position: absolute !important;
}
.cid-u0jkqvpt9I nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0jkqvpt9I .nav-item {
    margin: 0 !important;
  }
}
.cid-u0jkqvpt9I .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-u0jkqvpt9I .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0jkqvpt9I .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0jkqvpt9I .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0jkqvpt9I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0jkqvpt9I .nav-link {
  position: relative;
}
.cid-u0jkqvpt9I .container {
  display: flex;
  margin: auto;
}
.cid-u0jkqvpt9I .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0jkqvpt9I .dropdown-menu,
.cid-u0jkqvpt9I .navbar.opened {
  background: #000000 !important;
}
.cid-u0jkqvpt9I .nav-item:focus,
.cid-u0jkqvpt9I .nav-link:focus {
  outline: none;
}
.cid-u0jkqvpt9I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0jkqvpt9I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0jkqvpt9I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0jkqvpt9I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0jkqvpt9I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0jkqvpt9I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0jkqvpt9I .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0jkqvpt9I .navbar.opened {
  transition: all 0.3s;
}
.cid-u0jkqvpt9I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0jkqvpt9I .navbar .navbar-logo img {
  width: auto;
}
.cid-u0jkqvpt9I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0jkqvpt9I .navbar.collapsed {
  justify-content: center;
}
.cid-u0jkqvpt9I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0jkqvpt9I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0jkqvpt9I .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0jkqvpt9I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0jkqvpt9I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0jkqvpt9I .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-u0jkqvpt9I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0jkqvpt9I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0jkqvpt9I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0jkqvpt9I .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0jkqvpt9I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0jkqvpt9I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0jkqvpt9I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0jkqvpt9I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0jkqvpt9I .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-u0jkqvpt9I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0jkqvpt9I .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0jkqvpt9I .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0jkqvpt9I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0jkqvpt9I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0jkqvpt9I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0jkqvpt9I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0jkqvpt9I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0jkqvpt9I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0jkqvpt9I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0jkqvpt9I .dropdown-item.active,
.cid-u0jkqvpt9I .dropdown-item:active {
  background-color: transparent;
}
.cid-u0jkqvpt9I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0jkqvpt9I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0jkqvpt9I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0jkqvpt9I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0jkqvpt9I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0jkqvpt9I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0jkqvpt9I ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0jkqvpt9I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0jkqvpt9I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0jkqvpt9I button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0jkqvpt9I button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0jkqvpt9I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0jkqvpt9I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0jkqvpt9I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jkqvpt9I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jkqvpt9I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0jkqvpt9I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jkqvpt9I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0jkqvpt9I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0jkqvpt9I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jkqvpt9I .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0jkqvpt9I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0jkqvpt9I .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-u0jkqvpt9I .navbar {
    height: 70px;
  }
  .cid-u0jkqvpt9I .navbar.opened {
    height: auto;
  }
  .cid-u0jkqvpt9I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0jkqw3Z87 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jkqw3Z87 .link a {
  background-image: none !important;
}
.cid-u0jkqw3Z87 .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0jkqw3Z87 .date {
  margin-bottom: 6px;
}
.cid-u0jkqw3Z87 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0jkqw3Z87 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0jkqw3Z87 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0jkqw3Z87 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0jkqw3Z87 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0jkqw3Z87 svg {
  margin-left: 15px;
}
.cid-u0jkqw3Z87 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0jkqw3Z87 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0jkqw3Z87 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0jkqw3Z87 .row {
  justify-content: center;
}
.cid-u0jkqw3Z87 .p,
.cid-u0jkqw3Z87 .link {
  color: #767676;
}
.cid-u0jkqwzyoQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0jkqwzyoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jkqwzyoQ .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-u0jkqwzyoQ .container {
    padding: 0 30px;
  }
}
.cid-u0jkqwzyoQ .row {
  justify-content: center;
}
.cid-u0jkqwzyoQ .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0jkqwzyoQ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0jkqwzyoQ .card {
    margin-bottom: 30px;
  }
}
.cid-u0jkqwzyoQ .card .card-wrapper {
  display: flex;
}
.cid-u0jkqwzyoQ .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0jkqwzyoQ .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0jkqwzyoQ .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0jkqwzyoQ .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0jkqwzyoQ .mbr-section-title {
  color: #767676;
}
.cid-u0jkqwzyoQ .mbr-number {
  color: #000000;
}
.cid-u0jkqwzyoQ .mbr-card-title {
  color: #1070b9;
}
.cid-u0jkqwzyoQ .mbr-text {
  color: #767676;
}
.cid-u0jkqwVrL1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jkqwVrL1 .mbr-section-title {
  color: #1070b9;
}
.cid-u0jkqwVrL1 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0jkqwVrL1 .row {
  justify-content: space-between;
}
.cid-u0jkqwVrL1 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0jkqwVrL1 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0jkqwVrL1 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0jkqwVrL1 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0jkqwVrL1 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0jkqwVrL1 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0jkqwVrL1 .link-wrapper {
    justify-content: center;
  }
}
.cid-u0jkqwVrL1 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0jkqwVrL1 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0jkqwVrL1 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0jkqwVrL1 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0jkqwVrL1 .link,
.cid-u0jkqwVrL1 .link-icon {
  color: #000000;
}
.cid-u0jkqwVrL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jkqwVrL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jkqwVrL1 .mbr-text,
.cid-u0jkqwVrL1 .mbr-section-btn {
  color: #767676;
}
.cid-u0jkqxgIfl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0jkqxgIfl .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0jkqxgIfl .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0jkqxgIfl .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0jkqxgIfl .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0jkqxgIfl .box {
  right: 20%;
}
.cid-u0jkqxgIfl .text-box {
  right: 0;
}
.cid-u0jkqxgIfl .mbr-section-title,
.cid-u0jkqxgIfl .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0jkqxgIfl .text-box {
    display: none;
  }
  .cid-u0jkqxgIfl .mbr-section-title,
  .cid-u0jkqxgIfl .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0jkqxgIfl .box {
    display: none;
  }
  .cid-u0jkqxgIfl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0jkqxgIfl .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0jkqxgIfl .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0jkqxgIfl .mbr-section-text {
  color: #767676;
}
.cid-u0jkqxgIfl .mbr-section-title {
  color: #1070b9;
}
.cid-u0jkqxE3s8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0jkqxE3s8 .box {
  margin-bottom: 15px;
}
.cid-u0jkqxE3s8 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0jkqxE3s8 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0jkqxE3s8 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0jkqxE3s8 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0jkqxE3s8 .mbr-media {
    max-height: 432px;
  }
}
.cid-u0jkqxE3s8 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0jkqxE3s8 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0jkqxE3s8 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0jkqxE3s8 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0jkqxE3s8 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0jkqxE3s8 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0jkqxE3s8 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0jkqxE3s8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0jkqxE3s8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0jkqxE3s8 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0jkqxE3s8 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0jkqxE3s8 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0jkqxE3s8 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0jkqxE3s8 .item-img {
  overflow: hidden;
}
.cid-u0jkqxE3s8 .item-img img {
  width: 100%;
}
.cid-u0jkqxE3s8 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0jkqxE3s8 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0jkqxE3s8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jkqxE3s8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jkqydEt9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0jkqydEt9 .carousel {
    overflow: hidden;
  }
  .cid-u0jkqydEt9 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jkqydEt9 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0jkqydEt9 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0jkqydEt9 .carousel,
.cid-u0jkqydEt9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0jkqydEt9 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0jkqydEt9 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0jkqydEt9 .item-wrapper {
    height: 215px;
  }
}
.cid-u0jkqydEt9 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0jkqydEt9 .carousel-caption {
  bottom: 40px;
}
.cid-u0jkqydEt9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0jkqydEt9 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0jkqydEt9 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0jkqydEt9 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0jkqydEt9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0jkqydEt9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0jkqydEt9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0jkqydEt9 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jkqydEt9 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0jkqydEt9 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jkqydEt9 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0jkqydEt9 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0jkqydEt9 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0jkqydEt9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0jkqydEt9 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0jkqydEt9 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0jkqydEt9 .soc-item::before,
.cid-u0jkqydEt9 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0jkqydEt9 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0jkqydEt9 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0jkqydEt9 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0jkqydEt9 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0jkqydEt9 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0jkqydEt9 .text {
  color: #ddc499;
}
.cid-u0jkqydEt9 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0jkqyB95S {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0jkqyB95S .carousel {
    overflow: hidden;
  }
  .cid-u0jkqyB95S .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jkqyB95S .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0jkqyB95S #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0jkqyB95S #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0jkqyB95S .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0jkqyB95S .link-div {
  margin-left: 20px;
}
.cid-u0jkqyB95S .link-div h3 {
  margin-left: 4px;
}
.cid-u0jkqyB95S .mbr-card-title {
  color: #000e2f;
}
#custom-html-k8 {
  /* Type valid CSS here */
}
#custom-html-k8 .back-button {
  position: fixed;
}
.cid-u0jkqz5Ln9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0jkqz5Ln9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jkqz5Ln9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jkqz5Ln9 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0jkqz5Ln9 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0jkqz5Ln9 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0jkqz5Ln9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0jkqz5Ln9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0jkqz5Ln9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jkqz5Ln9 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0jkqz5Ln9 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jkqz5Ln9 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0jkqz5Ln9 .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0jkqz5Ln9 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0jkqz5Ln9 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0jkqz5Ln9 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0jkqz5Ln9 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0jkqz5Ln9 .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0jkqz5Ln9 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0jkqz5Ln9 .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0jkqz5Ln9 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0jkqz5Ln9 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0jkqz5Ln9 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0jkqz5Ln9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0jkqz5Ln9 .soc-item {
    padding: 10px;
  }
}
.cid-u0jkqz5Ln9 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0jkqz5Ln9 .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0jkqz5Ln9 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0jkqz5Ln9 .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0jkqz5Ln9 .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0jkqz5Ln9 .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0jkqz5Ln9 .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0jkqz5Ln9 .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0jkqz5Ln9 .copyright {
    text-align: center !important;
  }
}
.cid-u0jkqz5Ln9 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0jkqz5Ln9 .row {
    justify-content: flex-start !important;
  }
}
.cid-u0jkqz5Ln9 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0jkqz5Ln9 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0jkqz5Ln9 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0jkqz5Ln9 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0jkqz5Ln9 .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0jkqz5Ln9 .card-title {
  color: #ffffff;
}
.cid-u0jkqz5Ln9 P {
  color: #22a5e5;
}
.cid-u0jikkjpKU .navbar-dropdown {
  position: relative !important;
}
.cid-u0jikkjpKU .navbar-dropdown {
  position: absolute !important;
}
.cid-u0jikkjpKU nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0jikkjpKU .nav-item {
    margin: 0 !important;
  }
}
.cid-u0jikkjpKU .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-u0jikkjpKU .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0jikkjpKU .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0jikkjpKU .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0jikkjpKU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0jikkjpKU .nav-link {
  position: relative;
}
.cid-u0jikkjpKU .container {
  display: flex;
  margin: auto;
}
.cid-u0jikkjpKU .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0jikkjpKU .dropdown-menu,
.cid-u0jikkjpKU .navbar.opened {
  background: #000000 !important;
}
.cid-u0jikkjpKU .nav-item:focus,
.cid-u0jikkjpKU .nav-link:focus {
  outline: none;
}
.cid-u0jikkjpKU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0jikkjpKU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0jikkjpKU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0jikkjpKU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0jikkjpKU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0jikkjpKU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0jikkjpKU .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0jikkjpKU .navbar.opened {
  transition: all 0.3s;
}
.cid-u0jikkjpKU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0jikkjpKU .navbar .navbar-logo img {
  width: auto;
}
.cid-u0jikkjpKU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0jikkjpKU .navbar.collapsed {
  justify-content: center;
}
.cid-u0jikkjpKU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0jikkjpKU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0jikkjpKU .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0jikkjpKU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0jikkjpKU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0jikkjpKU .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-u0jikkjpKU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0jikkjpKU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0jikkjpKU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0jikkjpKU .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0jikkjpKU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0jikkjpKU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0jikkjpKU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0jikkjpKU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0jikkjpKU .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-u0jikkjpKU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0jikkjpKU .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0jikkjpKU .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0jikkjpKU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0jikkjpKU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0jikkjpKU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0jikkjpKU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0jikkjpKU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0jikkjpKU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0jikkjpKU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0jikkjpKU .dropdown-item.active,
.cid-u0jikkjpKU .dropdown-item:active {
  background-color: transparent;
}
.cid-u0jikkjpKU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0jikkjpKU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0jikkjpKU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0jikkjpKU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0jikkjpKU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0jikkjpKU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0jikkjpKU ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0jikkjpKU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0jikkjpKU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0jikkjpKU button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0jikkjpKU button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0jikkjpKU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0jikkjpKU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0jikkjpKU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jikkjpKU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jikkjpKU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0jikkjpKU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jikkjpKU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0jikkjpKU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0jikkjpKU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jikkjpKU .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0jikkjpKU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0jikkjpKU .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-u0jikkjpKU .navbar {
    height: 70px;
  }
  .cid-u0jikkjpKU .navbar.opened {
    height: auto;
  }
  .cid-u0jikkjpKU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0jikkOC3i {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jikkOC3i .link a {
  background-image: none !important;
}
.cid-u0jikkOC3i .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0jikkOC3i .date {
  margin-bottom: 6px;
}
.cid-u0jikkOC3i .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0jikkOC3i .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0jikkOC3i a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0jikkOC3i rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0jikkOC3i .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0jikkOC3i svg {
  margin-left: 15px;
}
.cid-u0jikkOC3i path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0jikkOC3i .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0jikkOC3i .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0jikkOC3i .row {
  justify-content: center;
}
.cid-u0jikkOC3i .p,
.cid-u0jikkOC3i .link {
  color: #767676;
}
.cid-u0jikldsmn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0jikldsmn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jikldsmn .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-u0jikldsmn .container {
    padding: 0 30px;
  }
}
.cid-u0jikldsmn .row {
  justify-content: center;
}
.cid-u0jikldsmn .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0jikldsmn .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0jikldsmn .card {
    margin-bottom: 30px;
  }
}
.cid-u0jikldsmn .card .card-wrapper {
  display: flex;
}
.cid-u0jikldsmn .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0jikldsmn .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0jikldsmn .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0jikldsmn .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0jikldsmn .mbr-section-title {
  color: #767676;
}
.cid-u0jikldsmn .mbr-number {
  color: #000000;
}
.cid-u0jikldsmn .mbr-card-title {
  color: #1070b9;
}
.cid-u0jikldsmn .mbr-text {
  color: #767676;
}
.cid-u0jiklzqC2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jiklzqC2 .mbr-section-title {
  color: #1070b9;
}
.cid-u0jiklzqC2 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0jiklzqC2 .row {
  justify-content: space-between;
}
.cid-u0jiklzqC2 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0jiklzqC2 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0jiklzqC2 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0jiklzqC2 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0jiklzqC2 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0jiklzqC2 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0jiklzqC2 .link-wrapper {
    justify-content: center;
  }
}
.cid-u0jiklzqC2 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0jiklzqC2 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0jiklzqC2 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0jiklzqC2 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0jiklzqC2 .link,
.cid-u0jiklzqC2 .link-icon {
  color: #000000;
}
.cid-u0jiklzqC2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jiklzqC2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jiklzqC2 .mbr-text,
.cid-u0jiklzqC2 .mbr-section-btn {
  color: #767676;
}
.cid-u0jiklVUnd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0jiklVUnd .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0jiklVUnd .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0jiklVUnd .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0jiklVUnd .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0jiklVUnd .box {
  right: 20%;
}
.cid-u0jiklVUnd .text-box {
  right: 0;
}
.cid-u0jiklVUnd .mbr-section-title,
.cid-u0jiklVUnd .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0jiklVUnd .text-box {
    display: none;
  }
  .cid-u0jiklVUnd .mbr-section-title,
  .cid-u0jiklVUnd .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0jiklVUnd .box {
    display: none;
  }
  .cid-u0jiklVUnd .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0jiklVUnd .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0jiklVUnd .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0jiklVUnd .mbr-section-text {
  color: #767676;
}
.cid-u0jiklVUnd .mbr-section-title {
  color: #1070b9;
}
.cid-u0jikmhgcG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0jikmhgcG .box {
  margin-bottom: 15px;
}
.cid-u0jikmhgcG .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0jikmhgcG .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0jikmhgcG .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0jikmhgcG .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0jikmhgcG .mbr-media {
    max-height: 432px;
  }
}
.cid-u0jikmhgcG .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0jikmhgcG .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0jikmhgcG .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0jikmhgcG .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0jikmhgcG .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0jikmhgcG .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0jikmhgcG .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0jikmhgcG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0jikmhgcG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0jikmhgcG .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0jikmhgcG .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0jikmhgcG .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0jikmhgcG .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0jikmhgcG .item-img {
  overflow: hidden;
}
.cid-u0jikmhgcG .item-img img {
  width: 100%;
}
.cid-u0jikmhgcG .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0jikmhgcG .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0jikmhgcG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jikmhgcG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jikmPWHd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0jikmPWHd .carousel {
    overflow: hidden;
  }
  .cid-u0jikmPWHd .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jikmPWHd .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0jikmPWHd .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0jikmPWHd .carousel,
.cid-u0jikmPWHd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0jikmPWHd .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0jikmPWHd .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0jikmPWHd .item-wrapper {
    height: 215px;
  }
}
.cid-u0jikmPWHd .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0jikmPWHd .carousel-caption {
  bottom: 40px;
}
.cid-u0jikmPWHd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0jikmPWHd .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0jikmPWHd .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0jikmPWHd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0jikmPWHd .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0jikmPWHd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0jikmPWHd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0jikmPWHd .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jikmPWHd .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0jikmPWHd .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jikmPWHd .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0jikmPWHd .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0jikmPWHd .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0jikmPWHd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0jikmPWHd .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0jikmPWHd .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0jikmPWHd .soc-item::before,
.cid-u0jikmPWHd .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0jikmPWHd .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0jikmPWHd .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0jikmPWHd .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0jikmPWHd .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0jikmPWHd .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0jikmPWHd .text {
  color: #ddc499;
}
.cid-u0jikmPWHd .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0jikneGBj {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0jikneGBj .carousel {
    overflow: hidden;
  }
  .cid-u0jikneGBj .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jikneGBj .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0jikneGBj #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0jikneGBj #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0jikneGBj .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0jikneGBj .link-div {
  margin-left: 20px;
}
.cid-u0jikneGBj .link-div h3 {
  margin-left: 4px;
}
.cid-u0jikneGBj .mbr-card-title {
  color: #000e2f;
}
#custom-html-jy {
  /* Type valid CSS here */
}
#custom-html-jy .back-button {
  position: fixed;
}
.cid-u0jiknyLCj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0jiknyLCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jiknyLCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jiknyLCj .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0jiknyLCj .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0jiknyLCj .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0jiknyLCj .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0jiknyLCj .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0jiknyLCj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jiknyLCj .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0jiknyLCj .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jiknyLCj .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0jiknyLCj .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0jiknyLCj .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0jiknyLCj .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0jiknyLCj .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0jiknyLCj .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0jiknyLCj .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0jiknyLCj .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0jiknyLCj .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0jiknyLCj .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0jiknyLCj .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0jiknyLCj .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0jiknyLCj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0jiknyLCj .soc-item {
    padding: 10px;
  }
}
.cid-u0jiknyLCj .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0jiknyLCj .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0jiknyLCj .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0jiknyLCj .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0jiknyLCj .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0jiknyLCj .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0jiknyLCj .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0jiknyLCj .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0jiknyLCj .copyright {
    text-align: center !important;
  }
}
.cid-u0jiknyLCj p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0jiknyLCj .row {
    justify-content: flex-start !important;
  }
}
.cid-u0jiknyLCj .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0jiknyLCj .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0jiknyLCj .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0jiknyLCj .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0jiknyLCj .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0jiknyLCj .card-title {
  color: #ffffff;
}
.cid-u0jiknyLCj P {
  color: #22a5e5;
}
.cid-twGLQyFfTX .navbar-dropdown {
  position: relative !important;
}
.cid-twGLQyFfTX .navbar-dropdown {
  position: absolute !important;
}
.cid-twGLQyFfTX nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .nav-item {
    margin: 0 !important;
  }
}
.cid-twGLQyFfTX .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-twGLQyFfTX .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-twGLQyFfTX .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-twGLQyFfTX .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twGLQyFfTX .nav-link {
  position: relative;
}
.cid-twGLQyFfTX .container {
  display: flex;
  margin: auto;
}
.cid-twGLQyFfTX .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown-menu,
.cid-twGLQyFfTX .navbar.opened {
  background: #000000 !important;
}
.cid-twGLQyFfTX .nav-item:focus,
.cid-twGLQyFfTX .nav-link:focus {
  outline: none;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twGLQyFfTX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twGLQyFfTX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twGLQyFfTX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twGLQyFfTX .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-twGLQyFfTX .navbar.opened {
  transition: all 0.3s;
}
.cid-twGLQyFfTX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twGLQyFfTX .navbar .navbar-logo img {
  width: auto;
}
.cid-twGLQyFfTX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar.collapsed {
  justify-content: center;
}
.cid-twGLQyFfTX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twGLQyFfTX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twGLQyFfTX .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twGLQyFfTX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-twGLQyFfTX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-twGLQyFfTX .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-twGLQyFfTX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twGLQyFfTX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twGLQyFfTX .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-twGLQyFfTX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-twGLQyFfTX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-twGLQyFfTX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twGLQyFfTX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twGLQyFfTX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twGLQyFfTX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-twGLQyFfTX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twGLQyFfTX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twGLQyFfTX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twGLQyFfTX .dropdown-item.active,
.cid-twGLQyFfTX .dropdown-item:active {
  background-color: transparent;
}
.cid-twGLQyFfTX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twGLQyFfTX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-twGLQyFfTX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twGLQyFfTX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twGLQyFfTX ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-twGLQyFfTX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twGLQyFfTX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twGLQyFfTX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twGLQyFfTX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twGLQyFfTX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-twGLQyFfTX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twGLQyFfTX .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-twGLQyFfTX .navbar {
    height: 70px;
  }
  .cid-twGLQyFfTX .navbar.opened {
    height: auto;
  }
  .cid-twGLQyFfTX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyoIQzFn3M {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyoIQzFn3M .link a {
  background-image: none !important;
}
.cid-tyoIQzFn3M .item-wrapper {
  margin-bottom: 56px;
}
.cid-tyoIQzFn3M .date {
  margin-bottom: 6px;
}
.cid-tyoIQzFn3M .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tyoIQzFn3M .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tyoIQzFn3M a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tyoIQzFn3M rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tyoIQzFn3M .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tyoIQzFn3M svg {
  margin-left: 15px;
}
.cid-tyoIQzFn3M path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tyoIQzFn3M .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tyoIQzFn3M .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tyoIQzFn3M .row {
  justify-content: center;
}
.cid-tyoIQzFn3M .p,
.cid-tyoIQzFn3M .link {
  color: #767676;
}
.cid-typfTOj7lz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-typfTOj7lz .mbr-fallback-image.disabled {
  display: none;
}
.cid-typfTOj7lz .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-typfTOj7lz .container {
    padding: 0 30px;
  }
}
.cid-typfTOj7lz .row {
  justify-content: center;
}
.cid-typfTOj7lz .title-wrapper {
  margin-bottom: 55px;
}
.cid-typfTOj7lz .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-typfTOj7lz .card {
    margin-bottom: 30px;
  }
}
.cid-typfTOj7lz .card .card-wrapper {
  display: flex;
}
.cid-typfTOj7lz .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-typfTOj7lz .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-typfTOj7lz .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-typfTOj7lz .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-typfTOj7lz .mbr-section-title {
  color: #767676;
}
.cid-typfTOj7lz .mbr-number {
  color: #000000;
}
.cid-typfTOj7lz .mbr-card-title {
  color: #1070b9;
}
.cid-typfTOj7lz .mbr-text {
  color: #767676;
}
.cid-tyoIz4GC7K {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyoIz4GC7K .mbr-section-title {
  color: #1070b9;
}
.cid-tyoIz4GC7K .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tyoIz4GC7K .row {
  justify-content: space-between;
}
.cid-tyoIz4GC7K .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tyoIz4GC7K .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tyoIz4GC7K .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tyoIz4GC7K .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tyoIz4GC7K .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tyoIz4GC7K .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tyoIz4GC7K .link-wrapper {
    justify-content: center;
  }
}
.cid-tyoIz4GC7K .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tyoIz4GC7K .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tyoIz4GC7K .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tyoIz4GC7K .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tyoIz4GC7K .link,
.cid-tyoIz4GC7K .link-icon {
  color: #000000;
}
.cid-tyoIz4GC7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyoIz4GC7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyoIz4GC7K .mbr-text,
.cid-tyoIz4GC7K .mbr-section-btn {
  color: #767676;
}
.cid-tyow201Qt8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tyow201Qt8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tyow201Qt8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tyow201Qt8 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tyow201Qt8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tyow201Qt8 .box {
  right: 20%;
}
.cid-tyow201Qt8 .text-box {
  right: 0;
}
.cid-tyow201Qt8 .mbr-section-title,
.cid-tyow201Qt8 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tyow201Qt8 .text-box {
    display: none;
  }
  .cid-tyow201Qt8 .mbr-section-title,
  .cid-tyow201Qt8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tyow201Qt8 .box {
    display: none;
  }
  .cid-tyow201Qt8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tyow201Qt8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tyow201Qt8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tyow201Qt8 .mbr-section-text {
  color: #767676;
}
.cid-tyow201Qt8 .mbr-section-title {
  color: #1070b9;
}
.cid-tysZtHyKUk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tysZtHyKUk .box {
  margin-bottom: 15px;
}
.cid-tysZtHyKUk .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tysZtHyKUk .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tysZtHyKUk .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tysZtHyKUk .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tysZtHyKUk .mbr-media {
    max-height: 432px;
  }
}
.cid-tysZtHyKUk .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tysZtHyKUk .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tysZtHyKUk .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tysZtHyKUk .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tysZtHyKUk .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tysZtHyKUk .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tysZtHyKUk .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tysZtHyKUk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tysZtHyKUk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tysZtHyKUk .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tysZtHyKUk .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tysZtHyKUk .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tysZtHyKUk .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tysZtHyKUk .item-img {
  overflow: hidden;
}
.cid-tysZtHyKUk .item-img img {
  width: 100%;
}
.cid-tysZtHyKUk .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tysZtHyKUk .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tysZtHyKUk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tysZtHyKUk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tysUDuOb1W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tysUDuOb1W .carousel {
    overflow: hidden;
  }
  .cid-tysUDuOb1W .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tysUDuOb1W .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tysUDuOb1W .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tysUDuOb1W .carousel,
.cid-tysUDuOb1W .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tysUDuOb1W .item-wrapper {
  height: 100%;
  width: 100%;
}
.cid-tysUDuOb1W .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tysUDuOb1W .carousel-caption {
  bottom: 40px;
}
.cid-tysUDuOb1W .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tysUDuOb1W .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tysUDuOb1W .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tysUDuOb1W .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tysUDuOb1W .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tysUDuOb1W .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tysUDuOb1W .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tysUDuOb1W .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tysUDuOb1W .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tysUDuOb1W .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tysUDuOb1W .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tysUDuOb1W .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tysUDuOb1W .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tysUDuOb1W .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tysUDuOb1W .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tysUDuOb1W .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tysUDuOb1W .soc-item::before,
.cid-tysUDuOb1W .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tysUDuOb1W .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tysUDuOb1W .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tysUDuOb1W .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tysUDuOb1W .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tysUDuOb1W .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tysUDuOb1W .text {
  color: #ddc499;
}
.cid-tysUDuOb1W .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB4Vl3vGQ {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB4Vl3vGQ .carousel {
    overflow: hidden;
  }
  .cid-tGB4Vl3vGQ .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB4Vl3vGQ .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB4Vl3vGQ #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB4Vl3vGQ #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB4Vl3vGQ .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB4Vl3vGQ .link-div {
  margin-left: 20px;
}
.cid-tGB4Vl3vGQ .link-div h3 {
  margin-left: 4px;
}
.cid-tGB4Vl3vGQ .mbr-card-title {
  color: #000e2f;
}
#custom-html-3t {
  /* Type valid CSS here */
}
#custom-html-3t .back-button {
  position: fixed;
}
.cid-twLC4bUNBI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-twLC4bUNBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-twLC4bUNBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twLC4bUNBI .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-twLC4bUNBI .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-twLC4bUNBI .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-twLC4bUNBI .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list li:hover {
  color: #2dd5f5 !important;
}
.cid-twLC4bUNBI .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-twLC4bUNBI .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-twLC4bUNBI .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-twLC4bUNBI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-twLC4bUNBI .soc-item {
    padding: 10px;
  }
}
.cid-twLC4bUNBI .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-twLC4bUNBI .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-twLC4bUNBI .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-twLC4bUNBI .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-twLC4bUNBI .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-twLC4bUNBI .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .copyright {
    text-align: center !important;
  }
}
.cid-twLC4bUNBI p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-twLC4bUNBI .row {
    justify-content: flex-start !important;
  }
}
.cid-twLC4bUNBI .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-container {
    margin-bottom: 2rem;
  }
}
.cid-twLC4bUNBI .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-twLC4bUNBI .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-twLC4bUNBI .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-twLC4bUNBI .card-title {
  color: #ffffff;
}
.cid-twLC4bUNBI P {
  color: #22a5e5;
}
.cid-tzIC9qtqSS .navbar-dropdown {
  position: relative !important;
}
.cid-tzIC9qtqSS .navbar-dropdown {
  position: absolute !important;
}
.cid-tzIC9qtqSS nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tzIC9qtqSS .nav-item {
    margin: 0 !important;
  }
}
.cid-tzIC9qtqSS .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-tzIC9qtqSS .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tzIC9qtqSS .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tzIC9qtqSS .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tzIC9qtqSS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzIC9qtqSS .nav-link {
  position: relative;
}
.cid-tzIC9qtqSS .container {
  display: flex;
  margin: auto;
}
.cid-tzIC9qtqSS .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tzIC9qtqSS .dropdown-menu,
.cid-tzIC9qtqSS .navbar.opened {
  background: #000000 !important;
}
.cid-tzIC9qtqSS .nav-item:focus,
.cid-tzIC9qtqSS .nav-link:focus {
  outline: none;
}
.cid-tzIC9qtqSS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzIC9qtqSS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzIC9qtqSS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tzIC9qtqSS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzIC9qtqSS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzIC9qtqSS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzIC9qtqSS .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tzIC9qtqSS .navbar.opened {
  transition: all 0.3s;
}
.cid-tzIC9qtqSS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tzIC9qtqSS .navbar .navbar-logo img {
  width: auto;
}
.cid-tzIC9qtqSS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzIC9qtqSS .navbar.collapsed {
  justify-content: center;
}
.cid-tzIC9qtqSS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzIC9qtqSS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzIC9qtqSS .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tzIC9qtqSS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzIC9qtqSS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzIC9qtqSS .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-tzIC9qtqSS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzIC9qtqSS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tzIC9qtqSS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tzIC9qtqSS .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tzIC9qtqSS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzIC9qtqSS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzIC9qtqSS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzIC9qtqSS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzIC9qtqSS .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-tzIC9qtqSS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tzIC9qtqSS .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tzIC9qtqSS .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tzIC9qtqSS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzIC9qtqSS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzIC9qtqSS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzIC9qtqSS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tzIC9qtqSS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzIC9qtqSS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzIC9qtqSS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzIC9qtqSS .dropdown-item.active,
.cid-tzIC9qtqSS .dropdown-item:active {
  background-color: transparent;
}
.cid-tzIC9qtqSS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzIC9qtqSS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzIC9qtqSS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzIC9qtqSS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tzIC9qtqSS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzIC9qtqSS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzIC9qtqSS ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tzIC9qtqSS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzIC9qtqSS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tzIC9qtqSS button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tzIC9qtqSS button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tzIC9qtqSS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tzIC9qtqSS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tzIC9qtqSS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzIC9qtqSS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tzIC9qtqSS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tzIC9qtqSS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzIC9qtqSS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tzIC9qtqSS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tzIC9qtqSS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tzIC9qtqSS .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tzIC9qtqSS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzIC9qtqSS .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-tzIC9qtqSS .navbar {
    height: 70px;
  }
  .cid-tzIC9qtqSS .navbar.opened {
    height: auto;
  }
  .cid-tzIC9qtqSS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzIC9r4zi2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzIC9r4zi2 .link a {
  background-image: none !important;
}
.cid-tzIC9r4zi2 .item-wrapper {
  margin-bottom: 56px;
}
.cid-tzIC9r4zi2 .date {
  margin-bottom: 6px;
}
.cid-tzIC9r4zi2 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tzIC9r4zi2 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tzIC9r4zi2 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tzIC9r4zi2 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tzIC9r4zi2 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tzIC9r4zi2 svg {
  margin-left: 15px;
}
.cid-tzIC9r4zi2 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tzIC9r4zi2 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tzIC9r4zi2 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tzIC9r4zi2 .row {
  justify-content: center;
}
.cid-tzIC9r4zi2 .p,
.cid-tzIC9r4zi2 .link {
  color: #767676;
}
.cid-tzIC9rAiQJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tzIC9rAiQJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzIC9rAiQJ .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-tzIC9rAiQJ .container {
    padding: 0 30px;
  }
}
.cid-tzIC9rAiQJ .row {
  justify-content: center;
}
.cid-tzIC9rAiQJ .title-wrapper {
  margin-bottom: 55px;
}
.cid-tzIC9rAiQJ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzIC9rAiQJ .card {
    margin-bottom: 30px;
  }
}
.cid-tzIC9rAiQJ .card .card-wrapper {
  display: flex;
}
.cid-tzIC9rAiQJ .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tzIC9rAiQJ .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tzIC9rAiQJ .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tzIC9rAiQJ .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tzIC9rAiQJ .mbr-section-title {
  color: #767676;
}
.cid-tzIC9rAiQJ .mbr-number {
  color: #000000;
}
.cid-tzIC9rAiQJ .mbr-card-title {
  color: #1070b9;
}
.cid-tzIC9rAiQJ .mbr-text {
  color: #767676;
}
.cid-tzIC9sa4F2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tzIC9sa4F2 .mbr-section-title {
  color: #1070b9;
}
.cid-tzIC9sa4F2 .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tzIC9sa4F2 .row {
  justify-content: space-between;
}
.cid-tzIC9sa4F2 .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tzIC9sa4F2 .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tzIC9sa4F2 .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tzIC9sa4F2 .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tzIC9sa4F2 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tzIC9sa4F2 .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tzIC9sa4F2 .link-wrapper {
    justify-content: center;
  }
}
.cid-tzIC9sa4F2 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tzIC9sa4F2 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tzIC9sa4F2 .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tzIC9sa4F2 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tzIC9sa4F2 .link,
.cid-tzIC9sa4F2 .link-icon {
  color: #000000;
}
.cid-tzIC9sa4F2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzIC9sa4F2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzIC9sa4F2 .mbr-text,
.cid-tzIC9sa4F2 .mbr-section-btn {
  color: #767676;
}
.cid-tzIC9sHyvh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzIC9sHyvh .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tzIC9sHyvh .text-block {
  position: relative;
  z-index: 0;
}
.cid-tzIC9sHyvh .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tzIC9sHyvh .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tzIC9sHyvh .box {
  right: 20%;
}
.cid-tzIC9sHyvh .text-box {
  right: 0;
}
.cid-tzIC9sHyvh .mbr-section-title,
.cid-tzIC9sHyvh .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tzIC9sHyvh .text-box {
    display: none;
  }
  .cid-tzIC9sHyvh .mbr-section-title,
  .cid-tzIC9sHyvh .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tzIC9sHyvh .box {
    display: none;
  }
  .cid-tzIC9sHyvh .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tzIC9sHyvh .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzIC9sHyvh .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tzIC9sHyvh .mbr-section-text {
  color: #767676;
}
.cid-tzIC9sHyvh .mbr-section-title {
  color: #1070b9;
}
.cid-tJTGIh1mNH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJTGIh1mNH .box {
  margin-bottom: 15px;
}
.cid-tJTGIh1mNH .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tJTGIh1mNH .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tJTGIh1mNH .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tJTGIh1mNH .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tJTGIh1mNH .mbr-media {
    max-height: 432px;
  }
}
.cid-tJTGIh1mNH .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tJTGIh1mNH .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tJTGIh1mNH .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tJTGIh1mNH .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tJTGIh1mNH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tJTGIh1mNH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tJTGIh1mNH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tJTGIh1mNH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tJTGIh1mNH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tJTGIh1mNH .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tJTGIh1mNH .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tJTGIh1mNH .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tJTGIh1mNH .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tJTGIh1mNH .item-img {
  overflow: hidden;
}
.cid-tJTGIh1mNH .item-img img {
  width: 100%;
}
.cid-tJTGIh1mNH .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tJTGIh1mNH .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tJTGIh1mNH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJTGIh1mNH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFKRzydmPm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tFKRzydmPm .box {
  margin-bottom: 15px;
}
.cid-tFKRzydmPm .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tFKRzydmPm .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tFKRzydmPm .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tFKRzydmPm .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tFKRzydmPm .mbr-media {
    max-height: 432px;
  }
}
.cid-tFKRzydmPm .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tFKRzydmPm .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tFKRzydmPm .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tFKRzydmPm .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tFKRzydmPm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tFKRzydmPm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tFKRzydmPm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tFKRzydmPm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFKRzydmPm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFKRzydmPm .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tFKRzydmPm .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tFKRzydmPm .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tFKRzydmPm .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tFKRzydmPm .item-img {
  overflow: hidden;
}
.cid-tFKRzydmPm .item-img img {
  width: 100%;
}
.cid-tFKRzydmPm .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tFKRzydmPm .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tFKRzydmPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFKRzydmPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzIC9tRhtl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tzIC9tRhtl .carousel {
    overflow: hidden;
  }
  .cid-tzIC9tRhtl .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tzIC9tRhtl .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tzIC9tRhtl .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tzIC9tRhtl .carousel,
.cid-tzIC9tRhtl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tzIC9tRhtl .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tzIC9tRhtl .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tzIC9tRhtl .item-wrapper {
    height: 215px;
  }
}
.cid-tzIC9tRhtl .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tzIC9tRhtl .carousel-caption {
  bottom: 40px;
}
.cid-tzIC9tRhtl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tzIC9tRhtl .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tzIC9tRhtl .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tzIC9tRhtl .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tzIC9tRhtl .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tzIC9tRhtl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzIC9tRhtl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzIC9tRhtl .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzIC9tRhtl .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tzIC9tRhtl .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tzIC9tRhtl .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tzIC9tRhtl .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tzIC9tRhtl .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tzIC9tRhtl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tzIC9tRhtl .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tzIC9tRhtl .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tzIC9tRhtl .soc-item::before,
.cid-tzIC9tRhtl .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tzIC9tRhtl .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tzIC9tRhtl .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tzIC9tRhtl .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tzIC9tRhtl .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tzIC9tRhtl .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tzIC9tRhtl .text {
  color: #ddc499;
}
.cid-tzIC9tRhtl .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tGB64oQ8W9 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGB64oQ8W9 .carousel {
    overflow: hidden;
  }
  .cid-tGB64oQ8W9 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGB64oQ8W9 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGB64oQ8W9 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGB64oQ8W9 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGB64oQ8W9 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGB64oQ8W9 .link-div {
  margin-left: 20px;
}
.cid-tGB64oQ8W9 .link-div h3 {
  margin-left: 4px;
}
.cid-tGB64oQ8W9 .mbr-card-title {
  color: #000e2f;
}
#custom-html-5a {
  /* Type valid CSS here */
}
#custom-html-5a .back-button {
  position: fixed;
}
.cid-tzIC9uRQbO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tzIC9uRQbO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzIC9uRQbO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzIC9uRQbO .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzIC9uRQbO .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tzIC9uRQbO .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tzIC9uRQbO .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tzIC9uRQbO .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tzIC9uRQbO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzIC9uRQbO .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tzIC9uRQbO .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tzIC9uRQbO .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tzIC9uRQbO .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tzIC9uRQbO .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tzIC9uRQbO .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tzIC9uRQbO .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tzIC9uRQbO .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tzIC9uRQbO .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tzIC9uRQbO .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tzIC9uRQbO .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tzIC9uRQbO .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tzIC9uRQbO .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tzIC9uRQbO .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tzIC9uRQbO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tzIC9uRQbO .soc-item {
    padding: 10px;
  }
}
.cid-tzIC9uRQbO .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tzIC9uRQbO .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tzIC9uRQbO .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tzIC9uRQbO .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tzIC9uRQbO .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tzIC9uRQbO .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tzIC9uRQbO .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tzIC9uRQbO .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tzIC9uRQbO .copyright {
    text-align: center !important;
  }
}
.cid-tzIC9uRQbO p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tzIC9uRQbO .row {
    justify-content: flex-start !important;
  }
}
.cid-tzIC9uRQbO .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tzIC9uRQbO .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tzIC9uRQbO .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tzIC9uRQbO .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tzIC9uRQbO .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tzIC9uRQbO .card-title {
  color: #ffffff;
}
.cid-tzIC9uRQbO P {
  color: #22a5e5;
}
.cid-tGoOtkUI9p .navbar-dropdown {
  position: relative !important;
}
.cid-tGoOtkUI9p .navbar-dropdown {
  position: absolute !important;
}
.cid-tGoOtkUI9p nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-tGoOtkUI9p .nav-item {
    margin: 0 !important;
  }
}
.cid-tGoOtkUI9p .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-tGoOtkUI9p .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-tGoOtkUI9p .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tGoOtkUI9p .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-tGoOtkUI9p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGoOtkUI9p .nav-link {
  position: relative;
}
.cid-tGoOtkUI9p .container {
  display: flex;
  margin: auto;
}
.cid-tGoOtkUI9p .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGoOtkUI9p .dropdown-menu,
.cid-tGoOtkUI9p .navbar.opened {
  background: #000000 !important;
}
.cid-tGoOtkUI9p .nav-item:focus,
.cid-tGoOtkUI9p .nav-link:focus {
  outline: none;
}
.cid-tGoOtkUI9p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGoOtkUI9p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGoOtkUI9p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGoOtkUI9p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGoOtkUI9p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGoOtkUI9p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGoOtkUI9p .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-tGoOtkUI9p .navbar.opened {
  transition: all 0.3s;
}
.cid-tGoOtkUI9p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGoOtkUI9p .navbar .navbar-logo img {
  width: auto;
}
.cid-tGoOtkUI9p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGoOtkUI9p .navbar.collapsed {
  justify-content: center;
}
.cid-tGoOtkUI9p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGoOtkUI9p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGoOtkUI9p .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGoOtkUI9p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGoOtkUI9p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGoOtkUI9p .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-tGoOtkUI9p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGoOtkUI9p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGoOtkUI9p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGoOtkUI9p .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-tGoOtkUI9p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGoOtkUI9p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGoOtkUI9p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGoOtkUI9p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGoOtkUI9p .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-tGoOtkUI9p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGoOtkUI9p .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-tGoOtkUI9p .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGoOtkUI9p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGoOtkUI9p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGoOtkUI9p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGoOtkUI9p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGoOtkUI9p .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGoOtkUI9p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGoOtkUI9p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGoOtkUI9p .dropdown-item.active,
.cid-tGoOtkUI9p .dropdown-item:active {
  background-color: transparent;
}
.cid-tGoOtkUI9p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGoOtkUI9p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGoOtkUI9p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGoOtkUI9p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tGoOtkUI9p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGoOtkUI9p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGoOtkUI9p ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tGoOtkUI9p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGoOtkUI9p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-tGoOtkUI9p button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-tGoOtkUI9p button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tGoOtkUI9p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGoOtkUI9p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGoOtkUI9p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGoOtkUI9p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGoOtkUI9p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGoOtkUI9p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGoOtkUI9p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGoOtkUI9p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGoOtkUI9p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGoOtkUI9p .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGoOtkUI9p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGoOtkUI9p .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-tGoOtkUI9p .navbar {
    height: 70px;
  }
  .cid-tGoOtkUI9p .navbar.opened {
    height: auto;
  }
  .cid-tGoOtkUI9p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGoOtll4aW {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGoOtll4aW .link a {
  background-image: none !important;
}
.cid-tGoOtll4aW .item-wrapper {
  margin-bottom: 56px;
}
.cid-tGoOtll4aW .date {
  margin-bottom: 6px;
}
.cid-tGoOtll4aW .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-tGoOtll4aW .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-tGoOtll4aW a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tGoOtll4aW rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tGoOtll4aW .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tGoOtll4aW svg {
  margin-left: 15px;
}
.cid-tGoOtll4aW path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tGoOtll4aW .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tGoOtll4aW .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tGoOtll4aW .row {
  justify-content: center;
}
.cid-tGoOtll4aW .p,
.cid-tGoOtll4aW .link {
  color: #767676;
}
.cid-tGoOtlF0Qw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGoOtlF0Qw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoOtlF0Qw .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-tGoOtlF0Qw .container {
    padding: 0 30px;
  }
}
.cid-tGoOtlF0Qw .row {
  justify-content: center;
}
.cid-tGoOtlF0Qw .title-wrapper {
  margin-bottom: 55px;
}
.cid-tGoOtlF0Qw .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGoOtlF0Qw .card {
    margin-bottom: 30px;
  }
}
.cid-tGoOtlF0Qw .card .card-wrapper {
  display: flex;
}
.cid-tGoOtlF0Qw .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-tGoOtlF0Qw .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-tGoOtlF0Qw .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-tGoOtlF0Qw .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-tGoOtlF0Qw .mbr-section-title {
  color: #767676;
}
.cid-tGoOtlF0Qw .mbr-number {
  color: #000000;
}
.cid-tGoOtlF0Qw .mbr-card-title {
  color: #1070b9;
}
.cid-tGoOtlF0Qw .mbr-text {
  color: #767676;
}
.cid-tGoOtm0URb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGoOtm0URb .mbr-section-title {
  color: #1070b9;
}
.cid-tGoOtm0URb .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-tGoOtm0URb .row {
  justify-content: space-between;
}
.cid-tGoOtm0URb .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tGoOtm0URb .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tGoOtm0URb .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-tGoOtm0URb .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tGoOtm0URb .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-tGoOtm0URb .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGoOtm0URb .link-wrapper {
    justify-content: center;
  }
}
.cid-tGoOtm0URb .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tGoOtm0URb .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGoOtm0URb .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tGoOtm0URb .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tGoOtm0URb .link,
.cid-tGoOtm0URb .link-icon {
  color: #000000;
}
.cid-tGoOtm0URb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoOtm0URb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGoOtm0URb .mbr-text,
.cid-tGoOtm0URb .mbr-section-btn {
  color: #767676;
}
.cid-tGoOtmkwo8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tGoOtmkwo8 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tGoOtmkwo8 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tGoOtmkwo8 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-tGoOtmkwo8 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tGoOtmkwo8 .box {
  right: 20%;
}
.cid-tGoOtmkwo8 .text-box {
  right: 0;
}
.cid-tGoOtmkwo8 .mbr-section-title,
.cid-tGoOtmkwo8 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tGoOtmkwo8 .text-box {
    display: none;
  }
  .cid-tGoOtmkwo8 .mbr-section-title,
  .cid-tGoOtmkwo8 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tGoOtmkwo8 .box {
    display: none;
  }
  .cid-tGoOtmkwo8 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tGoOtmkwo8 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGoOtmkwo8 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tGoOtmkwo8 .mbr-section-text {
  color: #767676;
}
.cid-tGoOtmkwo8 .mbr-section-title {
  color: #1070b9;
}
.cid-tGoOtmFVHH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGoOtmFVHH .box {
  margin-bottom: 15px;
}
.cid-tGoOtmFVHH .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGoOtmFVHH .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGoOtmFVHH .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGoOtmFVHH .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGoOtmFVHH .mbr-media {
    max-height: 432px;
  }
}
.cid-tGoOtmFVHH .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGoOtmFVHH .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGoOtmFVHH .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGoOtmFVHH .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGoOtmFVHH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGoOtmFVHH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGoOtmFVHH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGoOtmFVHH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGoOtmFVHH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGoOtmFVHH .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGoOtmFVHH .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGoOtmFVHH .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGoOtmFVHH .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGoOtmFVHH .item-img {
  overflow: hidden;
}
.cid-tGoOtmFVHH .item-img img {
  width: 100%;
}
.cid-tGoOtmFVHH .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGoOtmFVHH .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGoOtmFVHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoOtmFVHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGoOtnaZsm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGoOtnaZsm .box {
  margin-bottom: 15px;
}
.cid-tGoOtnaZsm .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-tGoOtnaZsm .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-tGoOtnaZsm .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-tGoOtnaZsm .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-tGoOtnaZsm .mbr-media {
    max-height: 432px;
  }
}
.cid-tGoOtnaZsm .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tGoOtnaZsm .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-tGoOtnaZsm .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGoOtnaZsm .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGoOtnaZsm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tGoOtnaZsm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGoOtnaZsm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tGoOtnaZsm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGoOtnaZsm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGoOtnaZsm .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-tGoOtnaZsm .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tGoOtnaZsm .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-tGoOtnaZsm .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tGoOtnaZsm .item-img {
  overflow: hidden;
}
.cid-tGoOtnaZsm .item-img img {
  width: 100%;
}
.cid-tGoOtnaZsm .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-tGoOtnaZsm .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-tGoOtnaZsm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoOtnaZsm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGoOtoORvK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tGoOtoORvK .carousel {
    overflow: hidden;
  }
  .cid-tGoOtoORvK .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGoOtoORvK .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tGoOtoORvK .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tGoOtoORvK .carousel,
.cid-tGoOtoORvK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tGoOtoORvK .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGoOtoORvK .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tGoOtoORvK .item-wrapper {
    height: 215px;
  }
}
.cid-tGoOtoORvK .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tGoOtoORvK .carousel-caption {
  bottom: 40px;
}
.cid-tGoOtoORvK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tGoOtoORvK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tGoOtoORvK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tGoOtoORvK .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tGoOtoORvK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tGoOtoORvK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGoOtoORvK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGoOtoORvK .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGoOtoORvK .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tGoOtoORvK .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tGoOtoORvK .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tGoOtoORvK .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tGoOtoORvK .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tGoOtoORvK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGoOtoORvK .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tGoOtoORvK .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tGoOtoORvK .soc-item::before,
.cid-tGoOtoORvK .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tGoOtoORvK .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tGoOtoORvK .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tGoOtoORvK .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tGoOtoORvK .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tGoOtoORvK .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tGoOtoORvK .text {
  color: #ddc499;
}
.cid-tGoOtoORvK .one {
  color: #c0bcb7;
  font-style: italic;
}
#custom-html-fp {
  /* Type valid CSS here */
}
#custom-html-fp .back-button {
  position: fixed;
}
.cid-tGBdpMfqW4 {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-tGBdpMfqW4 .carousel {
    overflow: hidden;
  }
  .cid-tGBdpMfqW4 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tGBdpMfqW4 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGBdpMfqW4 #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-tGBdpMfqW4 #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-tGBdpMfqW4 .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-tGBdpMfqW4 .link-div {
  margin-left: 20px;
}
.cid-tGBdpMfqW4 .link-div h3 {
  margin-left: 4px;
}
.cid-tGBdpMfqW4 .mbr-card-title {
  color: #000e2f;
}
.cid-tGoOtpvp5p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tGoOtpvp5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGoOtpvp5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGoOtpvp5p .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tGoOtpvp5p .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tGoOtpvp5p .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tGoOtpvp5p .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tGoOtpvp5p .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tGoOtpvp5p .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGoOtpvp5p .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tGoOtpvp5p .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tGoOtpvp5p .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tGoOtpvp5p .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-tGoOtpvp5p .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tGoOtpvp5p .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-tGoOtpvp5p .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tGoOtpvp5p .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tGoOtpvp5p .list li:hover {
  color: #2dd5f5 !important;
}
.cid-tGoOtpvp5p .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tGoOtpvp5p .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tGoOtpvp5p .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tGoOtpvp5p .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tGoOtpvp5p .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tGoOtpvp5p .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tGoOtpvp5p .soc-item {
    padding: 10px;
  }
}
.cid-tGoOtpvp5p .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-tGoOtpvp5p .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-tGoOtpvp5p .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-tGoOtpvp5p .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-tGoOtpvp5p .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tGoOtpvp5p .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tGoOtpvp5p .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-tGoOtpvp5p .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tGoOtpvp5p .copyright {
    text-align: center !important;
  }
}
.cid-tGoOtpvp5p p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tGoOtpvp5p .row {
    justify-content: flex-start !important;
  }
}
.cid-tGoOtpvp5p .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tGoOtpvp5p .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tGoOtpvp5p .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tGoOtpvp5p .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tGoOtpvp5p .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tGoOtpvp5p .card-title {
  color: #ffffff;
}
.cid-tGoOtpvp5p P {
  color: #22a5e5;
}
.cid-u0jpDw3byq .navbar-dropdown {
  position: relative !important;
}
.cid-u0jpDw3byq .navbar-dropdown {
  position: absolute !important;
}
.cid-u0jpDw3byq nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0jpDw3byq .nav-item {
    margin: 0 !important;
  }
}
.cid-u0jpDw3byq .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-u0jpDw3byq .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0jpDw3byq .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0jpDw3byq .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0jpDw3byq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0jpDw3byq .nav-link {
  position: relative;
}
.cid-u0jpDw3byq .container {
  display: flex;
  margin: auto;
}
.cid-u0jpDw3byq .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0jpDw3byq .dropdown-menu,
.cid-u0jpDw3byq .navbar.opened {
  background: #000000 !important;
}
.cid-u0jpDw3byq .nav-item:focus,
.cid-u0jpDw3byq .nav-link:focus {
  outline: none;
}
.cid-u0jpDw3byq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0jpDw3byq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0jpDw3byq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0jpDw3byq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0jpDw3byq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0jpDw3byq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0jpDw3byq .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0jpDw3byq .navbar.opened {
  transition: all 0.3s;
}
.cid-u0jpDw3byq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0jpDw3byq .navbar .navbar-logo img {
  width: auto;
}
.cid-u0jpDw3byq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0jpDw3byq .navbar.collapsed {
  justify-content: center;
}
.cid-u0jpDw3byq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0jpDw3byq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0jpDw3byq .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0jpDw3byq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0jpDw3byq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0jpDw3byq .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-u0jpDw3byq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0jpDw3byq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0jpDw3byq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0jpDw3byq .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0jpDw3byq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0jpDw3byq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0jpDw3byq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0jpDw3byq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0jpDw3byq .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-u0jpDw3byq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0jpDw3byq .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0jpDw3byq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0jpDw3byq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0jpDw3byq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0jpDw3byq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0jpDw3byq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0jpDw3byq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0jpDw3byq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0jpDw3byq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0jpDw3byq .dropdown-item.active,
.cid-u0jpDw3byq .dropdown-item:active {
  background-color: transparent;
}
.cid-u0jpDw3byq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0jpDw3byq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0jpDw3byq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0jpDw3byq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0jpDw3byq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0jpDw3byq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0jpDw3byq ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0jpDw3byq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0jpDw3byq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0jpDw3byq button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0jpDw3byq button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0jpDw3byq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0jpDw3byq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0jpDw3byq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jpDw3byq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0jpDw3byq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0jpDw3byq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jpDw3byq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0jpDw3byq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0jpDw3byq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0jpDw3byq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0jpDw3byq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0jpDw3byq .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-u0jpDw3byq .navbar {
    height: 70px;
  }
  .cid-u0jpDw3byq .navbar.opened {
    height: auto;
  }
  .cid-u0jpDw3byq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0jpDwAEQ2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jpDwAEQ2 .link a {
  background-image: none !important;
}
.cid-u0jpDwAEQ2 .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0jpDwAEQ2 .date {
  margin-bottom: 6px;
}
.cid-u0jpDwAEQ2 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0jpDwAEQ2 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0jpDwAEQ2 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0jpDwAEQ2 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0jpDwAEQ2 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0jpDwAEQ2 svg {
  margin-left: 15px;
}
.cid-u0jpDwAEQ2 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0jpDwAEQ2 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0jpDwAEQ2 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0jpDwAEQ2 .row {
  justify-content: center;
}
.cid-u0jpDwAEQ2 .p,
.cid-u0jpDwAEQ2 .link {
  color: #767676;
}
.cid-u0jpDwZHZ5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0jpDwZHZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jpDwZHZ5 .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-u0jpDwZHZ5 .container {
    padding: 0 30px;
  }
}
.cid-u0jpDwZHZ5 .row {
  justify-content: center;
}
.cid-u0jpDwZHZ5 .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0jpDwZHZ5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0jpDwZHZ5 .card {
    margin-bottom: 30px;
  }
}
.cid-u0jpDwZHZ5 .card .card-wrapper {
  display: flex;
}
.cid-u0jpDwZHZ5 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0jpDwZHZ5 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0jpDwZHZ5 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0jpDwZHZ5 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0jpDwZHZ5 .mbr-section-title {
  color: #767676;
}
.cid-u0jpDwZHZ5 .mbr-number {
  color: #000000;
}
.cid-u0jpDwZHZ5 .mbr-card-title {
  color: #1070b9;
}
.cid-u0jpDwZHZ5 .mbr-text {
  color: #767676;
}
.cid-u0jpDxougX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0jpDxougX .mbr-section-title {
  color: #1070b9;
}
.cid-u0jpDxougX .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0jpDxougX .row {
  justify-content: space-between;
}
.cid-u0jpDxougX .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0jpDxougX .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0jpDxougX .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0jpDxougX .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0jpDxougX .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0jpDxougX .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0jpDxougX .link-wrapper {
    justify-content: center;
  }
}
.cid-u0jpDxougX .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0jpDxougX .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0jpDxougX .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0jpDxougX .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0jpDxougX .link,
.cid-u0jpDxougX .link-icon {
  color: #000000;
}
.cid-u0jpDxougX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jpDxougX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jpDxougX .mbr-text,
.cid-u0jpDxougX .mbr-section-btn {
  color: #767676;
}
.cid-u0jpDxIj32 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0jpDxIj32 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0jpDxIj32 .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0jpDxIj32 .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0jpDxIj32 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0jpDxIj32 .box {
  right: 20%;
}
.cid-u0jpDxIj32 .text-box {
  right: 0;
}
.cid-u0jpDxIj32 .mbr-section-title,
.cid-u0jpDxIj32 .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0jpDxIj32 .text-box {
    display: none;
  }
  .cid-u0jpDxIj32 .mbr-section-title,
  .cid-u0jpDxIj32 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0jpDxIj32 .box {
    display: none;
  }
  .cid-u0jpDxIj32 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0jpDxIj32 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0jpDxIj32 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0jpDxIj32 .mbr-section-text {
  color: #767676;
}
.cid-u0jpDxIj32 .mbr-section-title {
  color: #1070b9;
}
.cid-u0jpDy46b9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0jpDy46b9 .box {
  margin-bottom: 15px;
}
.cid-u0jpDy46b9 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0jpDy46b9 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0jpDy46b9 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0jpDy46b9 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0jpDy46b9 .mbr-media {
    max-height: 432px;
  }
}
.cid-u0jpDy46b9 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0jpDy46b9 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0jpDy46b9 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0jpDy46b9 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0jpDy46b9 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0jpDy46b9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0jpDy46b9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0jpDy46b9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0jpDy46b9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0jpDy46b9 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0jpDy46b9 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0jpDy46b9 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0jpDy46b9 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0jpDy46b9 .item-img {
  overflow: hidden;
}
.cid-u0jpDy46b9 .item-img img {
  width: 100%;
}
.cid-u0jpDy46b9 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0jpDy46b9 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0jpDy46b9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jpDy46b9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1OPenx1l4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1OPenx1l4 .box {
  margin-bottom: 15px;
}
.cid-u1OPenx1l4 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u1OPenx1l4 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u1OPenx1l4 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u1OPenx1l4 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u1OPenx1l4 .mbr-media {
    max-height: 432px;
  }
}
.cid-u1OPenx1l4 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u1OPenx1l4 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u1OPenx1l4 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u1OPenx1l4 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u1OPenx1l4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u1OPenx1l4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u1OPenx1l4 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u1OPenx1l4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u1OPenx1l4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u1OPenx1l4 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u1OPenx1l4 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u1OPenx1l4 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u1OPenx1l4 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u1OPenx1l4 .item-img {
  overflow: hidden;
}
.cid-u1OPenx1l4 .item-img img {
  width: 100%;
}
.cid-u1OPenx1l4 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u1OPenx1l4 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u1OPenx1l4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1OPenx1l4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jpDyCNRN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0jpDyCNRN .carousel {
    overflow: hidden;
  }
  .cid-u0jpDyCNRN .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jpDyCNRN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0jpDyCNRN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0jpDyCNRN .carousel,
.cid-u0jpDyCNRN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0jpDyCNRN .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0jpDyCNRN .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0jpDyCNRN .item-wrapper {
    height: 215px;
  }
}
.cid-u0jpDyCNRN .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0jpDyCNRN .carousel-caption {
  bottom: 40px;
}
.cid-u0jpDyCNRN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0jpDyCNRN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0jpDyCNRN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0jpDyCNRN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0jpDyCNRN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0jpDyCNRN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0jpDyCNRN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0jpDyCNRN .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jpDyCNRN .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0jpDyCNRN .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0jpDyCNRN .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0jpDyCNRN .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0jpDyCNRN .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0jpDyCNRN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0jpDyCNRN .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0jpDyCNRN .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0jpDyCNRN .soc-item::before,
.cid-u0jpDyCNRN .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0jpDyCNRN .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0jpDyCNRN .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0jpDyCNRN .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0jpDyCNRN .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0jpDyCNRN .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0jpDyCNRN .text {
  color: #ddc499;
}
.cid-u0jpDyCNRN .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0jpDzgzHQ {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0jpDzgzHQ .carousel {
    overflow: hidden;
  }
  .cid-u0jpDzgzHQ .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0jpDzgzHQ .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0jpDzgzHQ #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0jpDzgzHQ #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0jpDzgzHQ .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0jpDzgzHQ .link-div {
  margin-left: 20px;
}
.cid-u0jpDzgzHQ .link-div h3 {
  margin-left: 4px;
}
.cid-u0jpDzgzHQ .mbr-card-title {
  color: #000e2f;
}
#custom-html-lo {
  /* Type valid CSS here */
}
#custom-html-lo .back-button {
  position: fixed;
}
.cid-u0jpDzBVDN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0jpDzBVDN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0jpDzBVDN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0jpDzBVDN .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0jpDzBVDN .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0jpDzBVDN .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0jpDzBVDN .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0jpDzBVDN .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0jpDzBVDN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jpDzBVDN .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0jpDzBVDN .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0jpDzBVDN .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0jpDzBVDN .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0jpDzBVDN .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0jpDzBVDN .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0jpDzBVDN .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0jpDzBVDN .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0jpDzBVDN .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0jpDzBVDN .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0jpDzBVDN .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0jpDzBVDN .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0jpDzBVDN .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0jpDzBVDN .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0jpDzBVDN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0jpDzBVDN .soc-item {
    padding: 10px;
  }
}
.cid-u0jpDzBVDN .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0jpDzBVDN .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0jpDzBVDN .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0jpDzBVDN .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0jpDzBVDN .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0jpDzBVDN .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0jpDzBVDN .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0jpDzBVDN .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0jpDzBVDN .copyright {
    text-align: center !important;
  }
}
.cid-u0jpDzBVDN p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0jpDzBVDN .row {
    justify-content: flex-start !important;
  }
}
.cid-u0jpDzBVDN .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0jpDzBVDN .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0jpDzBVDN .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0jpDzBVDN .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0jpDzBVDN .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0jpDzBVDN .card-title {
  color: #ffffff;
}
.cid-u0jpDzBVDN P {
  color: #22a5e5;
}
.cid-u0LyEVPzGS .navbar-dropdown {
  position: relative !important;
}
.cid-u0LyEVPzGS .navbar-dropdown {
  position: absolute !important;
}
.cid-u0LyEVPzGS nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0LyEVPzGS .nav-item {
    margin: 0 !important;
  }
}
.cid-u0LyEVPzGS .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-u0LyEVPzGS .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0LyEVPzGS .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0LyEVPzGS .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0LyEVPzGS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0LyEVPzGS .nav-link {
  position: relative;
}
.cid-u0LyEVPzGS .container {
  display: flex;
  margin: auto;
}
.cid-u0LyEVPzGS .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0LyEVPzGS .dropdown-menu,
.cid-u0LyEVPzGS .navbar.opened {
  background: #000000 !important;
}
.cid-u0LyEVPzGS .nav-item:focus,
.cid-u0LyEVPzGS .nav-link:focus {
  outline: none;
}
.cid-u0LyEVPzGS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0LyEVPzGS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0LyEVPzGS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0LyEVPzGS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0LyEVPzGS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0LyEVPzGS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0LyEVPzGS .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0LyEVPzGS .navbar.opened {
  transition: all 0.3s;
}
.cid-u0LyEVPzGS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0LyEVPzGS .navbar .navbar-logo img {
  width: auto;
}
.cid-u0LyEVPzGS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0LyEVPzGS .navbar.collapsed {
  justify-content: center;
}
.cid-u0LyEVPzGS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0LyEVPzGS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0LyEVPzGS .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0LyEVPzGS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0LyEVPzGS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0LyEVPzGS .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-u0LyEVPzGS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0LyEVPzGS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0LyEVPzGS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0LyEVPzGS .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0LyEVPzGS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0LyEVPzGS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0LyEVPzGS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0LyEVPzGS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0LyEVPzGS .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-u0LyEVPzGS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0LyEVPzGS .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0LyEVPzGS .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0LyEVPzGS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0LyEVPzGS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0LyEVPzGS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0LyEVPzGS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0LyEVPzGS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0LyEVPzGS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0LyEVPzGS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0LyEVPzGS .dropdown-item.active,
.cid-u0LyEVPzGS .dropdown-item:active {
  background-color: transparent;
}
.cid-u0LyEVPzGS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0LyEVPzGS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0LyEVPzGS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0LyEVPzGS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0LyEVPzGS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0LyEVPzGS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0LyEVPzGS ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0LyEVPzGS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0LyEVPzGS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0LyEVPzGS button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0LyEVPzGS button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0LyEVPzGS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0LyEVPzGS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0LyEVPzGS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0LyEVPzGS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0LyEVPzGS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0LyEVPzGS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0LyEVPzGS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0LyEVPzGS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0LyEVPzGS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0LyEVPzGS .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0LyEVPzGS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0LyEVPzGS .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-u0LyEVPzGS .navbar {
    height: 70px;
  }
  .cid-u0LyEVPzGS .navbar.opened {
    height: auto;
  }
  .cid-u0LyEVPzGS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0LyEWoCyh {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0LyEWoCyh .link a {
  background-image: none !important;
}
.cid-u0LyEWoCyh .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0LyEWoCyh .date {
  margin-bottom: 6px;
}
.cid-u0LyEWoCyh .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0LyEWoCyh .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0LyEWoCyh a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0LyEWoCyh rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0LyEWoCyh .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0LyEWoCyh svg {
  margin-left: 15px;
}
.cid-u0LyEWoCyh path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0LyEWoCyh .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0LyEWoCyh .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0LyEWoCyh .row {
  justify-content: center;
}
.cid-u0LyEWoCyh .p,
.cid-u0LyEWoCyh .link {
  color: #767676;
}
.cid-u0LyEWO01A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0LyEWO01A .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LyEWO01A .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-u0LyEWO01A .container {
    padding: 0 30px;
  }
}
.cid-u0LyEWO01A .row {
  justify-content: center;
}
.cid-u0LyEWO01A .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0LyEWO01A .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0LyEWO01A .card {
    margin-bottom: 30px;
  }
}
.cid-u0LyEWO01A .card .card-wrapper {
  display: flex;
}
.cid-u0LyEWO01A .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0LyEWO01A .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0LyEWO01A .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0LyEWO01A .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0LyEWO01A .mbr-section-title {
  color: #767676;
}
.cid-u0LyEWO01A .mbr-number {
  color: #000000;
}
.cid-u0LyEWO01A .mbr-card-title {
  color: #1070b9;
}
.cid-u0LyEWO01A .mbr-text {
  color: #767676;
}
.cid-u0LyEXcmnm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0LyEXcmnm .mbr-section-title {
  color: #1070b9;
}
.cid-u0LyEXcmnm .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0LyEXcmnm .row {
  justify-content: space-between;
}
.cid-u0LyEXcmnm .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0LyEXcmnm .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0LyEXcmnm .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0LyEXcmnm .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0LyEXcmnm .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0LyEXcmnm .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0LyEXcmnm .link-wrapper {
    justify-content: center;
  }
}
.cid-u0LyEXcmnm .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0LyEXcmnm .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0LyEXcmnm .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0LyEXcmnm .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0LyEXcmnm .link,
.cid-u0LyEXcmnm .link-icon {
  color: #000000;
}
.cid-u0LyEXcmnm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LyEXcmnm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0LyEXcmnm .mbr-text,
.cid-u0LyEXcmnm .mbr-section-btn {
  color: #767676;
}
.cid-u0LyEXytKP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0LyEXytKP .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0LyEXytKP .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0LyEXytKP .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0LyEXytKP .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0LyEXytKP .box {
  right: 20%;
}
.cid-u0LyEXytKP .text-box {
  right: 0;
}
.cid-u0LyEXytKP .mbr-section-title,
.cid-u0LyEXytKP .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0LyEXytKP .text-box {
    display: none;
  }
  .cid-u0LyEXytKP .mbr-section-title,
  .cid-u0LyEXytKP .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0LyEXytKP .box {
    display: none;
  }
  .cid-u0LyEXytKP .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0LyEXytKP .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0LyEXytKP .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0LyEXytKP .mbr-section-text {
  color: #767676;
}
.cid-u0LyEXytKP .mbr-section-title {
  color: #1070b9;
}
.cid-u0LyEYlPiv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0LyEYlPiv .carousel {
    overflow: hidden;
  }
  .cid-u0LyEYlPiv .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0LyEYlPiv .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0LyEYlPiv .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0LyEYlPiv .carousel,
.cid-u0LyEYlPiv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0LyEYlPiv .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0LyEYlPiv .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0LyEYlPiv .item-wrapper {
    height: 215px;
  }
}
.cid-u0LyEYlPiv .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0LyEYlPiv .carousel-caption {
  bottom: 40px;
}
.cid-u0LyEYlPiv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0LyEYlPiv .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0LyEYlPiv .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0LyEYlPiv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0LyEYlPiv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0LyEYlPiv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0LyEYlPiv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0LyEYlPiv .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0LyEYlPiv .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0LyEYlPiv .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0LyEYlPiv .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0LyEYlPiv .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0LyEYlPiv .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0LyEYlPiv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0LyEYlPiv .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0LyEYlPiv .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0LyEYlPiv .soc-item::before,
.cid-u0LyEYlPiv .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0LyEYlPiv .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0LyEYlPiv .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0LyEYlPiv .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0LyEYlPiv .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0LyEYlPiv .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0LyEYlPiv .text {
  color: #ddc499;
}
.cid-u0LyEYlPiv .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0LyEYJIDT {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0LyEYJIDT .carousel {
    overflow: hidden;
  }
  .cid-u0LyEYJIDT .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0LyEYJIDT .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0LyEYJIDT #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0LyEYJIDT #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0LyEYJIDT .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0LyEYJIDT .link-div {
  margin-left: 20px;
}
.cid-u0LyEYJIDT .link-div h3 {
  margin-left: 4px;
}
.cid-u0LyEYJIDT .mbr-card-title {
  color: #000e2f;
}
#custom-html-m8 {
  /* Type valid CSS here */
}
#custom-html-m8 .back-button {
  position: fixed;
}
.cid-u0LyEZ464p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0LyEZ464p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LyEZ464p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0LyEZ464p .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0LyEZ464p .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0LyEZ464p .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0LyEZ464p .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0LyEZ464p .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0LyEZ464p .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0LyEZ464p .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0LyEZ464p .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0LyEZ464p .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0LyEZ464p .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0LyEZ464p .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0LyEZ464p .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0LyEZ464p .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0LyEZ464p .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0LyEZ464p .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0LyEZ464p .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0LyEZ464p .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0LyEZ464p .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0LyEZ464p .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0LyEZ464p .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0LyEZ464p .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0LyEZ464p .soc-item {
    padding: 10px;
  }
}
.cid-u0LyEZ464p .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0LyEZ464p .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0LyEZ464p .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0LyEZ464p .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0LyEZ464p .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0LyEZ464p .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0LyEZ464p .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0LyEZ464p .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0LyEZ464p .copyright {
    text-align: center !important;
  }
}
.cid-u0LyEZ464p p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0LyEZ464p .row {
    justify-content: flex-start !important;
  }
}
.cid-u0LyEZ464p .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0LyEZ464p .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0LyEZ464p .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0LyEZ464p .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0LyEZ464p .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0LyEZ464p .card-title {
  color: #ffffff;
}
.cid-u0LyEZ464p P {
  color: #22a5e5;
}
.cid-u0Lzs1Drn5 .navbar-dropdown {
  position: relative !important;
}
.cid-u0Lzs1Drn5 .navbar-dropdown {
  position: absolute !important;
}
.cid-u0Lzs1Drn5 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0Lzs1Drn5 .nav-item {
    margin: 0 !important;
  }
}
.cid-u0Lzs1Drn5 .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-u0Lzs1Drn5 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0Lzs1Drn5 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0Lzs1Drn5 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0Lzs1Drn5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0Lzs1Drn5 .nav-link {
  position: relative;
}
.cid-u0Lzs1Drn5 .container {
  display: flex;
  margin: auto;
}
.cid-u0Lzs1Drn5 .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0Lzs1Drn5 .dropdown-menu,
.cid-u0Lzs1Drn5 .navbar.opened {
  background: #000000 !important;
}
.cid-u0Lzs1Drn5 .nav-item:focus,
.cid-u0Lzs1Drn5 .nav-link:focus {
  outline: none;
}
.cid-u0Lzs1Drn5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0Lzs1Drn5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0Lzs1Drn5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0Lzs1Drn5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0Lzs1Drn5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0Lzs1Drn5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0Lzs1Drn5 .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0Lzs1Drn5 .navbar.opened {
  transition: all 0.3s;
}
.cid-u0Lzs1Drn5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0Lzs1Drn5 .navbar .navbar-logo img {
  width: auto;
}
.cid-u0Lzs1Drn5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0Lzs1Drn5 .navbar.collapsed {
  justify-content: center;
}
.cid-u0Lzs1Drn5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0Lzs1Drn5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0Lzs1Drn5 .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0Lzs1Drn5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0Lzs1Drn5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0Lzs1Drn5 .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-u0Lzs1Drn5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0Lzs1Drn5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0Lzs1Drn5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0Lzs1Drn5 .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0Lzs1Drn5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0Lzs1Drn5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0Lzs1Drn5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0Lzs1Drn5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0Lzs1Drn5 .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-u0Lzs1Drn5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0Lzs1Drn5 .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0Lzs1Drn5 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0Lzs1Drn5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0Lzs1Drn5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0Lzs1Drn5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0Lzs1Drn5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0Lzs1Drn5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0Lzs1Drn5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0Lzs1Drn5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0Lzs1Drn5 .dropdown-item.active,
.cid-u0Lzs1Drn5 .dropdown-item:active {
  background-color: transparent;
}
.cid-u0Lzs1Drn5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0Lzs1Drn5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0Lzs1Drn5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0Lzs1Drn5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0Lzs1Drn5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0Lzs1Drn5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0Lzs1Drn5 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0Lzs1Drn5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0Lzs1Drn5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0Lzs1Drn5 button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0Lzs1Drn5 button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0Lzs1Drn5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0Lzs1Drn5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0Lzs1Drn5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Lzs1Drn5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Lzs1Drn5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0Lzs1Drn5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Lzs1Drn5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0Lzs1Drn5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0Lzs1Drn5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Lzs1Drn5 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0Lzs1Drn5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0Lzs1Drn5 .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-u0Lzs1Drn5 .navbar {
    height: 70px;
  }
  .cid-u0Lzs1Drn5 .navbar.opened {
    height: auto;
  }
  .cid-u0Lzs1Drn5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Lzs231jo {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0Lzs231jo .link a {
  background-image: none !important;
}
.cid-u0Lzs231jo .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0Lzs231jo .date {
  margin-bottom: 6px;
}
.cid-u0Lzs231jo .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0Lzs231jo .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0Lzs231jo a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0Lzs231jo rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0Lzs231jo .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0Lzs231jo svg {
  margin-left: 15px;
}
.cid-u0Lzs231jo path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0Lzs231jo .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0Lzs231jo .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0Lzs231jo .row {
  justify-content: center;
}
.cid-u0Lzs231jo .p,
.cid-u0Lzs231jo .link {
  color: #767676;
}
.cid-u0Lzs2lxZi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0Lzs2lxZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Lzs2lxZi .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-u0Lzs2lxZi .container {
    padding: 0 30px;
  }
}
.cid-u0Lzs2lxZi .row {
  justify-content: center;
}
.cid-u0Lzs2lxZi .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0Lzs2lxZi .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0Lzs2lxZi .card {
    margin-bottom: 30px;
  }
}
.cid-u0Lzs2lxZi .card .card-wrapper {
  display: flex;
}
.cid-u0Lzs2lxZi .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0Lzs2lxZi .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0Lzs2lxZi .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0Lzs2lxZi .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0Lzs2lxZi .mbr-section-title {
  color: #767676;
}
.cid-u0Lzs2lxZi .mbr-number {
  color: #000000;
}
.cid-u0Lzs2lxZi .mbr-card-title {
  color: #1070b9;
}
.cid-u0Lzs2lxZi .mbr-text {
  color: #767676;
}
.cid-u0Lzs2Hsub {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0Lzs2Hsub .mbr-section-title {
  color: #1070b9;
}
.cid-u0Lzs2Hsub .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0Lzs2Hsub .row {
  justify-content: space-between;
}
.cid-u0Lzs2Hsub .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0Lzs2Hsub .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0Lzs2Hsub .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0Lzs2Hsub .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0Lzs2Hsub .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0Lzs2Hsub .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0Lzs2Hsub .link-wrapper {
    justify-content: center;
  }
}
.cid-u0Lzs2Hsub .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0Lzs2Hsub .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0Lzs2Hsub .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0Lzs2Hsub .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0Lzs2Hsub .link,
.cid-u0Lzs2Hsub .link-icon {
  color: #000000;
}
.cid-u0Lzs2Hsub .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Lzs2Hsub .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0Lzs2Hsub .mbr-text,
.cid-u0Lzs2Hsub .mbr-section-btn {
  color: #767676;
}
.cid-u0Lzs31RzD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0Lzs31RzD .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0Lzs31RzD .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0Lzs31RzD .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0Lzs31RzD .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0Lzs31RzD .box {
  right: 20%;
}
.cid-u0Lzs31RzD .text-box {
  right: 0;
}
.cid-u0Lzs31RzD .mbr-section-title,
.cid-u0Lzs31RzD .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0Lzs31RzD .text-box {
    display: none;
  }
  .cid-u0Lzs31RzD .mbr-section-title,
  .cid-u0Lzs31RzD .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0Lzs31RzD .box {
    display: none;
  }
  .cid-u0Lzs31RzD .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0Lzs31RzD .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0Lzs31RzD .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0Lzs31RzD .mbr-section-text {
  color: #767676;
}
.cid-u0Lzs31RzD .mbr-section-title {
  color: #1070b9;
}
.cid-u0Lzs3qlJX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0Lzs3qlJX .box {
  margin-bottom: 15px;
}
.cid-u0Lzs3qlJX .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0Lzs3qlJX .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0Lzs3qlJX .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0Lzs3qlJX .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0Lzs3qlJX .mbr-media {
    max-height: 432px;
  }
}
.cid-u0Lzs3qlJX .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0Lzs3qlJX .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0Lzs3qlJX .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0Lzs3qlJX .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0Lzs3qlJX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0Lzs3qlJX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0Lzs3qlJX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0Lzs3qlJX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0Lzs3qlJX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0Lzs3qlJX .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0Lzs3qlJX .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0Lzs3qlJX .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0Lzs3qlJX .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0Lzs3qlJX .item-img {
  overflow: hidden;
}
.cid-u0Lzs3qlJX .item-img img {
  width: 100%;
}
.cid-u0Lzs3qlJX .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0Lzs3qlJX .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0Lzs3qlJX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Lzs3qlJX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0Lzs3N4bD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0Lzs3N4bD .carousel {
    overflow: hidden;
  }
  .cid-u0Lzs3N4bD .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0Lzs3N4bD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0Lzs3N4bD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0Lzs3N4bD .carousel,
.cid-u0Lzs3N4bD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0Lzs3N4bD .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0Lzs3N4bD .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0Lzs3N4bD .item-wrapper {
    height: 215px;
  }
}
.cid-u0Lzs3N4bD .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0Lzs3N4bD .carousel-caption {
  bottom: 40px;
}
.cid-u0Lzs3N4bD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0Lzs3N4bD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0Lzs3N4bD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0Lzs3N4bD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0Lzs3N4bD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0Lzs3N4bD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0Lzs3N4bD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0Lzs3N4bD .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0Lzs3N4bD .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0Lzs3N4bD .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0Lzs3N4bD .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0Lzs3N4bD .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0Lzs3N4bD .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0Lzs3N4bD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0Lzs3N4bD .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0Lzs3N4bD .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0Lzs3N4bD .soc-item::before,
.cid-u0Lzs3N4bD .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0Lzs3N4bD .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0Lzs3N4bD .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0Lzs3N4bD .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0Lzs3N4bD .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0Lzs3N4bD .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0Lzs3N4bD .text {
  color: #ddc499;
}
.cid-u0Lzs3N4bD .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0Lzs4bhxW {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0Lzs4bhxW .carousel {
    overflow: hidden;
  }
  .cid-u0Lzs4bhxW .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0Lzs4bhxW .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0Lzs4bhxW #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0Lzs4bhxW #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0Lzs4bhxW .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0Lzs4bhxW .link-div {
  margin-left: 20px;
}
.cid-u0Lzs4bhxW .link-div h3 {
  margin-left: 4px;
}
.cid-u0Lzs4bhxW .mbr-card-title {
  color: #000e2f;
}
#custom-html-ms {
  /* Type valid CSS here */
}
#custom-html-ms .back-button {
  position: fixed;
}
.cid-u0Lzs4wyGt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0Lzs4wyGt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0Lzs4wyGt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0Lzs4wyGt .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0Lzs4wyGt .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0Lzs4wyGt .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0Lzs4wyGt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0Lzs4wyGt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0Lzs4wyGt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0Lzs4wyGt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0Lzs4wyGt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0Lzs4wyGt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0Lzs4wyGt .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0Lzs4wyGt .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0Lzs4wyGt .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0Lzs4wyGt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0Lzs4wyGt .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0Lzs4wyGt .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0Lzs4wyGt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0Lzs4wyGt .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0Lzs4wyGt .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0Lzs4wyGt .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0Lzs4wyGt .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0Lzs4wyGt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0Lzs4wyGt .soc-item {
    padding: 10px;
  }
}
.cid-u0Lzs4wyGt .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0Lzs4wyGt .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0Lzs4wyGt .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0Lzs4wyGt .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0Lzs4wyGt .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0Lzs4wyGt .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0Lzs4wyGt .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0Lzs4wyGt .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0Lzs4wyGt .copyright {
    text-align: center !important;
  }
}
.cid-u0Lzs4wyGt p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0Lzs4wyGt .row {
    justify-content: flex-start !important;
  }
}
.cid-u0Lzs4wyGt .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0Lzs4wyGt .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0Lzs4wyGt .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0Lzs4wyGt .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0Lzs4wyGt .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0Lzs4wyGt .card-title {
  color: #ffffff;
}
.cid-u0Lzs4wyGt P {
  color: #22a5e5;
}
.cid-u0u3n68mur .navbar-dropdown {
  position: relative !important;
}
.cid-u0u3n68mur .navbar-dropdown {
  position: absolute !important;
}
.cid-u0u3n68mur nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0u3n68mur .nav-item {
    margin: 0 !important;
  }
}
.cid-u0u3n68mur .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-u0u3n68mur .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0u3n68mur .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0u3n68mur .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0u3n68mur .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0u3n68mur .nav-link {
  position: relative;
}
.cid-u0u3n68mur .container {
  display: flex;
  margin: auto;
}
.cid-u0u3n68mur .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0u3n68mur .dropdown-menu,
.cid-u0u3n68mur .navbar.opened {
  background: #000000 !important;
}
.cid-u0u3n68mur .nav-item:focus,
.cid-u0u3n68mur .nav-link:focus {
  outline: none;
}
.cid-u0u3n68mur .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0u3n68mur .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0u3n68mur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0u3n68mur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0u3n68mur .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0u3n68mur .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0u3n68mur .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0u3n68mur .navbar.opened {
  transition: all 0.3s;
}
.cid-u0u3n68mur .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0u3n68mur .navbar .navbar-logo img {
  width: auto;
}
.cid-u0u3n68mur .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0u3n68mur .navbar.collapsed {
  justify-content: center;
}
.cid-u0u3n68mur .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0u3n68mur .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0u3n68mur .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0u3n68mur .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0u3n68mur .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0u3n68mur .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-u0u3n68mur .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0u3n68mur .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0u3n68mur .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0u3n68mur .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0u3n68mur .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0u3n68mur .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0u3n68mur .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0u3n68mur .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0u3n68mur .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-u0u3n68mur .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0u3n68mur .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0u3n68mur .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0u3n68mur .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0u3n68mur .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0u3n68mur .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0u3n68mur .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0u3n68mur .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0u3n68mur .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0u3n68mur .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0u3n68mur .dropdown-item.active,
.cid-u0u3n68mur .dropdown-item:active {
  background-color: transparent;
}
.cid-u0u3n68mur .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0u3n68mur .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0u3n68mur .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0u3n68mur .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0u3n68mur .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0u3n68mur .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0u3n68mur ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0u3n68mur .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0u3n68mur button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0u3n68mur button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0u3n68mur button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0u3n68mur button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0u3n68mur button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0u3n68mur button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0u3n68mur button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0u3n68mur button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0u3n68mur nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0u3n68mur nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0u3n68mur nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0u3n68mur nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0u3n68mur .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0u3n68mur a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0u3n68mur .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-u0u3n68mur .navbar {
    height: 70px;
  }
  .cid-u0u3n68mur .navbar.opened {
    height: auto;
  }
  .cid-u0u3n68mur .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0u3n6IyDM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0u3n6IyDM .link a {
  background-image: none !important;
}
.cid-u0u3n6IyDM .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0u3n6IyDM .date {
  margin-bottom: 6px;
}
.cid-u0u3n6IyDM .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0u3n6IyDM .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0u3n6IyDM a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0u3n6IyDM rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0u3n6IyDM .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0u3n6IyDM svg {
  margin-left: 15px;
}
.cid-u0u3n6IyDM path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0u3n6IyDM .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0u3n6IyDM .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0u3n6IyDM .row {
  justify-content: center;
}
.cid-u0u3n6IyDM .p,
.cid-u0u3n6IyDM .link {
  color: #767676;
}
.cid-u0u3n78XO5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0u3n78XO5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0u3n78XO5 .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-u0u3n78XO5 .container {
    padding: 0 30px;
  }
}
.cid-u0u3n78XO5 .row {
  justify-content: center;
}
.cid-u0u3n78XO5 .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0u3n78XO5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0u3n78XO5 .card {
    margin-bottom: 30px;
  }
}
.cid-u0u3n78XO5 .card .card-wrapper {
  display: flex;
}
.cid-u0u3n78XO5 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0u3n78XO5 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0u3n78XO5 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0u3n78XO5 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0u3n78XO5 .mbr-section-title {
  color: #767676;
}
.cid-u0u3n78XO5 .mbr-number {
  color: #000000;
}
.cid-u0u3n78XO5 .mbr-card-title {
  color: #1070b9;
}
.cid-u0u3n78XO5 .mbr-text {
  color: #767676;
}
.cid-u0u3n7DvGK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0u3n7DvGK .mbr-section-title {
  color: #1070b9;
}
.cid-u0u3n7DvGK .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0u3n7DvGK .row {
  justify-content: space-between;
}
.cid-u0u3n7DvGK .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0u3n7DvGK .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0u3n7DvGK .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0u3n7DvGK .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0u3n7DvGK .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0u3n7DvGK .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0u3n7DvGK .link-wrapper {
    justify-content: center;
  }
}
.cid-u0u3n7DvGK .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0u3n7DvGK .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0u3n7DvGK .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0u3n7DvGK .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0u3n7DvGK .link,
.cid-u0u3n7DvGK .link-icon {
  color: #000000;
}
.cid-u0u3n7DvGK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0u3n7DvGK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0u3n7DvGK .mbr-text,
.cid-u0u3n7DvGK .mbr-section-btn {
  color: #767676;
}
.cid-u0u3n84ZIt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0u3n84ZIt .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0u3n84ZIt .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0u3n84ZIt .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0u3n84ZIt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0u3n84ZIt .box {
  right: 20%;
}
.cid-u0u3n84ZIt .text-box {
  right: 0;
}
.cid-u0u3n84ZIt .mbr-section-title,
.cid-u0u3n84ZIt .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0u3n84ZIt .text-box {
    display: none;
  }
  .cid-u0u3n84ZIt .mbr-section-title,
  .cid-u0u3n84ZIt .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0u3n84ZIt .box {
    display: none;
  }
  .cid-u0u3n84ZIt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0u3n84ZIt .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0u3n84ZIt .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0u3n84ZIt .mbr-section-text {
  color: #767676;
}
.cid-u0u3n84ZIt .mbr-section-title {
  color: #1070b9;
}
.cid-u0u3n8spC3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0u3n8spC3 .box {
  margin-bottom: 15px;
}
.cid-u0u3n8spC3 .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0u3n8spC3 .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0u3n8spC3 .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0u3n8spC3 .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0u3n8spC3 .mbr-media {
    max-height: 432px;
  }
}
.cid-u0u3n8spC3 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0u3n8spC3 .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0u3n8spC3 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0u3n8spC3 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0u3n8spC3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0u3n8spC3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0u3n8spC3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0u3n8spC3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0u3n8spC3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0u3n8spC3 .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0u3n8spC3 .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0u3n8spC3 .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0u3n8spC3 .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0u3n8spC3 .item-img {
  overflow: hidden;
}
.cid-u0u3n8spC3 .item-img img {
  width: 100%;
}
.cid-u0u3n8spC3 .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0u3n8spC3 .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0u3n8spC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0u3n8spC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0u3n8NsIC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0u3n8NsIC .carousel {
    overflow: hidden;
  }
  .cid-u0u3n8NsIC .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0u3n8NsIC .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0u3n8NsIC .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0u3n8NsIC .carousel,
.cid-u0u3n8NsIC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0u3n8NsIC .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0u3n8NsIC .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0u3n8NsIC .item-wrapper {
    height: 215px;
  }
}
.cid-u0u3n8NsIC .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0u3n8NsIC .carousel-caption {
  bottom: 40px;
}
.cid-u0u3n8NsIC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0u3n8NsIC .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0u3n8NsIC .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0u3n8NsIC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0u3n8NsIC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0u3n8NsIC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0u3n8NsIC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0u3n8NsIC .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0u3n8NsIC .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0u3n8NsIC .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0u3n8NsIC .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0u3n8NsIC .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0u3n8NsIC .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0u3n8NsIC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0u3n8NsIC .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0u3n8NsIC .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0u3n8NsIC .soc-item::before,
.cid-u0u3n8NsIC .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0u3n8NsIC .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0u3n8NsIC .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0u3n8NsIC .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0u3n8NsIC .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0u3n8NsIC .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0u3n8NsIC .text {
  color: #ddc499;
}
.cid-u0u3n8NsIC .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0u3n9dfZM {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0u3n9dfZM .carousel {
    overflow: hidden;
  }
  .cid-u0u3n9dfZM .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0u3n9dfZM .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0u3n9dfZM #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0u3n9dfZM #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0u3n9dfZM .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0u3n9dfZM .link-div {
  margin-left: 20px;
}
.cid-u0u3n9dfZM .link-div h3 {
  margin-left: 4px;
}
.cid-u0u3n9dfZM .mbr-card-title {
  color: #000e2f;
}
#custom-html-ly {
  /* Type valid CSS here */
}
#custom-html-ly .back-button {
  position: fixed;
}
.cid-u0u3n9yqak {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0u3n9yqak .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0u3n9yqak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0u3n9yqak .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0u3n9yqak .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0u3n9yqak .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0u3n9yqak .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0u3n9yqak .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0u3n9yqak .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0u3n9yqak .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0u3n9yqak .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0u3n9yqak .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0u3n9yqak .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0u3n9yqak .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0u3n9yqak .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0u3n9yqak .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0u3n9yqak .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0u3n9yqak .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0u3n9yqak .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0u3n9yqak .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0u3n9yqak .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0u3n9yqak .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0u3n9yqak .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0u3n9yqak .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0u3n9yqak .soc-item {
    padding: 10px;
  }
}
.cid-u0u3n9yqak .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0u3n9yqak .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0u3n9yqak .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0u3n9yqak .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0u3n9yqak .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0u3n9yqak .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0u3n9yqak .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0u3n9yqak .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0u3n9yqak .copyright {
    text-align: center !important;
  }
}
.cid-u0u3n9yqak p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0u3n9yqak .row {
    justify-content: flex-start !important;
  }
}
.cid-u0u3n9yqak .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0u3n9yqak .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0u3n9yqak .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0u3n9yqak .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0u3n9yqak .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0u3n9yqak .card-title {
  color: #ffffff;
}
.cid-u0u3n9yqak P {
  color: #22a5e5;
}
.cid-u8MTVCsb1r .navbar-dropdown {
  position: relative !important;
}
.cid-u8MTVCsb1r .navbar-dropdown {
  position: absolute !important;
}
.cid-u8MTVCsb1r nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u8MTVCsb1r .nav-item {
    margin: 0 !important;
  }
}
.cid-u8MTVCsb1r .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-u8MTVCsb1r .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u8MTVCsb1r .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u8MTVCsb1r .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u8MTVCsb1r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8MTVCsb1r .nav-link {
  position: relative;
}
.cid-u8MTVCsb1r .container {
  display: flex;
  margin: auto;
}
.cid-u8MTVCsb1r .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8MTVCsb1r .dropdown-menu,
.cid-u8MTVCsb1r .navbar.opened {
  background: #000000 !important;
}
.cid-u8MTVCsb1r .nav-item:focus,
.cid-u8MTVCsb1r .nav-link:focus {
  outline: none;
}
.cid-u8MTVCsb1r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8MTVCsb1r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8MTVCsb1r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8MTVCsb1r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8MTVCsb1r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8MTVCsb1r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8MTVCsb1r .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u8MTVCsb1r .navbar.opened {
  transition: all 0.3s;
}
.cid-u8MTVCsb1r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8MTVCsb1r .navbar .navbar-logo img {
  width: auto;
}
.cid-u8MTVCsb1r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8MTVCsb1r .navbar.collapsed {
  justify-content: center;
}
.cid-u8MTVCsb1r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8MTVCsb1r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8MTVCsb1r .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u8MTVCsb1r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8MTVCsb1r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8MTVCsb1r .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-u8MTVCsb1r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8MTVCsb1r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8MTVCsb1r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8MTVCsb1r .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u8MTVCsb1r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8MTVCsb1r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8MTVCsb1r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8MTVCsb1r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8MTVCsb1r .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-u8MTVCsb1r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8MTVCsb1r .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u8MTVCsb1r .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u8MTVCsb1r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8MTVCsb1r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8MTVCsb1r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8MTVCsb1r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8MTVCsb1r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8MTVCsb1r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8MTVCsb1r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8MTVCsb1r .dropdown-item.active,
.cid-u8MTVCsb1r .dropdown-item:active {
  background-color: transparent;
}
.cid-u8MTVCsb1r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8MTVCsb1r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8MTVCsb1r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8MTVCsb1r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u8MTVCsb1r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8MTVCsb1r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8MTVCsb1r ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u8MTVCsb1r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8MTVCsb1r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u8MTVCsb1r button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u8MTVCsb1r button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u8MTVCsb1r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u8MTVCsb1r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8MTVCsb1r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8MTVCsb1r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8MTVCsb1r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8MTVCsb1r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8MTVCsb1r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8MTVCsb1r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8MTVCsb1r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8MTVCsb1r .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u8MTVCsb1r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8MTVCsb1r .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-u8MTVCsb1r .navbar {
    height: 70px;
  }
  .cid-u8MTVCsb1r .navbar.opened {
    height: auto;
  }
  .cid-u8MTVCsb1r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8MTVCK574 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8MTVCK574 .link a {
  background-image: none !important;
}
.cid-u8MTVCK574 .item-wrapper {
  margin-bottom: 56px;
}
.cid-u8MTVCK574 .date {
  margin-bottom: 6px;
}
.cid-u8MTVCK574 .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u8MTVCK574 .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u8MTVCK574 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u8MTVCK574 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u8MTVCK574 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u8MTVCK574 svg {
  margin-left: 15px;
}
.cid-u8MTVCK574 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u8MTVCK574 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u8MTVCK574 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u8MTVCK574 .row {
  justify-content: center;
}
.cid-u8MTVCK574 .p,
.cid-u8MTVCK574 .link {
  color: #767676;
}
.cid-u8MTVCY45t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u8MTVCY45t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8MTVCY45t .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-u8MTVCY45t .container {
    padding: 0 30px;
  }
}
.cid-u8MTVCY45t .row {
  justify-content: center;
}
.cid-u8MTVCY45t .title-wrapper {
  margin-bottom: 55px;
}
.cid-u8MTVCY45t .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u8MTVCY45t .card {
    margin-bottom: 30px;
  }
}
.cid-u8MTVCY45t .card .card-wrapper {
  display: flex;
}
.cid-u8MTVCY45t .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u8MTVCY45t .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u8MTVCY45t .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u8MTVCY45t .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u8MTVCY45t .mbr-section-title {
  color: #767676;
}
.cid-u8MTVCY45t .mbr-number {
  color: #000000;
}
.cid-u8MTVCY45t .mbr-card-title {
  color: #1070b9;
}
.cid-u8MTVCY45t .mbr-text {
  color: #767676;
}
.cid-u8MTVDch1G {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8MTVDch1G .mbr-section-title {
  color: #1070b9;
}
.cid-u8MTVDch1G .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u8MTVDch1G .row {
  justify-content: space-between;
}
.cid-u8MTVDch1G .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u8MTVDch1G .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u8MTVDch1G .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u8MTVDch1G .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u8MTVDch1G .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u8MTVDch1G .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u8MTVDch1G .link-wrapper {
    justify-content: center;
  }
}
.cid-u8MTVDch1G .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u8MTVDch1G .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u8MTVDch1G .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u8MTVDch1G .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u8MTVDch1G .link,
.cid-u8MTVDch1G .link-icon {
  color: #000000;
}
.cid-u8MTVDch1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8MTVDch1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8MTVDch1G .mbr-text,
.cid-u8MTVDch1G .mbr-section-btn {
  color: #767676;
}
.cid-u8MTVDoG9c {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u8MTVDoG9c .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u8MTVDoG9c .text-block {
  position: relative;
  z-index: 0;
}
.cid-u8MTVDoG9c .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u8MTVDoG9c .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u8MTVDoG9c .box {
  right: 20%;
}
.cid-u8MTVDoG9c .text-box {
  right: 0;
}
.cid-u8MTVDoG9c .mbr-section-title,
.cid-u8MTVDoG9c .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u8MTVDoG9c .text-box {
    display: none;
  }
  .cid-u8MTVDoG9c .mbr-section-title,
  .cid-u8MTVDoG9c .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u8MTVDoG9c .box {
    display: none;
  }
  .cid-u8MTVDoG9c .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u8MTVDoG9c .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8MTVDoG9c .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u8MTVDoG9c .mbr-section-text {
  color: #767676;
}
.cid-u8MTVDoG9c .mbr-section-title {
  color: #1070b9;
}
.cid-u8MTVDY81L {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u8MTVDY81L .carousel {
    overflow: hidden;
  }
  .cid-u8MTVDY81L .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u8MTVDY81L .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u8MTVDY81L .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u8MTVDY81L .carousel,
.cid-u8MTVDY81L .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u8MTVDY81L .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8MTVDY81L .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u8MTVDY81L .item-wrapper {
    height: 215px;
  }
}
.cid-u8MTVDY81L .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u8MTVDY81L .carousel-caption {
  bottom: 40px;
}
.cid-u8MTVDY81L .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u8MTVDY81L .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u8MTVDY81L .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u8MTVDY81L .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u8MTVDY81L .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u8MTVDY81L .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8MTVDY81L .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u8MTVDY81L .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u8MTVDY81L .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u8MTVDY81L .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u8MTVDY81L .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u8MTVDY81L .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u8MTVDY81L .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u8MTVDY81L .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u8MTVDY81L .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u8MTVDY81L .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u8MTVDY81L .soc-item::before,
.cid-u8MTVDY81L .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u8MTVDY81L .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u8MTVDY81L .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u8MTVDY81L .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u8MTVDY81L .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u8MTVDY81L .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u8MTVDY81L .text {
  color: #ddc499;
}
.cid-u8MTVDY81L .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u8MTVEdwEk {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u8MTVEdwEk .carousel {
    overflow: hidden;
  }
  .cid-u8MTVEdwEk .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u8MTVEdwEk .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u8MTVEdwEk #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u8MTVEdwEk #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u8MTVEdwEk .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u8MTVEdwEk .link-div {
  margin-left: 20px;
}
.cid-u8MTVEdwEk .link-div h3 {
  margin-left: 4px;
}
.cid-u8MTVEdwEk .mbr-card-title {
  color: #000e2f;
}
#custom-html-nh {
  /* Type valid CSS here */
}
#custom-html-nh .back-button {
  position: fixed;
}
.cid-u8MTVErUuP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u8MTVErUuP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8MTVErUuP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8MTVErUuP .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u8MTVErUuP .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u8MTVErUuP .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u8MTVErUuP .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u8MTVErUuP .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u8MTVErUuP .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u8MTVErUuP .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u8MTVErUuP .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u8MTVErUuP .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u8MTVErUuP .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u8MTVErUuP .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u8MTVErUuP .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u8MTVErUuP .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u8MTVErUuP .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u8MTVErUuP .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u8MTVErUuP .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u8MTVErUuP .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u8MTVErUuP .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u8MTVErUuP .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u8MTVErUuP .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u8MTVErUuP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u8MTVErUuP .soc-item {
    padding: 10px;
  }
}
.cid-u8MTVErUuP .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u8MTVErUuP .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u8MTVErUuP .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u8MTVErUuP .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u8MTVErUuP .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u8MTVErUuP .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u8MTVErUuP .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u8MTVErUuP .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u8MTVErUuP .copyright {
    text-align: center !important;
  }
}
.cid-u8MTVErUuP p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u8MTVErUuP .row {
    justify-content: flex-start !important;
  }
}
.cid-u8MTVErUuP .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u8MTVErUuP .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u8MTVErUuP .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u8MTVErUuP .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u8MTVErUuP .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u8MTVErUuP .card-title {
  color: #ffffff;
}
.cid-u8MTVErUuP P {
  color: #22a5e5;
}
.cid-u0LzhCM6IK .navbar-dropdown {
  position: relative !important;
}
.cid-u0LzhCM6IK .navbar-dropdown {
  position: absolute !important;
}
.cid-u0LzhCM6IK nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u0LzhCM6IK .nav-item {
    margin: 0 !important;
  }
}
.cid-u0LzhCM6IK .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-u0LzhCM6IK .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u0LzhCM6IK .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u0LzhCM6IK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u0LzhCM6IK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0LzhCM6IK .nav-link {
  position: relative;
}
.cid-u0LzhCM6IK .container {
  display: flex;
  margin: auto;
}
.cid-u0LzhCM6IK .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0LzhCM6IK .dropdown-menu,
.cid-u0LzhCM6IK .navbar.opened {
  background: #000000 !important;
}
.cid-u0LzhCM6IK .nav-item:focus,
.cid-u0LzhCM6IK .nav-link:focus {
  outline: none;
}
.cid-u0LzhCM6IK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0LzhCM6IK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0LzhCM6IK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0LzhCM6IK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0LzhCM6IK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0LzhCM6IK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0LzhCM6IK .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u0LzhCM6IK .navbar.opened {
  transition: all 0.3s;
}
.cid-u0LzhCM6IK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0LzhCM6IK .navbar .navbar-logo img {
  width: auto;
}
.cid-u0LzhCM6IK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0LzhCM6IK .navbar.collapsed {
  justify-content: center;
}
.cid-u0LzhCM6IK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0LzhCM6IK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0LzhCM6IK .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u0LzhCM6IK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0LzhCM6IK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0LzhCM6IK .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-u0LzhCM6IK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0LzhCM6IK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0LzhCM6IK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0LzhCM6IK .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u0LzhCM6IK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0LzhCM6IK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0LzhCM6IK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0LzhCM6IK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0LzhCM6IK .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-u0LzhCM6IK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0LzhCM6IK .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u0LzhCM6IK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u0LzhCM6IK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0LzhCM6IK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0LzhCM6IK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0LzhCM6IK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0LzhCM6IK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0LzhCM6IK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0LzhCM6IK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0LzhCM6IK .dropdown-item.active,
.cid-u0LzhCM6IK .dropdown-item:active {
  background-color: transparent;
}
.cid-u0LzhCM6IK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0LzhCM6IK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0LzhCM6IK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0LzhCM6IK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u0LzhCM6IK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0LzhCM6IK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0LzhCM6IK ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u0LzhCM6IK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0LzhCM6IK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u0LzhCM6IK button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u0LzhCM6IK button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u0LzhCM6IK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u0LzhCM6IK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0LzhCM6IK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0LzhCM6IK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0LzhCM6IK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0LzhCM6IK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0LzhCM6IK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0LzhCM6IK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0LzhCM6IK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0LzhCM6IK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u0LzhCM6IK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0LzhCM6IK .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-u0LzhCM6IK .navbar {
    height: 70px;
  }
  .cid-u0LzhCM6IK .navbar.opened {
    height: auto;
  }
  .cid-u0LzhCM6IK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0LzhDNR3J {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0LzhDNR3J .link a {
  background-image: none !important;
}
.cid-u0LzhDNR3J .item-wrapper {
  margin-bottom: 56px;
}
.cid-u0LzhDNR3J .date {
  margin-bottom: 6px;
}
.cid-u0LzhDNR3J .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u0LzhDNR3J .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u0LzhDNR3J a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u0LzhDNR3J rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u0LzhDNR3J .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u0LzhDNR3J svg {
  margin-left: 15px;
}
.cid-u0LzhDNR3J path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u0LzhDNR3J .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u0LzhDNR3J .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u0LzhDNR3J .row {
  justify-content: center;
}
.cid-u0LzhDNR3J .p,
.cid-u0LzhDNR3J .link {
  color: #767676;
}
.cid-u0LzhEd8Vt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u0LzhEd8Vt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LzhEd8Vt .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-u0LzhEd8Vt .container {
    padding: 0 30px;
  }
}
.cid-u0LzhEd8Vt .row {
  justify-content: center;
}
.cid-u0LzhEd8Vt .title-wrapper {
  margin-bottom: 55px;
}
.cid-u0LzhEd8Vt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u0LzhEd8Vt .card {
    margin-bottom: 30px;
  }
}
.cid-u0LzhEd8Vt .card .card-wrapper {
  display: flex;
}
.cid-u0LzhEd8Vt .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u0LzhEd8Vt .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u0LzhEd8Vt .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u0LzhEd8Vt .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u0LzhEd8Vt .mbr-section-title {
  color: #767676;
}
.cid-u0LzhEd8Vt .mbr-number {
  color: #000000;
}
.cid-u0LzhEd8Vt .mbr-card-title {
  color: #1070b9;
}
.cid-u0LzhEd8Vt .mbr-text {
  color: #767676;
}
.cid-u0LzhEOktN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u0LzhEOktN .mbr-section-title {
  color: #1070b9;
}
.cid-u0LzhEOktN .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u0LzhEOktN .row {
  justify-content: space-between;
}
.cid-u0LzhEOktN .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u0LzhEOktN .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u0LzhEOktN .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u0LzhEOktN .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u0LzhEOktN .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u0LzhEOktN .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0LzhEOktN .link-wrapper {
    justify-content: center;
  }
}
.cid-u0LzhEOktN .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u0LzhEOktN .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u0LzhEOktN .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u0LzhEOktN .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u0LzhEOktN .link,
.cid-u0LzhEOktN .link-icon {
  color: #000000;
}
.cid-u0LzhEOktN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LzhEOktN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0LzhEOktN .mbr-text,
.cid-u0LzhEOktN .mbr-section-btn {
  color: #767676;
}
.cid-u0LzhFdB2Z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u0LzhFdB2Z .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u0LzhFdB2Z .text-block {
  position: relative;
  z-index: 0;
}
.cid-u0LzhFdB2Z .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u0LzhFdB2Z .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u0LzhFdB2Z .box {
  right: 20%;
}
.cid-u0LzhFdB2Z .text-box {
  right: 0;
}
.cid-u0LzhFdB2Z .mbr-section-title,
.cid-u0LzhFdB2Z .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u0LzhFdB2Z .text-box {
    display: none;
  }
  .cid-u0LzhFdB2Z .mbr-section-title,
  .cid-u0LzhFdB2Z .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u0LzhFdB2Z .box {
    display: none;
  }
  .cid-u0LzhFdB2Z .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u0LzhFdB2Z .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0LzhFdB2Z .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u0LzhFdB2Z .mbr-section-text {
  color: #767676;
}
.cid-u0LzhFdB2Z .mbr-section-title {
  color: #1070b9;
}
.cid-u0LzhFVSOi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0LzhFVSOi .box {
  margin-bottom: 15px;
}
.cid-u0LzhFVSOi .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u0LzhFVSOi .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u0LzhFVSOi .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u0LzhFVSOi .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u0LzhFVSOi .mbr-media {
    max-height: 432px;
  }
}
.cid-u0LzhFVSOi .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u0LzhFVSOi .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u0LzhFVSOi .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u0LzhFVSOi .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u0LzhFVSOi .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u0LzhFVSOi .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u0LzhFVSOi .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u0LzhFVSOi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u0LzhFVSOi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u0LzhFVSOi .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u0LzhFVSOi .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u0LzhFVSOi .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u0LzhFVSOi .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u0LzhFVSOi .item-img {
  overflow: hidden;
}
.cid-u0LzhFVSOi .item-img img {
  width: 100%;
}
.cid-u0LzhFVSOi .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u0LzhFVSOi .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u0LzhFVSOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LzhFVSOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0LzhGoBWp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u0LzhGoBWp .carousel {
    overflow: hidden;
  }
  .cid-u0LzhGoBWp .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0LzhGoBWp .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u0LzhGoBWp .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u0LzhGoBWp .carousel,
.cid-u0LzhGoBWp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u0LzhGoBWp .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0LzhGoBWp .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u0LzhGoBWp .item-wrapper {
    height: 215px;
  }
}
.cid-u0LzhGoBWp .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u0LzhGoBWp .carousel-caption {
  bottom: 40px;
}
.cid-u0LzhGoBWp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u0LzhGoBWp .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u0LzhGoBWp .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u0LzhGoBWp .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u0LzhGoBWp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u0LzhGoBWp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u0LzhGoBWp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u0LzhGoBWp .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0LzhGoBWp .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u0LzhGoBWp .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u0LzhGoBWp .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u0LzhGoBWp .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u0LzhGoBWp .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u0LzhGoBWp .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0LzhGoBWp .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u0LzhGoBWp .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u0LzhGoBWp .soc-item::before,
.cid-u0LzhGoBWp .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u0LzhGoBWp .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u0LzhGoBWp .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u0LzhGoBWp .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u0LzhGoBWp .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u0LzhGoBWp .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u0LzhGoBWp .text {
  color: #ddc499;
}
.cid-u0LzhGoBWp .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u0LzhGNQVh {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u0LzhGNQVh .carousel {
    overflow: hidden;
  }
  .cid-u0LzhGNQVh .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u0LzhGNQVh .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u0LzhGNQVh #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u0LzhGNQVh #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u0LzhGNQVh .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u0LzhGNQVh .link-div {
  margin-left: 20px;
}
.cid-u0LzhGNQVh .link-div h3 {
  margin-left: 4px;
}
.cid-u0LzhGNQVh .mbr-card-title {
  color: #000e2f;
}
#custom-html-mi {
  /* Type valid CSS here */
}
#custom-html-mi .back-button {
  position: fixed;
}
.cid-u0LzhH9Zwa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u0LzhH9Zwa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0LzhH9Zwa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0LzhH9Zwa .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0LzhH9Zwa .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u0LzhH9Zwa .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u0LzhH9Zwa .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u0LzhH9Zwa .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u0LzhH9Zwa .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0LzhH9Zwa .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u0LzhH9Zwa .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u0LzhH9Zwa .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u0LzhH9Zwa .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u0LzhH9Zwa .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u0LzhH9Zwa .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u0LzhH9Zwa .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u0LzhH9Zwa .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u0LzhH9Zwa .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u0LzhH9Zwa .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u0LzhH9Zwa .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u0LzhH9Zwa .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u0LzhH9Zwa .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u0LzhH9Zwa .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u0LzhH9Zwa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u0LzhH9Zwa .soc-item {
    padding: 10px;
  }
}
.cid-u0LzhH9Zwa .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u0LzhH9Zwa .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u0LzhH9Zwa .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u0LzhH9Zwa .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u0LzhH9Zwa .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u0LzhH9Zwa .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u0LzhH9Zwa .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u0LzhH9Zwa .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0LzhH9Zwa .copyright {
    text-align: center !important;
  }
}
.cid-u0LzhH9Zwa p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u0LzhH9Zwa .row {
    justify-content: flex-start !important;
  }
}
.cid-u0LzhH9Zwa .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u0LzhH9Zwa .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u0LzhH9Zwa .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u0LzhH9Zwa .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u0LzhH9Zwa .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u0LzhH9Zwa .card-title {
  color: #ffffff;
}
.cid-u0LzhH9Zwa P {
  color: #22a5e5;
}
.cid-u8N2Z9yJIg .navbar-dropdown {
  position: relative !important;
}
.cid-u8N2Z9yJIg .navbar-dropdown {
  position: absolute !important;
}
.cid-u8N2Z9yJIg nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-u8N2Z9yJIg .nav-item {
    margin: 0 !important;
  }
}
.cid-u8N2Z9yJIg .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-u8N2Z9yJIg .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.cid-u8N2Z9yJIg .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u8N2Z9yJIg .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0.5rem 0 0 !important;
  margin: 0 1rem .5rem 1rem !important;
}
.cid-u8N2Z9yJIg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8N2Z9yJIg .nav-link {
  position: relative;
}
.cid-u8N2Z9yJIg .container {
  display: flex;
  margin: auto;
}
.cid-u8N2Z9yJIg .iconfont-wrapper {
  color: #373c42 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8N2Z9yJIg .dropdown-menu,
.cid-u8N2Z9yJIg .navbar.opened {
  background: #000000 !important;
}
.cid-u8N2Z9yJIg .nav-item:focus,
.cid-u8N2Z9yJIg .nav-link:focus {
  outline: none;
}
.cid-u8N2Z9yJIg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8N2Z9yJIg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8N2Z9yJIg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8N2Z9yJIg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8N2Z9yJIg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8N2Z9yJIg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8N2Z9yJIg .navbar {
  min-height: 200px;
  align-items: flex-start;
  transition: all 0.3s;
  border-bottom-width: 0px;
  background: linear-gradient(180deg, #000000 0%, #000000 0%, rgba(0, 0, 0, 0.4) 62%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 100%);
}
.cid-u8N2Z9yJIg .navbar.opened {
  transition: all 0.3s;
}
.cid-u8N2Z9yJIg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8N2Z9yJIg .navbar .navbar-logo img {
  width: auto;
}
.cid-u8N2Z9yJIg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8N2Z9yJIg .navbar.collapsed {
  justify-content: center;
}
.cid-u8N2Z9yJIg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8N2Z9yJIg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8N2Z9yJIg .navbar.collapsed.opened .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u8N2Z9yJIg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8N2Z9yJIg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8N2Z9yJIg .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-u8N2Z9yJIg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8N2Z9yJIg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8N2Z9yJIg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8N2Z9yJIg .navbar .nav-item {
    padding: .5rem 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  }
  .cid-u8N2Z9yJIg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8N2Z9yJIg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8N2Z9yJIg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8N2Z9yJIg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8N2Z9yJIg .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-u8N2Z9yJIg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8N2Z9yJIg .navbar ul.navbar-nav {
    padding-bottom: 1.5rem;
    overflow: hidden;
  }
  .cid-u8N2Z9yJIg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u8N2Z9yJIg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8N2Z9yJIg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8N2Z9yJIg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8N2Z9yJIg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8N2Z9yJIg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8N2Z9yJIg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8N2Z9yJIg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8N2Z9yJIg .dropdown-item.active,
.cid-u8N2Z9yJIg .dropdown-item:active {
  background-color: transparent;
}
.cid-u8N2Z9yJIg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8N2Z9yJIg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8N2Z9yJIg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8N2Z9yJIg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u8N2Z9yJIg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8N2Z9yJIg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8N2Z9yJIg ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-u8N2Z9yJIg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8N2Z9yJIg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
}
.cid-u8N2Z9yJIg button.navbar-toggler .hamburger {
  display: block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.cid-u8N2Z9yJIg button.navbar-toggler .hamburger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-u8N2Z9yJIg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 100px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u8N2Z9yJIg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8N2Z9yJIg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8N2Z9yJIg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8N2Z9yJIg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8N2Z9yJIg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8N2Z9yJIg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8N2Z9yJIg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8N2Z9yJIg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8N2Z9yJIg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u8N2Z9yJIg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8N2Z9yJIg .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-u8N2Z9yJIg .navbar {
    height: 70px;
  }
  .cid-u8N2Z9yJIg .navbar.opened {
    height: auto;
  }
  .cid-u8N2Z9yJIg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8N2Z9W0YP {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8N2Z9W0YP .link a {
  background-image: none !important;
}
.cid-u8N2Z9W0YP .item-wrapper {
  margin-bottom: 56px;
}
.cid-u8N2Z9W0YP .date {
  margin-bottom: 6px;
}
.cid-u8N2Z9W0YP .card-heading {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1070b9;
}
.cid-u8N2Z9W0YP .p {
  margin-bottom: 29px;
  font-weight: 500;
  color: #4c4c4c;
}
.cid-u8N2Z9W0YP a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-u8N2Z9W0YP rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-u8N2Z9W0YP .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-u8N2Z9W0YP svg {
  margin-left: 15px;
}
.cid-u8N2Z9W0YP path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-u8N2Z9W0YP .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-u8N2Z9W0YP .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-u8N2Z9W0YP .row {
  justify-content: center;
}
.cid-u8N2Z9W0YP .p,
.cid-u8N2Z9W0YP .link {
  color: #767676;
}
.cid-u8N2ZacB99 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u8N2ZacB99 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8N2ZacB99 .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-u8N2ZacB99 .container {
    padding: 0 30px;
  }
}
.cid-u8N2ZacB99 .row {
  justify-content: center;
}
.cid-u8N2ZacB99 .title-wrapper {
  margin-bottom: 55px;
}
.cid-u8N2ZacB99 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u8N2ZacB99 .card {
    margin-bottom: 30px;
  }
}
.cid-u8N2ZacB99 .card .card-wrapper {
  display: flex;
}
.cid-u8N2ZacB99 .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-u8N2ZacB99 .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-u8N2ZacB99 .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-u8N2ZacB99 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-u8N2ZacB99 .mbr-section-title {
  color: #767676;
}
.cid-u8N2ZacB99 .mbr-number {
  color: #000000;
}
.cid-u8N2ZacB99 .mbr-card-title {
  color: #1070b9;
}
.cid-u8N2ZacB99 .mbr-text {
  color: #767676;
}
.cid-u8N2Zapugj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8N2Zapugj .mbr-section-title {
  color: #1070b9;
}
.cid-u8N2Zapugj .link-col {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-u8N2Zapugj .row {
  justify-content: space-between;
}
.cid-u8N2Zapugj .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u8N2Zapugj .image-wrapper {
    margin-top: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-u8N2Zapugj .image-wrapper {
    margin-left: 4rem;
  }
}
.cid-u8N2Zapugj .link-wrapper {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-u8N2Zapugj .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 1400px) {
  .cid-u8N2Zapugj .link-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u8N2Zapugj .link-wrapper {
    justify-content: center;
  }
}
.cid-u8N2Zapugj .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-u8N2Zapugj .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-u8N2Zapugj .mbr-section-subtitle:hover {
  background: #2dd5f5;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-u8N2Zapugj .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-u8N2Zapugj .link,
.cid-u8N2Zapugj .link-icon {
  color: #000000;
}
.cid-u8N2Zapugj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8N2Zapugj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8N2Zapugj .mbr-text,
.cid-u8N2Zapugj .mbr-section-btn {
  color: #767676;
}
.cid-u8N2ZaDjqn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u8N2ZaDjqn .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-u8N2ZaDjqn .text-block {
  position: relative;
  z-index: 0;
}
.cid-u8N2ZaDjqn .box {
  width: 25%;
  height: 40%;
  background: #ffda00;
  position: absolute;
  top: 4%;
}
.cid-u8N2ZaDjqn .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-u8N2ZaDjqn .box {
  right: 20%;
}
.cid-u8N2ZaDjqn .text-box {
  right: 0;
}
.cid-u8N2ZaDjqn .mbr-section-title,
.cid-u8N2ZaDjqn .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-u8N2ZaDjqn .text-box {
    display: none;
  }
  .cid-u8N2ZaDjqn .mbr-section-title,
  .cid-u8N2ZaDjqn .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-u8N2ZaDjqn .box {
    display: none;
  }
  .cid-u8N2ZaDjqn .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-u8N2ZaDjqn .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8N2ZaDjqn .text-box {
    writing-mode: bt-rl;
  }
}
.cid-u8N2ZaDjqn .mbr-section-text {
  color: #767676;
}
.cid-u8N2ZaDjqn .mbr-section-title {
  color: #1070b9;
}
.cid-u8N2ZaRgVK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u8N2ZaRgVK .box {
  margin-bottom: 15px;
}
.cid-u8N2ZaRgVK .mbr-media {
  position: relative;
  display: flex;
}
@media (min-width: 1441px) {
  .cid-u8N2ZaRgVK .mbr-media {
    max-height: 731px;
  }
}
@media (max-width: 1440px) {
  .cid-u8N2ZaRgVK .mbr-media {
    max-height: 618px;
  }
}
@media (max-width: 1200px) {
  .cid-u8N2ZaRgVK .mbr-media {
    max-height: 540px;
  }
}
@media (max-width: 1024px) {
  .cid-u8N2ZaRgVK .mbr-media {
    max-height: 432px;
  }
}
.cid-u8N2ZaRgVK .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u8N2ZaRgVK .mbr-media .mbr-iconfont {
  font-size: 80px;
}
.cid-u8N2ZaRgVK .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u8N2ZaRgVK .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u8N2ZaRgVK .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u8N2ZaRgVK .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u8N2ZaRgVK .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u8N2ZaRgVK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u8N2ZaRgVK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u8N2ZaRgVK .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-u8N2ZaRgVK .item-text-container a {
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-u8N2ZaRgVK .item-text-container a.text-black {
  color: #8A8A8A !important;
}
.cid-u8N2ZaRgVK .item-text-container a:hover {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-u8N2ZaRgVK .item-img {
  overflow: hidden;
}
.cid-u8N2ZaRgVK .item-img img {
  width: 100%;
}
.cid-u8N2ZaRgVK .title-text {
  color: #8A8A8A;
  margin-bottom: 0;
  margin-top: 14px;
  width: 100%;
}
.cid-u8N2ZaRgVK .mbr-text {
  color: #000000;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.cid-u8N2ZaRgVK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8N2ZaRgVK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8N2Zbgea2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u8N2Zbgea2 .carousel {
    overflow: hidden;
  }
  .cid-u8N2Zbgea2 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u8N2Zbgea2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u8N2Zbgea2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u8N2Zbgea2 .carousel,
.cid-u8N2Zbgea2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u8N2Zbgea2 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8N2Zbgea2 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-u8N2Zbgea2 .item-wrapper {
    height: 215px;
  }
}
.cid-u8N2Zbgea2 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-u8N2Zbgea2 .carousel-caption {
  bottom: 40px;
}
.cid-u8N2Zbgea2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u8N2Zbgea2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u8N2Zbgea2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u8N2Zbgea2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u8N2Zbgea2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-u8N2Zbgea2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8N2Zbgea2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u8N2Zbgea2 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u8N2Zbgea2 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-u8N2Zbgea2 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-u8N2Zbgea2 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-u8N2Zbgea2 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-u8N2Zbgea2 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-u8N2Zbgea2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u8N2Zbgea2 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-u8N2Zbgea2 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-u8N2Zbgea2 .soc-item::before,
.cid-u8N2Zbgea2 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u8N2Zbgea2 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-u8N2Zbgea2 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-u8N2Zbgea2 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-u8N2Zbgea2 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-u8N2Zbgea2 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-u8N2Zbgea2 .text {
  color: #ddc499;
}
.cid-u8N2Zbgea2 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-u8N2ZbvwhT {
  padding-top: 0rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .cid-u8N2ZbvwhT .carousel {
    overflow: hidden;
  }
  .cid-u8N2ZbvwhT .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-u8N2ZbvwhT .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u8N2ZbvwhT #back-button {
  bottom: 3em;
  left: 5em;
  padding: 0.6em 0.8em;
  background-color: #0d9ad6;
  color: white;
  border-radius: 0.6em;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: all 0.15s ease-out;
}
.cid-u8N2ZbvwhT #back-button:hover {
  opacity: 1;
  scale: 1.02;
}
.cid-u8N2ZbvwhT .mbr-section-title {
  text-align: left;
  color: #1070b9;
}
.cid-u8N2ZbvwhT .link-div {
  margin-left: 20px;
}
.cid-u8N2ZbvwhT .link-div h3 {
  margin-left: 4px;
}
.cid-u8N2ZbvwhT .mbr-card-title {
  color: #000e2f;
}
#custom-html-nr {
  /* Type valid CSS here */
}
#custom-html-nr .back-button {
  position: fixed;
}
.cid-u8N2ZbMtem {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u8N2ZbMtem .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8N2ZbMtem .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8N2ZbMtem .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u8N2ZbMtem .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-u8N2ZbMtem .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u8N2ZbMtem .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u8N2ZbMtem .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u8N2ZbMtem .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u8N2ZbMtem .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u8N2ZbMtem .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u8N2ZbMtem .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-u8N2ZbMtem .navbar-brand {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.cid-u8N2ZbMtem .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-u8N2ZbMtem .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3rem;
  }
}
.cid-u8N2ZbMtem .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-u8N2ZbMtem .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-u8N2ZbMtem .list li:hover {
  color: #2dd5f5 !important;
}
.cid-u8N2ZbMtem .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u8N2ZbMtem .list a:hover {
  color: #2dd5f5 !important;
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-u8N2ZbMtem .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-u8N2ZbMtem .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-u8N2ZbMtem .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-u8N2ZbMtem .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-u8N2ZbMtem .soc-item {
    padding: 10px;
  }
}
.cid-u8N2ZbMtem .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #ffffff;
}
.cid-u8N2ZbMtem .soc-item:hover .mbr-iconfont {
  color: #2dd5f5 !important;
}
@media (min-width: 992px) {
  .cid-u8N2ZbMtem .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
.cid-u8N2ZbMtem .full-width-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 991px) {
  .cid-u8N2ZbMtem .full-width-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-u8N2ZbMtem .border-item {
  width: 100%;
  height: 1px;
  background-color: #2689c6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u8N2ZbMtem .border-item {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-u8N2ZbMtem .copyright {
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u8N2ZbMtem .copyright {
    text-align: center !important;
  }
}
.cid-u8N2ZbMtem p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u8N2ZbMtem .row {
    justify-content: flex-start !important;
  }
}
.cid-u8N2ZbMtem .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-u8N2ZbMtem .card-container {
    margin-bottom: 2rem;
  }
}
.cid-u8N2ZbMtem .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-u8N2ZbMtem .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-u8N2ZbMtem .mbr-iconfont {
  font-size: 1rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-u8N2ZbMtem .card-title {
  color: #ffffff;
}
.cid-u8N2ZbMtem P {
  color: #22a5e5;
}
