body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', 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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #52a2ae !important;
}
.bg-warning {
  background-color: #daba2d !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #52a2ae !important;
  border-color: #52a2ae !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: #366b73 !important;
  border-color: #366b73 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #366b73 !important;
  border-color: #366b73 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #daba2d !important;
  border-color: #daba2d !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: #967f1a !important;
  border-color: #967f1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #967f1a !important;
  border-color: #967f1a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #52a2ae;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #366b73 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #52a2ae !important;
  border-color: #52a2ae !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #daba2d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #967f1a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #daba2d !important;
  border-color: #daba2d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #52a2ae !important;
}
.text-warning {
  color: #daba2d !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #316269 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #897418 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #52a2ae;
}
.alert-warning {
  background-color: #daba2d;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a9d1d7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f9f3da;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tXYHZt156h {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tXYHZt156h .navbar-dropdown {
  position: relative !important;
}
.cid-tXYHZt156h .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-tXYHZt156h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXYHZt156h .dropdown-item:hover,
.cid-tXYHZt156h .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tXYHZt156h .dropdown-item:hover span {
  color: white;
}
.cid-tXYHZt156h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXYHZt156h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXYHZt156h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXYHZt156h .nav-link {
  position: relative;
}
.cid-tXYHZt156h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .container {
    flex-wrap: nowrap;
  }
}
.cid-tXYHZt156h .nav-item:focus,
.cid-tXYHZt156h .nav-link:focus {
  outline: none;
}
.cid-tXYHZt156h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXYHZt156h .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXYHZt156h .navbar.opened {
  transition: all 0.3s;
}
.cid-tXYHZt156h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXYHZt156h .navbar .navbar-logo img {
  width: auto;
}
.cid-tXYHZt156h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXYHZt156h .navbar.collapsed {
  justify-content: center;
}
.cid-tXYHZt156h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXYHZt156h .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-tXYHZt156h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXYHZt156h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-tXYHZt156h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXYHZt156h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXYHZt156h .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXYHZt156h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXYHZt156h .dropdown-item.active,
.cid-tXYHZt156h .dropdown-item:active {
  background-color: transparent;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXYHZt156h .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXYHZt156h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXYHZt156h .navbar-buttons {
  min-width: 170px;
}
.cid-tXYHZt156h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e2c61;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h a.nav-link {
  display: flex;
}
.cid-tXYHZt156h .mbr-iconfont {
  color: #353535;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar {
    height: 70px;
  }
  .cid-tXYHZt156h .navbar.opened {
    height: auto;
  }
  .cid-tXYHZt156h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXYHZt156h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXYHZt156h .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}
@media (max-width: 767px) {
  .cid-tXYHZt156h .social-row {
    justify-content: left;
  }
}
.cid-tXYHZt156h .floatleft {
  margin-left: auto !important;
}
.cid-tXYHZt156h .floatright {
  margin-right: auto !important;
}
.cid-tXYHZt156h .headerpadding {
  padding-top: 0%;
  padding-bottom: 0%;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXYHZt156h .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXYHZt156h.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-tXYHZt156h .mbr-section-title {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title span {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title2 {
  color: #fff0b0;
  text-align: center;
}
.cid-tXYHZt156h p:hover {
  text-decoration: none !important;
}
.cid-tXYHZt156h .mbr-section-title2 span {
  color: #0e2c61;
}
.cid-tXYHZt156h .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-tXYHZt156h .mbr-text {
  color: #ffffff;
}
.cid-tXYHZt156h .navbar-nav .nav-link:hover,
.cid-tXYHZt156h .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-tXYHZt156h .navbar-nav .nav-link {
  padding: 10px 15px;
  transition: .5s;
}
.cid-tXYHZt156h .bgtop {
  background-color: #12109f;
}
.cid-tXYHZt156h .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-tXYHZt156h .navbar-nav {
    display: block !important;
  }
  .cid-tXYHZt156h .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
  .cid-tXYHZt156h .navbar {
    background-color: #ffffff !important;
  }
  .cid-tXYHZt156h button.navbar-toggler {
    margin-right: 15px;
    margin-top: 15px !important;
  }
}
.cid-tXYHZt156h .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tXYHZt156h .centermobil {
  margin: auto !important;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .centermobil .navbar .navbar-brand {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .nav-item a,
  .cid-tXYHZt156h .nav-item {
    color: #0e2c61 !important;
  }
}
.cid-tXYHZt156h .nav-dropdown .dropdown-item::after {
  margin-top: -0.3077em;
  position: absolute;
  right: 1.1538em;
  top: 50%;
}
.cid-tXYHZt156h .nav-item,
.cid-tXYHZt156h .btn {
  font-family: "Archivo";
}
.cid-tXYKEFuoUr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-tXYKEFuoUr .carousel-caption {
  padding-top: 2.5rem;
  opacity: 1;
  bottom: 4rem;
  border-radius: 0px 0px 0px 0px;
  padding-left: 45px;
  padding-right: 45px;
  width: 61%;
}
.cid-tXYKEFuoUr .btn {
  border-radius: 0px 0px 0px 0px;
}
.cid-tXYKEFuoUr .carousel {
  height: 34.2rem;
}
.cid-tXYKEFuoUr .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tXYKEFuoUr .carousel-item,
.cid-tXYKEFuoUr .carousel-inner {
  height: 100%;
}
.cid-tXYKEFuoUr .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tXYKEFuoUr .carousel-item img {
  object-fit: cover;
}
.cid-tXYKEFuoUr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tXYKEFuoUr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tXYKEFuoUr .carousel-control:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.cid-tXYKEFuoUr .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tXYKEFuoUr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tXYKEFuoUr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tXYKEFuoUr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tXYKEFuoUr .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tXYKEFuoUr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tXYKEFuoUr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tXYKEFuoUr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tXYKEFuoUr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tXYKEFuoUr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tXYKEFuoUr .carousel-indicators li.active,
.cid-tXYKEFuoUr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tXYKEFuoUr .carousel-indicators li::after,
.cid-tXYKEFuoUr .carousel-indicators li::before {
  content: none;
}
.cid-tXYKEFuoUr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tXYKEFuoUr .carousel-indicators {
    display: none !important;
  }
}
.cid-tXYKEFuoUr H5 {
  text-align: left;
}
.cid-tXYKEFuoUr P {
  color: #ffffff;
  text-align: left;
}
.cid-tXYKEFuoUr .sectionsubtitle {
  color: #ffe161;
  text-align: left;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tXYKEFuoUr .fadeIn {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tXYKEFuoUr .fadeInLeft {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tXYKEFuoUr .fadeInRight {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -200px, 0);
    transform: translate3d(0, -200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tXYKEFuoUr .fadeInDown {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tXYKEFuoUr .fadeInUp {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px);
    transform: perspective(100px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(100px) rotate3d(1, 0, 0, 10deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px);
    transform: perspective(100px);
  }
}
.cid-tXYKEFuoUr .flipInX {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(1000px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
  }
}
.cid-tXYKEFuoUr .flipInY {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes fadeDistortion {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-8deg) skewY(-8deg);
    transform: skewX(-8deg) skewY(-8deg);
  }
  25% {
    -webkit-transform: skewX(6deg) skewY(6deg);
    transform: skewX(6deg) skewY(6deg);
  }
  50% {
    -webkit-transform: skewX(-4deg) skewY(-4deg);
    transform: skewX(-4deg) skewY(-4deg);
  }
  75% {
    -webkit-transform: skewX(2deg) skewY(2deg);
    transform: skewX(2deg) skewY(2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeDistortion {
  0% {
    opacity: 0;
    -webkit-transform: skewX(-8deg) skewY(-8deg);
    transform: skewX(-8deg) skewY(-8deg);
  }
  25% {
    -webkit-transform: skewX(6deg) skewY(6deg);
    transform: skewX(6deg) skewY(6deg);
  }
  50% {
    -webkit-transform: skewX(-4deg) skewY(-4deg);
    transform: skewX(-4deg) skewY(-4deg);
  }
  75% {
    -webkit-transform: skewX(2deg) skewY(2deg);
    transform: skewX(2deg) skewY(2deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tXYKEFuoUr .fadeDistortion {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: fadeDistortion;
  animation-name: fadeDistortion;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.cid-tXYKEFuoUr .zoomIn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@media only screen and (max-width: 600px) {
  .cid-tXYKEFuoUr .carousel-caption {
    width: 80%;
    margin-left: -20px;
  }
  .cid-tXYKEFuoUr .carousel-control {
    top: 50%;
    width: 30px;
    height: 30px;
    font-size: 100%;
    border-radius: 50%;
    transition: all 0.3s;
  }
}
.cid-tXYUbxbkzW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXYUbxbkzW .xborder {
  border-style: solid;
  border-width: 0px 0px 0px 5px;
  border-color: #e43f3f;
  padding: 60px 60px 60px 60px;
  overflow: visible;
  background-color: #ffffff;
}
.cid-tXYUbxbkzW .btn {
  padding: 15px 55px 15px 55px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 5px 5px 5px 5px;
  float: right;
  margin-top: 65px;
  box-shadow: 29px 29px 60px 0px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}
.cid-tXYUbxbkzW .section-title span {
  color: #e43f3f;
}
.cid-tXYUbxbkzW P {
  color: #353535;
}
@media only screen and (max-width: 480px) {
  .cid-tXYUbxbkzW .btn {
    float: left !important;
    padding: 6px !important;
  }
}
@media only screen and (max-width: 800px) {
  .cid-tXYUbxbkzW .btn {
    float: left !important;
    padding: 14px;
  }
}
.cid-tXYUbxbkzW .section-title {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  margin-bottom: 20px;
}
.cid-tXYUbxbkzW .border-divider {
  margin: auto;
  height: 4px;
  width: 30px;
  background: #2575fc;
  border-radius: 2px;
  position: relative;
  left: 13px;
}
.cid-tXYUbxbkzW .border-divider::before {
  content: "";
  left: -27px;
  position: absolute;
  top: 0;
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #2575fc;
  -webkit-box-shadow: 9px 0 0 0 #2575fc, 18px 0 0 0 #2575fc;
  box-shadow: 9px 0 0 0 #2575fc, 18px 0 0 0 #2575fc;
}
.cid-tXYUbxbkzW .mbr-text {
  color: #353535;
}
.cid-tXZ0fYXGu2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZ0fYXGu2 .img-card {
  transition: all 0.3s;
  margin: 5px;
  border: none;
  padding: 3px;
  height: 100%;
  width: 120px;
  max-width: 120px;
}
@media (min-width: 992px) {
  .cid-tXZ0fYXGu2 .img-card {
    max-width: 12.5%;
  }
}
@media (max-width: 480px) {
  .cid-tXZ0fYXGu2 .img-card {
    max-width: 15%;
    margin: 5px;
  }
}
.cid-tXZ0fYXGu2 img:hover {
  opacity: .7;
}
.cid-tXZ0fYXGu2 .mbr-text {
  color: #e43f3f;
}
.cid-tXZ3AODFEL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-tXZ3AODFEL .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZ3u9tAWs {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  overflow: hidden;
}
.cid-tXZ3u9tAWs .media-container-row .mbr-text {
  color: #0e2c61;
}
.cid-tXYHZt156h {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tXYHZt156h .navbar-dropdown {
  position: relative !important;
}
.cid-tXYHZt156h .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-tXYHZt156h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXYHZt156h .dropdown-item:hover,
.cid-tXYHZt156h .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tXYHZt156h .dropdown-item:hover span {
  color: white;
}
.cid-tXYHZt156h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXYHZt156h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXYHZt156h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXYHZt156h .nav-link {
  position: relative;
}
.cid-tXYHZt156h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .container {
    flex-wrap: nowrap;
  }
}
.cid-tXYHZt156h .nav-item:focus,
.cid-tXYHZt156h .nav-link:focus {
  outline: none;
}
.cid-tXYHZt156h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXYHZt156h .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXYHZt156h .navbar.opened {
  transition: all 0.3s;
}
.cid-tXYHZt156h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXYHZt156h .navbar .navbar-logo img {
  width: auto;
}
.cid-tXYHZt156h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXYHZt156h .navbar.collapsed {
  justify-content: center;
}
.cid-tXYHZt156h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXYHZt156h .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-tXYHZt156h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXYHZt156h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-tXYHZt156h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXYHZt156h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXYHZt156h .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXYHZt156h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXYHZt156h .dropdown-item.active,
.cid-tXYHZt156h .dropdown-item:active {
  background-color: transparent;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXYHZt156h .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXYHZt156h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXYHZt156h .navbar-buttons {
  min-width: 170px;
}
.cid-tXYHZt156h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e2c61;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h a.nav-link {
  display: flex;
}
.cid-tXYHZt156h .mbr-iconfont {
  color: #353535;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar {
    height: 70px;
  }
  .cid-tXYHZt156h .navbar.opened {
    height: auto;
  }
  .cid-tXYHZt156h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXYHZt156h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXYHZt156h .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}
@media (max-width: 767px) {
  .cid-tXYHZt156h .social-row {
    justify-content: left;
  }
}
.cid-tXYHZt156h .floatleft {
  margin-left: auto !important;
}
.cid-tXYHZt156h .floatright {
  margin-right: auto !important;
}
.cid-tXYHZt156h .headerpadding {
  padding-top: 0%;
  padding-bottom: 0%;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXYHZt156h .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXYHZt156h.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-tXYHZt156h .mbr-section-title {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title span {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title2 {
  color: #fff0b0;
  text-align: center;
}
.cid-tXYHZt156h p:hover {
  text-decoration: none !important;
}
.cid-tXYHZt156h .mbr-section-title2 span {
  color: #0e2c61;
}
.cid-tXYHZt156h .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-tXYHZt156h .mbr-text {
  color: #ffffff;
}
.cid-tXYHZt156h .navbar-nav .nav-link:hover,
.cid-tXYHZt156h .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-tXYHZt156h .navbar-nav .nav-link {
  padding: 10px 15px;
  transition: .5s;
}
.cid-tXYHZt156h .bgtop {
  background-color: #12109f;
}
.cid-tXYHZt156h .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-tXYHZt156h .navbar-nav {
    display: block !important;
  }
  .cid-tXYHZt156h .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
  .cid-tXYHZt156h .navbar {
    background-color: #ffffff !important;
  }
  .cid-tXYHZt156h button.navbar-toggler {
    margin-right: 15px;
    margin-top: 15px !important;
  }
}
.cid-tXYHZt156h .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tXYHZt156h .centermobil {
  margin: auto !important;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .centermobil .navbar .navbar-brand {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .nav-item a,
  .cid-tXYHZt156h .nav-item {
    color: #0e2c61 !important;
  }
}
.cid-tXYHZt156h .nav-dropdown .dropdown-item::after {
  margin-top: -0.3077em;
  position: absolute;
  right: 1.1538em;
  top: 50%;
}
.cid-tXYHZt156h .nav-item,
.cid-tXYHZt156h .btn {
  font-family: "Archivo";
}
.cid-tXZkGNgyuM {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZkGNgyuM .page-header {
  position: relative;
  text-align: center;
}
.cid-tXZkGNgyuM .page-header h2 {
  position: relative;
  font-weight: 700;
}
.cid-tXZkGNgyuM .page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
}
.cid-tXZkGNgyuM .page-header a::after {
  content: "/";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  right: -7px;
  text-align: center;
}
.cid-tXZkGNgyuM .page-header a:last-child::after {
  display: none;
}
@media (max-width: 767.98px) {
  .cid-tXZkGNgyuM .page-header h2 {
    font-size: 35px;
  }
  .cid-tXZkGNgyuM .page-header a {
    font-size: 18px;
  }
  .cid-tXZkGNgyuM .footer .copyright p,
  .cid-tXZkGNgyuM .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
.cid-tXZkGNgyuM .mbr-section-title {
  color: #ffffff;
}
.cid-tXZkK71xq2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-tXZkK71xq2 .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZkNUv9rF {
  padding-top: 0px;
  /*padding-bottom: 45px;*/
  background-color: #ffffff;
}
.cid-tXZkNUv9rF .container {
  max-width: 1230px;
  width: 100%;
}
.cid-tXZkNUv9rF h1 {
  font-weight: 700;
  font-size: 45px;
  font-family: 'Roboto', sans-serif;
}
.cid-tXZkNUv9rF .header {
  margin-bottom: 80px;
}
.cid-tXZkNUv9rF #description {
  font-size: 24px;
}
.cid-tXZkNUv9rF .form-wrap {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  padding: 50px;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.cid-tXZkNUv9rF .form-group {
  margin-bottom: 25px;
}
.cid-tXZkNUv9rF .form-group > label {
  display: block;
  font-size: 18px;
  color: #000;
}
.cid-tXZkNUv9rF .custom-control-label {
  color: #000;
  font-size: 16px;
}
.cid-tXZkNUv9rF .form-control {
  height: 50px;
  background: #ecf0f4;
  border-color: transparent;
  padding: 0 15px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZkNUv9rF .form-control:focus {
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZkNUv9rF textarea.form-control {
  height: 160px;
  padding-top: 15px;
  resize: none;
}
.cid-tXZkNUv9rF .btn {
  padding: .657rem .75rem;
  font-size: 18px;
  letter-spacing: 0.050em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZkNUv9rF .btn-primary {
  color: #fff;
  background-color: #00bcd9;
  border-color: #00bcd9;
}
.cid-tXZkNUv9rF .btn-primary:hover {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZkNUv9rF .btn-primary:focus,
.cid-tXZkNUv9rF .btn-primary.focus {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZkNUv9rF .btn-primary:not(:disabled):not(.disabled):active,
.cid-tXZkNUv9rF .btn-primary:not(:disabled):not(.disabled).active,
.cid-tXZkNUv9rF .show > .btn-primary.dropdown-toggle {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
}
.cid-tXZkNUv9rF .btn-primary:not(:disabled):not(.disabled):active:focus,
.cid-tXZkNUv9rF .btn-primary:not(:disabled):not(.disabled).active:focus,
.cid-tXZkNUv9rF .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZkNUv9rF .climg {
  padding-top: 450px;
}
@media (max-width: 992px) {
  .cid-tXZkNUv9rF .climg {
    padding-top: 20px;
  }
}
.cid-tXZkNUv9rF input::placeholder {
  color: #d4d1d1 !important;
}
.cid-tXZ7lT0buq {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZ7lT0buq .img-card {
  transition: all 0.3s;
  margin: 5px;
  border: none;
  padding: 3px;
  height: 100%;
  width: 120px;
  max-width: 120px;
}
@media (min-width: 992px) {
  .cid-tXZ7lT0buq .img-card {
    max-width: 12.5%;
  }
}
@media (max-width: 480px) {
  .cid-tXZ7lT0buq .img-card {
    max-width: 15%;
    margin: 5px;
  }
}
.cid-tXZ7lT0buq img:hover {
  opacity: .7;
}
.cid-tXZ7lT0buq .mbr-text {
  color: #e43f3f;
}
.cid-tXZ7lUO7ne {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-tXZ7lUO7ne .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZ7lWd0WB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  overflow: hidden;
}
.cid-tXZ7lWd0WB .media-container-row .mbr-text {
  color: #0e2c61;
}
.cid-tXYHZt156h {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tXYHZt156h .navbar-dropdown {
  position: relative !important;
}
.cid-tXYHZt156h .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-tXYHZt156h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXYHZt156h .dropdown-item:hover,
.cid-tXYHZt156h .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tXYHZt156h .dropdown-item:hover span {
  color: white;
}
.cid-tXYHZt156h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXYHZt156h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXYHZt156h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXYHZt156h .nav-link {
  position: relative;
}
.cid-tXYHZt156h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .container {
    flex-wrap: nowrap;
  }
}
.cid-tXYHZt156h .nav-item:focus,
.cid-tXYHZt156h .nav-link:focus {
  outline: none;
}
.cid-tXYHZt156h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXYHZt156h .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXYHZt156h .navbar.opened {
  transition: all 0.3s;
}
.cid-tXYHZt156h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXYHZt156h .navbar .navbar-logo img {
  width: auto;
}
.cid-tXYHZt156h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXYHZt156h .navbar.collapsed {
  justify-content: center;
}
.cid-tXYHZt156h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXYHZt156h .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-tXYHZt156h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXYHZt156h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-tXYHZt156h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXYHZt156h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXYHZt156h .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXYHZt156h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXYHZt156h .dropdown-item.active,
.cid-tXYHZt156h .dropdown-item:active {
  background-color: transparent;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXYHZt156h .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXYHZt156h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXYHZt156h .navbar-buttons {
  min-width: 170px;
}
.cid-tXYHZt156h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e2c61;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h a.nav-link {
  display: flex;
}
.cid-tXYHZt156h .mbr-iconfont {
  color: #353535;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar {
    height: 70px;
  }
  .cid-tXYHZt156h .navbar.opened {
    height: auto;
  }
  .cid-tXYHZt156h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXYHZt156h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXYHZt156h .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}
@media (max-width: 767px) {
  .cid-tXYHZt156h .social-row {
    justify-content: left;
  }
}
.cid-tXYHZt156h .floatleft {
  margin-left: auto !important;
}
.cid-tXYHZt156h .floatright {
  margin-right: auto !important;
}
.cid-tXYHZt156h .headerpadding {
  padding-top: 0%;
  padding-bottom: 0%;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXYHZt156h .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXYHZt156h.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-tXYHZt156h .mbr-section-title {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title span {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title2 {
  color: #fff0b0;
  text-align: center;
}
.cid-tXYHZt156h p:hover {
  text-decoration: none !important;
}
.cid-tXYHZt156h .mbr-section-title2 span {
  color: #0e2c61;
}
.cid-tXYHZt156h .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-tXYHZt156h .mbr-text {
  color: #ffffff;
}
.cid-tXYHZt156h .navbar-nav .nav-link:hover,
.cid-tXYHZt156h .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-tXYHZt156h .navbar-nav .nav-link {
  padding: 10px 15px;
  transition: .5s;
}
.cid-tXYHZt156h .bgtop {
  background-color: #12109f;
}
.cid-tXYHZt156h .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-tXYHZt156h .navbar-nav {
    display: block !important;
  }
  .cid-tXYHZt156h .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
  .cid-tXYHZt156h .navbar {
    background-color: #ffffff !important;
  }
  .cid-tXYHZt156h button.navbar-toggler {
    margin-right: 15px;
    margin-top: 15px !important;
  }
}
.cid-tXYHZt156h .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tXYHZt156h .centermobil {
  margin: auto !important;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .centermobil .navbar .navbar-brand {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .nav-item a,
  .cid-tXYHZt156h .nav-item {
    color: #0e2c61 !important;
  }
}
.cid-tXYHZt156h .nav-dropdown .dropdown-item::after {
  margin-top: -0.3077em;
  position: absolute;
  right: 1.1538em;
  top: 50%;
}
.cid-tXYHZt156h .nav-item,
.cid-tXYHZt156h .btn {
  font-family: "Archivo";
}
.cid-tXZEyyK9dH {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZEyyK9dH .page-header {
  position: relative;
  text-align: center;
}
.cid-tXZEyyK9dH .page-header h2 {
  position: relative;
  font-weight: 700;
}
.cid-tXZEyyK9dH .page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
}
.cid-tXZEyyK9dH .page-header a::after {
  content: "/";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  right: -7px;
  text-align: center;
}
.cid-tXZEyyK9dH .page-header a:last-child::after {
  display: none;
}
@media (max-width: 767.98px) {
  .cid-tXZEyyK9dH .page-header h2 {
    font-size: 35px;
  }
  .cid-tXZEyyK9dH .page-header a {
    font-size: 18px;
  }
  .cid-tXZEyyK9dH .footer .copyright p,
  .cid-tXZEyyK9dH .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
.cid-tXZEyyK9dH .mbr-section-title {
  color: #ffffff;
}
.cid-tXZEyA5klv {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-tXZEyA5klv .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZEyB7owo {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXZEyB7owo .container {
  max-width: 1230px;
  width: 100%;
}
.cid-tXZEyB7owo h1 {
  font-weight: 700;
  font-size: 45px;
  font-family: 'Roboto', sans-serif;
}
.cid-tXZEyB7owo .header {
  margin-bottom: 80px;
}
.cid-tXZEyB7owo #description {
  font-size: 24px;
}
.cid-tXZEyB7owo .form-wrap {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  padding: 50px;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.cid-tXZEyB7owo .form-group {
  margin-bottom: 25px;
}
.cid-tXZEyB7owo .form-group > label {
  display: block;
  font-size: 18px;
  color: #000;
}
.cid-tXZEyB7owo .custom-control-label {
  color: #000;
  font-size: 16px;
}
.cid-tXZEyB7owo .form-control {
  height: 50px;
  background: #ecf0f4;
  border-color: transparent;
  padding: 0 15px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZEyB7owo .form-control:focus {
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZEyB7owo textarea.form-control {
  height: 160px;
  padding-top: 15px;
  resize: none;
}
.cid-tXZEyB7owo .btn {
  padding: .657rem .75rem;
  font-size: 18px;
  letter-spacing: 0.050em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZEyB7owo .btn-primary {
  color: #fff;
  background-color: #00bcd9;
  border-color: #00bcd9;
}
.cid-tXZEyB7owo .btn-primary:hover {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZEyB7owo .btn-primary:focus,
.cid-tXZEyB7owo .btn-primary.focus {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZEyB7owo .btn-primary:not(:disabled):not(.disabled):active,
.cid-tXZEyB7owo .btn-primary:not(:disabled):not(.disabled).active,
.cid-tXZEyB7owo .show > .btn-primary.dropdown-toggle {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
}
.cid-tXZEyB7owo .btn-primary:not(:disabled):not(.disabled):active:focus,
.cid-tXZEyB7owo .btn-primary:not(:disabled):not(.disabled).active:focus,
.cid-tXZEyB7owo .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZEyB7owo .climg {
  padding-top: 450px;
}
@media (max-width: 992px) {
  .cid-tXZEyB7owo .climg {
    padding-top: 20px;
  }
}
.cid-tXZEyB7owo input::placeholder {
  color: #d4d1d1 !important;
}
.cid-tXZEyD8LLU {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZEyD8LLU .img-card {
  transition: all 0.3s;
  margin: 5px;
  border: none;
  padding: 3px;
  height: 100%;
  width: 120px;
  max-width: 120px;
}
@media (min-width: 992px) {
  .cid-tXZEyD8LLU .img-card {
    max-width: 12.5%;
  }
}
@media (max-width: 480px) {
  .cid-tXZEyD8LLU .img-card {
    max-width: 15%;
    margin: 5px;
  }
}
.cid-tXZEyD8LLU img:hover {
  opacity: .7;
}
.cid-tXZEyD8LLU .mbr-text {
  color: #e43f3f;
}
.cid-tXZEyF42sZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-tXZEyF42sZ .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZEyGvFj9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  overflow: hidden;
}
.cid-tXZEyGvFj9 .media-container-row .mbr-text {
  color: #0e2c61;
}
.cid-tXYHZt156h {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tXYHZt156h .navbar-dropdown {
  position: relative !important;
}
.cid-tXYHZt156h .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-tXYHZt156h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXYHZt156h .dropdown-item:hover,
.cid-tXYHZt156h .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tXYHZt156h .dropdown-item:hover span {
  color: white;
}
.cid-tXYHZt156h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXYHZt156h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXYHZt156h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXYHZt156h .nav-link {
  position: relative;
}
.cid-tXYHZt156h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .container {
    flex-wrap: nowrap;
  }
}
.cid-tXYHZt156h .nav-item:focus,
.cid-tXYHZt156h .nav-link:focus {
  outline: none;
}
.cid-tXYHZt156h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXYHZt156h .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXYHZt156h .navbar.opened {
  transition: all 0.3s;
}
.cid-tXYHZt156h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXYHZt156h .navbar .navbar-logo img {
  width: auto;
}
.cid-tXYHZt156h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXYHZt156h .navbar.collapsed {
  justify-content: center;
}
.cid-tXYHZt156h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXYHZt156h .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-tXYHZt156h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXYHZt156h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-tXYHZt156h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXYHZt156h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXYHZt156h .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXYHZt156h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXYHZt156h .dropdown-item.active,
.cid-tXYHZt156h .dropdown-item:active {
  background-color: transparent;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXYHZt156h .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXYHZt156h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXYHZt156h .navbar-buttons {
  min-width: 170px;
}
.cid-tXYHZt156h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e2c61;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h a.nav-link {
  display: flex;
}
.cid-tXYHZt156h .mbr-iconfont {
  color: #353535;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar {
    height: 70px;
  }
  .cid-tXYHZt156h .navbar.opened {
    height: auto;
  }
  .cid-tXYHZt156h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXYHZt156h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXYHZt156h .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}
@media (max-width: 767px) {
  .cid-tXYHZt156h .social-row {
    justify-content: left;
  }
}
.cid-tXYHZt156h .floatleft {
  margin-left: auto !important;
}
.cid-tXYHZt156h .floatright {
  margin-right: auto !important;
}
.cid-tXYHZt156h .headerpadding {
  padding-top: 0%;
  padding-bottom: 0%;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXYHZt156h .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXYHZt156h.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-tXYHZt156h .mbr-section-title {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title span {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title2 {
  color: #fff0b0;
  text-align: center;
}
.cid-tXYHZt156h p:hover {
  text-decoration: none !important;
}
.cid-tXYHZt156h .mbr-section-title2 span {
  color: #0e2c61;
}
.cid-tXYHZt156h .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-tXYHZt156h .mbr-text {
  color: #ffffff;
}
.cid-tXYHZt156h .navbar-nav .nav-link:hover,
.cid-tXYHZt156h .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-tXYHZt156h .navbar-nav .nav-link {
  padding: 10px 15px;
  transition: .5s;
}
.cid-tXYHZt156h .bgtop {
  background-color: #12109f;
}
.cid-tXYHZt156h .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-tXYHZt156h .navbar-nav {
    display: block !important;
  }
  .cid-tXYHZt156h .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
  .cid-tXYHZt156h .navbar {
    background-color: #ffffff !important;
  }
  .cid-tXYHZt156h button.navbar-toggler {
    margin-right: 15px;
    margin-top: 15px !important;
  }
}
.cid-tXYHZt156h .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tXYHZt156h .centermobil {
  margin: auto !important;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .centermobil .navbar .navbar-brand {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .nav-item a,
  .cid-tXYHZt156h .nav-item {
    color: #0e2c61 !important;
  }
}
.cid-tXYHZt156h .nav-dropdown .dropdown-item::after {
  margin-top: -0.3077em;
  position: absolute;
  right: 1.1538em;
  top: 50%;
}
.cid-tXYHZt156h .nav-item,
.cid-tXYHZt156h .btn {
  font-family: "Archivo";
}
.cid-tXZFWJXfwT {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZFWJXfwT .page-header {
  position: relative;
  text-align: center;
}
.cid-tXZFWJXfwT .page-header h2 {
  position: relative;
  font-weight: 700;
}
.cid-tXZFWJXfwT .page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
}
.cid-tXZFWJXfwT .page-header a::after {
  content: "/";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  right: -7px;
  text-align: center;
}
.cid-tXZFWJXfwT .page-header a:last-child::after {
  display: none;
}
@media (max-width: 767.98px) {
  .cid-tXZFWJXfwT .page-header h2 {
    font-size: 35px;
  }
  .cid-tXZFWJXfwT .page-header a {
    font-size: 18px;
  }
  .cid-tXZFWJXfwT .footer .copyright p,
  .cid-tXZFWJXfwT .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
.cid-tXZFWJXfwT .mbr-section-title {
  color: #ffffff;
}
.cid-tXZFWL1SOG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-tXZFWL1SOG .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZFWLWjbQ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXZFWLWjbQ .container {
  max-width: 1230px;
  width: 100%;
}
.cid-tXZFWLWjbQ h1 {
  font-weight: 700;
  font-size: 45px;
  font-family: 'Roboto', sans-serif;
}
.cid-tXZFWLWjbQ .header {
  margin-bottom: 80px;
}
.cid-tXZFWLWjbQ #description {
  font-size: 24px;
}
.cid-tXZFWLWjbQ .form-wrap {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  padding: 50px;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.cid-tXZFWLWjbQ .form-group {
  margin-bottom: 25px;
}
.cid-tXZFWLWjbQ .form-group > label {
  display: block;
  font-size: 18px;
  color: #000;
}
.cid-tXZFWLWjbQ .custom-control-label {
  color: #000;
  font-size: 16px;
}
.cid-tXZFWLWjbQ .form-control {
  height: 50px;
  background: #ecf0f4;
  border-color: transparent;
  padding: 0 15px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZFWLWjbQ .form-control:focus {
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZFWLWjbQ textarea.form-control {
  height: 160px;
  padding-top: 15px;
  resize: none;
}
.cid-tXZFWLWjbQ .btn {
  padding: .657rem .75rem;
  font-size: 18px;
  letter-spacing: 0.050em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZFWLWjbQ .btn-primary {
  color: #fff;
  background-color: #00bcd9;
  border-color: #00bcd9;
}
.cid-tXZFWLWjbQ .btn-primary:hover {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZFWLWjbQ .btn-primary:focus,
.cid-tXZFWLWjbQ .btn-primary.focus {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZFWLWjbQ .btn-primary:not(:disabled):not(.disabled):active,
.cid-tXZFWLWjbQ .btn-primary:not(:disabled):not(.disabled).active,
.cid-tXZFWLWjbQ .show > .btn-primary.dropdown-toggle {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
}
.cid-tXZFWLWjbQ .btn-primary:not(:disabled):not(.disabled):active:focus,
.cid-tXZFWLWjbQ .btn-primary:not(:disabled):not(.disabled).active:focus,
.cid-tXZFWLWjbQ .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZFWLWjbQ .climg {
  padding-top: 450px;
}
@media (max-width: 992px) {
  .cid-tXZFWLWjbQ .climg {
    padding-top: 20px;
  }
}
.cid-tXZFWLWjbQ input::placeholder {
  color: #d4d1d1 !important;
}
.cid-tXZFWNwUcO {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZFWNwUcO .img-card {
  transition: all 0.3s;
  margin: 5px;
  border: none;
  padding: 3px;
  height: 100%;
  width: 120px;
  max-width: 120px;
}
@media (min-width: 992px) {
  .cid-tXZFWNwUcO .img-card {
    max-width: 12.5%;
  }
}
@media (max-width: 480px) {
  .cid-tXZFWNwUcO .img-card {
    max-width: 15%;
    margin: 5px;
  }
}
.cid-tXZFWNwUcO img:hover {
  opacity: .7;
}
.cid-tXZFWNwUcO .mbr-text {
  color: #e43f3f;
}
.cid-tXZFWPnvMR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-tXZFWPnvMR .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZFWQiNhu {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  overflow: hidden;
}
.cid-tXZFWQiNhu .media-container-row .mbr-text {
  color: #0e2c61;
}
.cid-tXYHZt156h {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tXYHZt156h .navbar-dropdown {
  position: relative !important;
}
.cid-tXYHZt156h .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-tXYHZt156h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXYHZt156h .dropdown-item:hover,
.cid-tXYHZt156h .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tXYHZt156h .dropdown-item:hover span {
  color: white;
}
.cid-tXYHZt156h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXYHZt156h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXYHZt156h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXYHZt156h .nav-link {
  position: relative;
}
.cid-tXYHZt156h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .container {
    flex-wrap: nowrap;
  }
}
.cid-tXYHZt156h .nav-item:focus,
.cid-tXYHZt156h .nav-link:focus {
  outline: none;
}
.cid-tXYHZt156h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXYHZt156h .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXYHZt156h .navbar.opened {
  transition: all 0.3s;
}
.cid-tXYHZt156h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXYHZt156h .navbar .navbar-logo img {
  width: auto;
}
.cid-tXYHZt156h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXYHZt156h .navbar.collapsed {
  justify-content: center;
}
.cid-tXYHZt156h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXYHZt156h .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-tXYHZt156h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXYHZt156h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-tXYHZt156h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXYHZt156h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXYHZt156h .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXYHZt156h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXYHZt156h .dropdown-item.active,
.cid-tXYHZt156h .dropdown-item:active {
  background-color: transparent;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXYHZt156h .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXYHZt156h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXYHZt156h .navbar-buttons {
  min-width: 170px;
}
.cid-tXYHZt156h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e2c61;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h a.nav-link {
  display: flex;
}
.cid-tXYHZt156h .mbr-iconfont {
  color: #353535;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar {
    height: 70px;
  }
  .cid-tXYHZt156h .navbar.opened {
    height: auto;
  }
  .cid-tXYHZt156h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXYHZt156h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXYHZt156h .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}
@media (max-width: 767px) {
  .cid-tXYHZt156h .social-row {
    justify-content: left;
  }
}
.cid-tXYHZt156h .floatleft {
  margin-left: auto !important;
}
.cid-tXYHZt156h .floatright {
  margin-right: auto !important;
}
.cid-tXYHZt156h .headerpadding {
  padding-top: 0%;
  padding-bottom: 0%;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXYHZt156h .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXYHZt156h.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-tXYHZt156h .mbr-section-title {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title span {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title2 {
  color: #fff0b0;
  text-align: center;
}
.cid-tXYHZt156h p:hover {
  text-decoration: none !important;
}
.cid-tXYHZt156h .mbr-section-title2 span {
  color: #0e2c61;
}
.cid-tXYHZt156h .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-tXYHZt156h .mbr-text {
  color: #ffffff;
}
.cid-tXYHZt156h .navbar-nav .nav-link:hover,
.cid-tXYHZt156h .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-tXYHZt156h .navbar-nav .nav-link {
  padding: 10px 15px;
  transition: .5s;
}
.cid-tXYHZt156h .bgtop {
  background-color: #12109f;
}
.cid-tXYHZt156h .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-tXYHZt156h .navbar-nav {
    display: block !important;
  }
  .cid-tXYHZt156h .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
  .cid-tXYHZt156h .navbar {
    background-color: #ffffff !important;
  }
  .cid-tXYHZt156h button.navbar-toggler {
    margin-right: 15px;
    margin-top: 15px !important;
  }
}
.cid-tXYHZt156h .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tXYHZt156h .centermobil {
  margin: auto !important;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .centermobil .navbar .navbar-brand {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .nav-item a,
  .cid-tXYHZt156h .nav-item {
    color: #0e2c61 !important;
  }
}
.cid-tXYHZt156h .nav-dropdown .dropdown-item::after {
  margin-top: -0.3077em;
  position: absolute;
  right: 1.1538em;
  top: 50%;
}
.cid-tXYHZt156h .nav-item,
.cid-tXYHZt156h .btn {
  font-family: "Archivo";
}
.cid-tXZGjPLvQI {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZGjPLvQI .page-header {
  position: relative;
  text-align: center;
}
.cid-tXZGjPLvQI .page-header h2 {
  position: relative;
  font-weight: 700;
}
.cid-tXZGjPLvQI .page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
}
.cid-tXZGjPLvQI .page-header a::after {
  content: "/";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  right: -7px;
  text-align: center;
}
.cid-tXZGjPLvQI .page-header a:last-child::after {
  display: none;
}
@media (max-width: 767.98px) {
  .cid-tXZGjPLvQI .page-header h2 {
    font-size: 35px;
  }
  .cid-tXZGjPLvQI .page-header a {
    font-size: 18px;
  }
  .cid-tXZGjPLvQI .footer .copyright p,
  .cid-tXZGjPLvQI .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
.cid-tXZGjPLvQI .mbr-section-title {
  color: #ffffff;
}
.cid-tXZGjQS05f {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-tXZGjQS05f .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZGjS54me {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXZGjS54me .container {
  max-width: 1230px;
  width: 100%;
}
.cid-tXZGjS54me h1 {
  font-weight: 700;
  font-size: 45px;
  font-family: 'Roboto', sans-serif;
}
.cid-tXZGjS54me .header {
  margin-bottom: 80px;
}
.cid-tXZGjS54me #description {
  font-size: 24px;
}
.cid-tXZGjS54me .form-wrap {
  background: #ffffff;
  width: 100%;
  max-width: 850px;
  padding: 50px;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.cid-tXZGjS54me .form-group {
  margin-bottom: 25px;
}
.cid-tXZGjS54me .form-group > label {
  display: block;
  font-size: 18px;
  color: #000;
}
.cid-tXZGjS54me .custom-control-label {
  color: #000;
  font-size: 16px;
}
.cid-tXZGjS54me .form-control {
  height: 50px;
  background: #ecf0f4;
  border-color: transparent;
  padding: 0 15px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZGjS54me .form-control:focus {
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZGjS54me textarea.form-control {
  height: 160px;
  padding-top: 15px;
  resize: none;
}
.cid-tXZGjS54me .btn {
  padding: .657rem .75rem;
  font-size: 18px;
  letter-spacing: 0.050em;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cid-tXZGjS54me .btn-primary {
  color: #fff;
  background-color: #00bcd9;
  border-color: #00bcd9;
}
.cid-tXZGjS54me .btn-primary:hover {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZGjS54me .btn-primary:focus,
.cid-tXZGjS54me .btn-primary.focus {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZGjS54me .btn-primary:not(:disabled):not(.disabled):active,
.cid-tXZGjS54me .btn-primary:not(:disabled):not(.disabled).active,
.cid-tXZGjS54me .show > .btn-primary.dropdown-toggle {
  color: #00bcd9;
  background-color: #ffffff;
  border-color: #00bcd9;
}
.cid-tXZGjS54me .btn-primary:not(:disabled):not(.disabled):active:focus,
.cid-tXZGjS54me .btn-primary:not(:disabled):not(.disabled).active:focus,
.cid-tXZGjS54me .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cid-tXZGjS54me .climg {
  padding-top: 450px;
}
@media (max-width: 992px) {
  .cid-tXZGjS54me .climg {
    padding-top: 20px;
  }
}
.cid-tXZGjS54me input::placeholder {
  color: #d4d1d1 !important;
}
.cid-tXZGjUiP5H {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZGjUiP5H .img-card {
  transition: all 0.3s;
  margin: 5px;
  border: none;
  padding: 3px;
  height: 100%;
  width: 120px;
  max-width: 120px;
}
@media (min-width: 992px) {
  .cid-tXZGjUiP5H .img-card {
    max-width: 12.5%;
  }
}
@media (max-width: 480px) {
  .cid-tXZGjUiP5H .img-card {
    max-width: 15%;
    margin: 5px;
  }
}
.cid-tXZGjUiP5H img:hover {
  opacity: .7;
}
.cid-tXZGjUiP5H .mbr-text {
  color: #e43f3f;
}
.cid-tXZGjWpDIu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-tXZGjWpDIu .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZGjXqAm1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  overflow: hidden;
}
.cid-tXZGjXqAm1 .media-container-row .mbr-text {
  color: #0e2c61;
}
.cid-tXYHZt156h {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tXYHZt156h .navbar-dropdown {
  position: relative !important;
}
.cid-tXYHZt156h .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-tXYHZt156h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXYHZt156h .dropdown-item:hover,
.cid-tXYHZt156h .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tXYHZt156h .dropdown-item:hover span {
  color: white;
}
.cid-tXYHZt156h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXYHZt156h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXYHZt156h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXYHZt156h .nav-link {
  position: relative;
}
.cid-tXYHZt156h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .container {
    flex-wrap: nowrap;
  }
}
.cid-tXYHZt156h .nav-item:focus,
.cid-tXYHZt156h .nav-link:focus {
  outline: none;
}
.cid-tXYHZt156h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXYHZt156h .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXYHZt156h .navbar.opened {
  transition: all 0.3s;
}
.cid-tXYHZt156h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXYHZt156h .navbar .navbar-logo img {
  width: auto;
}
.cid-tXYHZt156h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXYHZt156h .navbar.collapsed {
  justify-content: center;
}
.cid-tXYHZt156h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXYHZt156h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXYHZt156h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXYHZt156h .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-tXYHZt156h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXYHZt156h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-tXYHZt156h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXYHZt156h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXYHZt156h .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXYHZt156h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXYHZt156h .dropdown-item.active,
.cid-tXYHZt156h .dropdown-item:active {
  background-color: transparent;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXYHZt156h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXYHZt156h .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXYHZt156h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXYHZt156h .navbar-buttons {
  min-width: 170px;
}
.cid-tXYHZt156h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e2c61;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXYHZt156h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXYHZt156h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXYHZt156h a.nav-link {
  display: flex;
}
.cid-tXYHZt156h .mbr-iconfont {
  color: #353535;
}
.cid-tXYHZt156h .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-tXYHZt156h .navbar {
    height: 70px;
  }
  .cid-tXYHZt156h .navbar.opened {
    height: auto;
  }
  .cid-tXYHZt156h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXYHZt156h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXYHZt156h .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}
@media (max-width: 767px) {
  .cid-tXYHZt156h .social-row {
    justify-content: left;
  }
}
.cid-tXYHZt156h .floatleft {
  margin-left: auto !important;
}
.cid-tXYHZt156h .floatright {
  margin-right: auto !important;
}
.cid-tXYHZt156h .headerpadding {
  padding-top: 0%;
  padding-bottom: 0%;
}
@media (max-width: 991px) {
  .cid-tXYHZt156h .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXYHZt156h .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXYHZt156h .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXYHZt156h.navbar-short {
  min-height: 60px;
}
.cid-tXYHZt156h.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXYHZt156h.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXYHZt156h .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-tXYHZt156h .mbr-section-title {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title span {
  color: #ffffff;
}
.cid-tXYHZt156h .mbr-section-title2 {
  color: #fff0b0;
  text-align: center;
}
.cid-tXYHZt156h p:hover {
  text-decoration: none !important;
}
.cid-tXYHZt156h .mbr-section-title2 span {
  color: #0e2c61;
}
.cid-tXYHZt156h .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-tXYHZt156h:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXYHZt156h .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-tXYHZt156h .mbr-text {
  color: #ffffff;
}
.cid-tXYHZt156h .navbar-nav .nav-link:hover,
.cid-tXYHZt156h .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-tXYHZt156h .navbar-nav .nav-link {
  padding: 10px 15px;
  transition: .5s;
}
.cid-tXYHZt156h .bgtop {
  background-color: #12109f;
}
.cid-tXYHZt156h .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-tXYHZt156h .navbar-nav {
    display: block !important;
  }
  .cid-tXYHZt156h .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
  .cid-tXYHZt156h .navbar {
    background-color: #ffffff !important;
  }
  .cid-tXYHZt156h button.navbar-toggler {
    margin-right: 15px;
    margin-top: 15px !important;
  }
}
.cid-tXYHZt156h .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tXYHZt156h .centermobil {
  margin: auto !important;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .centermobil .navbar .navbar-brand {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cid-tXYHZt156h .nav-item a,
  .cid-tXYHZt156h .nav-item {
    color: #0e2c61 !important;
  }
}
.cid-tXYHZt156h .nav-dropdown .dropdown-item::after {
  margin-top: -0.3077em;
  position: absolute;
  right: 1.1538em;
  top: 50%;
}
.cid-tXYHZt156h .nav-item,
.cid-tXYHZt156h .btn {
  font-family: "Archivo";
}
.cid-tXZIdKjNG6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZIdKjNG6 .page-header {
  position: relative;
  text-align: center;
}
.cid-tXZIdKjNG6 .page-header h2 {
  position: relative;
  font-weight: 700;
}
.cid-tXZIdKjNG6 .page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
}
.cid-tXZIdKjNG6 .page-header a::after {
  content: "/";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  right: -7px;
  text-align: center;
}
.cid-tXZIdKjNG6 .page-header a:last-child::after {
  display: none;
}
@media (max-width: 767.98px) {
  .cid-tXZIdKjNG6 .page-header h2 {
    font-size: 35px;
  }
  .cid-tXZIdKjNG6 .page-header a {
    font-size: 18px;
  }
  .cid-tXZIdKjNG6 .footer .copyright p,
  .cid-tXZIdKjNG6 .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
.cid-tXZIdKjNG6 .mbr-section-title {
  color: #ffffff;
}
.cid-tXZIdLYx2o {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-tXZIdLYx2o .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZJyyl7kQ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tXZJyyl7kQ .right {
  float: right;
  border: 1px solid #0e2c61;
  padding: 15px;
  margin: 15px 40px 40px 40px;
  max-width: 345px;
  width: 100%;
  position: relative;
}
.cid-tXZJyyl7kQ .left {
  float: left;
  border: 1px solid #0e2c61;
  padding: 15px;
  margin: 15px 40px 40px 40px;
  max-width: 345px;
  width: 100%;
  position: relative;
}
.cid-tXZJyyl7kQ .section-image img {
  float: none!important;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-tXZJyyl7kQ .section-image {
    float: none!important;
    padding: 20px!important;
    margin: 0 auto 30px!important;
    display: block;
  }
  .cid-tXZJyyl7kQ .section-image img {
    margin: 0 auto !important;
  }
}
.cid-tXZJyyl7kQ .alignright {
  border: 0px;
  width: 100%;
  margin-top: 20px;
  margin-left: 60px;
}
.cid-tXZJyyl7kQ P {
  padding: 10px;
  color: #000000;
}
.cid-tXZIdRhNb7 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZIdRhNb7 .img-card {
  transition: all 0.3s;
  margin: 5px;
  border: none;
  padding: 3px;
  height: 100%;
  width: 120px;
  max-width: 120px;
}
@media (min-width: 992px) {
  .cid-tXZIdRhNb7 .img-card {
    max-width: 12.5%;
  }
}
@media (max-width: 480px) {
  .cid-tXZIdRhNb7 .img-card {
    max-width: 15%;
    margin: 5px;
  }
}
.cid-tXZIdRhNb7 img:hover {
  opacity: .7;
}
.cid-tXZIdRhNb7 .mbr-text {
  color: #e43f3f;
}
.cid-tXZIdUjvFZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-tXZIdUjvFZ .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZIdWkBWS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  overflow: hidden;
}
.cid-tXZIdWkBWS .media-container-row .mbr-text {
  color: #0e2c61;
}
.cid-tXZYEAFVFY {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-tXZYEAFVFY .navbar-dropdown {
  position: relative !important;
}
.cid-tXZYEAFVFY .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-tXZYEAFVFY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tXZYEAFVFY .dropdown-item:hover,
.cid-tXZYEAFVFY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tXZYEAFVFY .dropdown-item:hover span {
  color: white;
}
.cid-tXZYEAFVFY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXZYEAFVFY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXZYEAFVFY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tXZYEAFVFY .nav-link {
  position: relative;
}
.cid-tXZYEAFVFY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXZYEAFVFY .container {
    flex-wrap: nowrap;
  }
}
.cid-tXZYEAFVFY .nav-item:focus,
.cid-tXZYEAFVFY .nav-link:focus {
  outline: none;
}
.cid-tXZYEAFVFY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXZYEAFVFY .navbar {
  width: 100%;
  margin-bottom: -2px !important;
  padding: 0;
  min-height: 70px;
  transition: all 0.3s;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tXZYEAFVFY .navbar.opened {
  transition: all 0.3s;
}
.cid-tXZYEAFVFY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXZYEAFVFY .navbar .navbar-logo img {
  width: auto;
}
.cid-tXZYEAFVFY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXZYEAFVFY .navbar.collapsed {
  justify-content: center;
}
.cid-tXZYEAFVFY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
@media (min-width: 992px) {
  .cid-tXZYEAFVFY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXZYEAFVFY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXZYEAFVFY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXZYEAFVFY .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-tXZYEAFVFY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
@media (max-width: 991px) {
  .cid-tXZYEAFVFY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXZYEAFVFY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXZYEAFVFY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXZYEAFVFY .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-tXZYEAFVFY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXZYEAFVFY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXZYEAFVFY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
  }
  .cid-tXZYEAFVFY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXZYEAFVFY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXZYEAFVFY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXZYEAFVFY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXZYEAFVFY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXZYEAFVFY .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-tXZYEAFVFY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXZYEAFVFY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXZYEAFVFY .dropdown-item.active,
.cid-tXZYEAFVFY .dropdown-item:active {
  background-color: transparent;
}
.cid-tXZYEAFVFY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXZYEAFVFY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXZYEAFVFY .navbar.navbar-expand-lg .dropdown .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXZYEAFVFY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXZYEAFVFY .navbar-buttons {
  min-width: 170px;
}
.cid-tXZYEAFVFY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXZYEAFVFY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #0e2c61;
}
.cid-tXZYEAFVFY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXZYEAFVFY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXZYEAFVFY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXZYEAFVFY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXZYEAFVFY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXZYEAFVFY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXZYEAFVFY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXZYEAFVFY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXZYEAFVFY a.nav-link {
  display: flex;
}
.cid-tXZYEAFVFY .mbr-iconfont {
  color: #353535;
}
.cid-tXZYEAFVFY .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-tXZYEAFVFY .navbar {
    height: 70px;
  }
  .cid-tXZYEAFVFY .navbar.opened {
    height: auto;
  }
  .cid-tXZYEAFVFY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXZYEAFVFY .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tXZYEAFVFY .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2rem;
  width: 2rem;
}
@media (max-width: 767px) {
  .cid-tXZYEAFVFY .social-row {
    justify-content: left;
  }
}
.cid-tXZYEAFVFY .floatleft {
  margin-left: auto !important;
}
.cid-tXZYEAFVFY .floatright {
  margin-right: auto !important;
}
.cid-tXZYEAFVFY .headerpadding {
  padding-top: 0%;
  padding-bottom: 0%;
}
@media (max-width: 991px) {
  .cid-tXZYEAFVFY .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXZYEAFVFY .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXZYEAFVFY .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tXZYEAFVFY.navbar-short {
  min-height: 60px;
}
.cid-tXZYEAFVFY.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXZYEAFVFY.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXZYEAFVFY .navbar-logo img {
  width: auto;
  min-height: 60px;
}
.cid-tXZYEAFVFY .mbr-section-title {
  color: #ffffff;
}
.cid-tXZYEAFVFY .mbr-section-title span {
  color: #ffffff;
}
.cid-tXZYEAFVFY .mbr-section-title2 {
  color: #fff0b0;
  text-align: center;
}
.cid-tXZYEAFVFY p:hover {
  text-decoration: none !important;
}
.cid-tXZYEAFVFY .mbr-section-title2 span {
  color: #0e2c61;
}
.cid-tXZYEAFVFY .dropdown-menu.show a {
  display: block;
  background-color: #ffffff !important;
  color: #000000 !important;
  top: -20px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25), 0 0px 1px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 0.3846em 4.615em 0.3846em 1.5385em;
}
@media (min-width: 992px) {
  .cid-tXZYEAFVFY:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tXZYEAFVFY .dropdown-toggle::after {
  margin-left: 0.5rem !important;
  top: 13px;
  position: relative;
}
.cid-tXZYEAFVFY .mbr-text {
  color: #ffffff;
}
.cid-tXZYEAFVFY .navbar-nav .nav-link:hover,
.cid-tXZYEAFVFY .navbar-nav .nav-link.active {
  background: #e43f3f;
  color: #ffffff !important;
}
.cid-tXZYEAFVFY .navbar-nav .nav-link {
  padding: 10px 15px;
  transition: .5s;
}
.cid-tXZYEAFVFY .bgtop {
  background-color: #12109f;
}
.cid-tXZYEAFVFY .dropdown-menu {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  .cid-tXZYEAFVFY .navbar-nav {
    display: block !important;
  }
  .cid-tXZYEAFVFY .navbar-nav .nav-link {
    padding: 11px 16px;
    transition: .5s;
  }
  .cid-tXZYEAFVFY .navbar {
    background-color: #ffffff !important;
  }
  .cid-tXZYEAFVFY button.navbar-toggler {
    margin-right: 15px;
    margin-top: 15px !important;
  }
}
.cid-tXZYEAFVFY .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
.cid-tXZYEAFVFY .centermobil {
  margin: auto !important;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .cid-tXZYEAFVFY .centermobil .navbar .navbar-brand {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 991px) {
  .cid-tXZYEAFVFY .nav-item a,
  .cid-tXZYEAFVFY .nav-item {
    color: #0e2c61 !important;
  }
}
.cid-tXZYEAFVFY .nav-dropdown .dropdown-item::after {
  margin-top: -0.3077em;
  position: absolute;
  right: 1.1538em;
  top: 50%;
}
.cid-tXZYEAFVFY .nav-item,
.cid-tXZYEAFVFY .btn {
  font-family: "Archivo";
}
.cid-tXZYEHDubE {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZYEHDubE .page-header {
  position: relative;
  text-align: center;
}
.cid-tXZYEHDubE .page-header h2 {
  position: relative;
  font-weight: 700;
}
.cid-tXZYEHDubE .page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 22px;
}
.cid-tXZYEHDubE .page-header a::after {
  content: "/";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 5px;
  right: -7px;
  text-align: center;
}
.cid-tXZYEHDubE .page-header a:last-child::after {
  display: none;
}
@media (max-width: 767.98px) {
  .cid-tXZYEHDubE .page-header h2 {
    font-size: 35px;
  }
  .cid-tXZYEHDubE .page-header a {
    font-size: 18px;
  }
  .cid-tXZYEHDubE .footer .copyright p,
  .cid-tXZYEHDubE .footer .copyright .col-md-6:last-child p {
    margin: 5px 0;
    text-align: center;
  }
}
.cid-tXZYEHDubE .mbr-section-title {
  color: #ffffff;
}
.cid-tXZYEJeG1K {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-tXZYEJeG1K .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZZkE0sUA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tXZZkE0sUA H1 {
  color: #187c11;
}
.cid-tXZZkE0sUA P {
  color: #000000;
  text-align: center;
}
.cid-tXZZkE0sUA .bgcard {
  background-color: #f3fdff;
}
.cid-tXZYEMrgPx {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: linear-gradient(to right, #5b3bff, #00f2fe);
}
.cid-tXZYEMrgPx .img-card {
  transition: all 0.3s;
  margin: 5px;
  border: none;
  padding: 3px;
  height: 100%;
  width: 120px;
  max-width: 120px;
}
@media (min-width: 992px) {
  .cid-tXZYEMrgPx .img-card {
    max-width: 12.5%;
  }
}
@media (max-width: 480px) {
  .cid-tXZYEMrgPx .img-card {
    max-width: 15%;
    margin: 5px;
  }
}
.cid-tXZYEMrgPx img:hover {
  opacity: .7;
}
.cid-tXZYEMrgPx .mbr-text {
  color: #e43f3f;
}
.cid-tXZYEPdBGg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-tXZYEPdBGg .imgbotom-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  top: -70px;
}
.cid-tXZYEQVYXB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  overflow: hidden;
}
.cid-tXZYEQVYXB .media-container-row .mbr-text {
  color: #0e2c61;
}
