body {
  font-family: Albert Sans;
}
.display-1 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 10rem;
}
.display-2 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-4 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 3.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-7 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.6rem;
    font-size: calc( 3.45rem + (8 - 3.45) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.45rem + (8 - 3.45) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
.display-2 {
  line-height: 1;
}
.display-5 {
  line-height: 1;
}
.display-7 {
  line-height: 1.2;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.24rem;
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .display-2 {
    font-size: 3.6rem;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .display-2 {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}
/* 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: #171343 !important;
}
.bg-success {
  background-color: #171343 !important;
}
.bg-info {
  background-color: #b72025 !important;
}
.bg-warning {
  background-color: #fffa63 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-primary,
.btn-primary:active {
  background-color: #171343 !important;
  border-color: #171343 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-primary:hover {
  box-shadow: none;
  color: #171343 !important;
}
.btn-primary:hover:before {
  transform: translateX(0);
}
.btn-secondary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b72025 !important;
  border-color: #b72025 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #6d1316 !important;
  border-color: #6d1316 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6d1316 !important;
  border-color: #6d1316 !important;
}
.btn-secondary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-secondary:hover {
  box-shadow: none;
  color: #b72025 !important;
}
.btn-secondary:hover:before {
  transform: translateX(0);
}
.btn-info {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-info,
.btn-info:active {
  background-color: #b72025 !important;
  border-color: #b72025 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #6d1316 !important;
  border-color: #6d1316 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #6d1316 !important;
  border-color: #6d1316 !important;
}
.btn-info:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-info:hover {
  box-shadow: none;
  color: #b72025 !important;
}
.btn-info:hover:before {
  transform: translateX(0);
}
.btn-success {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-success,
.btn-success:active {
  background-color: #171343 !important;
  border-color: #171343 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-success:hover {
  box-shadow: none;
  color: #171343 !important;
}
.btn-success:hover:before {
  transform: translateX(0);
}
.btn-warning {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-warning,
.btn-warning:active {
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
  color: #636000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0c0c00 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #636000 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-warning:hover {
  box-shadow: none;
  color: #fffa63 !important;
}
.btn-warning:hover:before {
  transform: translateX(0);
}
.btn-danger {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-danger:hover {
  box-shadow: none;
  color: #ffffff !important;
}
.btn-danger:hover:before {
  transform: translateX(0);
}
.btn-white {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-white:hover {
  box-shadow: none;
  color: #fafafa !important;
}
.btn-white:hover:before {
  transform: translateX(0);
}
.btn-black {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-black:hover {
  box-shadow: none;
  color: #232323 !important;
}
.btn-black:hover:before {
  transform: translateX(0);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #171343;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #171343 !important;
  border-color: #171343 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b72025;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6d1316 !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: #b72025 !important;
  border-color: #b72025 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b72025;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #6d1316 !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: #b72025 !important;
  border-color: #b72025 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #171343;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !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: #171343 !important;
  border-color: #171343 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fffa63;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fff70c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #636000 !important;
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #171343 !important;
}
.text-secondary {
  color: #b72025 !important;
}
.text-success {
  color: #171343 !important;
}
.text-info {
  color: #b72025 !important;
}
.text-warning {
  color: #fffa63 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #171343 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b72025 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #171343 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #b72025 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #fffa63 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffffff !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #171343;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b72025;
}
.alert-warning {
  background-color: #fffa63;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #171343;
  border-color: #171343;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #171343;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7167d4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7167d4;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e67074;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.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: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #171343 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #171343;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #171343;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #171343;
}
.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: #171343;
  border-bottom-color: #171343;
}
.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: #171343 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #b72025 !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='%23171343' %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-tB9H8YhFvC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tB9H8YhFvC nav.navbar {
  position: fixed;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tB9H8YhFvC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tB9H8YhFvC .dropdown-item:hover,
.cid-tB9H8YhFvC .dropdown-item:focus {
  background: #171343 !important;
  color: white !important;
}
.cid-tB9H8YhFvC .dropdown-item:hover span {
  color: white;
}
.cid-tB9H8YhFvC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tB9H8YhFvC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tB9H8YhFvC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tB9H8YhFvC .nav-link {
  position: relative;
}
.cid-tB9H8YhFvC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown-menu,
.cid-tB9H8YhFvC .navbar.opened {
  background: #171343 !important;
}
.cid-tB9H8YhFvC .nav-item:focus,
.cid-tB9H8YhFvC .nav-link:focus {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB9H8YhFvC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB9H8YhFvC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.opened {
  transition: all 0.3s;
}
.cid-tB9H8YhFvC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tB9H8YhFvC .navbar .navbar-logo img {
  width: auto;
}
.cid-tB9H8YhFvC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB9H8YhFvC .navbar.collapsed {
  justify-content: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB9H8YhFvC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB9H8YhFvC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB9H8YhFvC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tB9H8YhFvC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tB9H8YhFvC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tB9H8YhFvC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tB9H8YhFvC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB9H8YhFvC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown-item.active,
.cid-tB9H8YhFvC .dropdown-item:active {
  background-color: transparent;
}
.cid-tB9H8YhFvC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB9H8YhFvC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB9H8YhFvC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tB9H8YhFvC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tB9H8YhFvC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tB9H8YhFvC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar {
    height: 70px;
  }
  .cid-tB9H8YhFvC .navbar.opened {
    height: auto;
  }
  .cid-tB9H8YhFvC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugmq1xye2B {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #171343;
}
.cid-ugmq1xye2B .video-wrapper iframe {
  width: 100%;
}
.cid-ugmq1xye2B .mbr-section-title {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 80px;
  color: #0c5b47;
}
.cid-ugmq1xye2B .container {
  max-width: 1100px;
}
.cid-tB8RvPiD7y {
  background-color: #171343;
}
.cid-tB8RvPiD7y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB8RvPiD7y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB8RvPiD7y .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tB8RvPiD7y img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tB8RvPiD7y img {
    padding-bottom: 2rem;
  }
}
.cid-tB8RvPiD7y .row {
  align-items: center;
}
.cid-tB8RvPiD7y .mbr-section-title {
  color: #b72025;
}
.cid-tB8RvPiD7y .mbr-text,
.cid-tB8RvPiD7y .mbr-section-btn {
  color: #ffffff;
}
.cid-tB8RvPiD7y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tYg5CT6Sgp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #b72025;
}
.cid-tYg5CT6Sgp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYg5CT6Sgp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYg5CT6Sgp .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-tYg5CT6Sgp .image-wrapper img {
  max-width: 800px;
  margin: auto;
  padding-bottom: 2rem;
}
.cid-tYg5CT6Sgp .image-wrapper h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.cid-tYg5CT6Sgp b,
.cid-tYg5CT6Sgp strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tYg5CT6Sgp img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tYg5CT6Sgp img {
    padding-bottom: 2rem;
  }
}
.cid-tYg5CT6Sgp .row {
  align-items: center;
}
.cid-tYg5CT6Sgp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tYg5CT6Sgp .mbr-text,
.cid-tYg5CT6Sgp .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tYg5CT6Sgp .mbr-section-subtitle {
  color: #171343;
  text-align: center;
}
.cid-tAFKA1W0jB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #171343;
}
.cid-tAFKA1W0jB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFKA1W0jB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFKA1W0jB .image-wrapper {
  margin-left: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tAFKA1W0jB .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tAFKA1W0jB .btn {
    margin-right: 0;
  }
  .cid-tAFKA1W0jB .image-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.cid-tAFKA1W0jB a {
  font-weight: 900;
}
.cid-tAFKA1W0jB p {
  line-height: 1.1;
}
.cid-tAFKA1W0jB .text-primary {
  background-color: #171343;
}
.cid-tAFKA1W0jB .d-flex {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tAFKA1W0jB .d-flex {
    flex-direction: column;
  }
}
.cid-tAFKA1W0jB .mbr-text {
  color: #ffffff;
}
.cid-tAFKA1W0jB .mbr-section-title {
  color: #ffffff;
}
.cid-tAFKA1W0jB .name {
  color: #b72025;
}
.cid-tAFKA1W0jB .position {
  color: #ffffff;
}
.cid-tAFKA1W0jB .mbr-title {
  color: #ffffff;
}
.cid-tAFMzRuUXS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tAFMzRuUXS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFMzRuUXS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFMzRuUXS .first {
  border-top: 2px solid #171343;
}
.cid-tAFMzRuUXS .panel-body {
  padding: 2rem 6rem;
}
@media (max-width: 767px) {
  .cid-tAFMzRuUXS .panel-body {
    padding: 2rem 0rem;
  }
}
.cid-tAFMzRuUXS .card-header {
  border-bottom: 2px solid #171343;
  border-radius: 0;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  position: relative;
}
.cid-tAFMzRuUXS .card-header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #171343;
  transition: all 0.3s;
}
.cid-tAFMzRuUXS .card-header a,
.cid-tAFMzRuUXS .card-header h6,
.cid-tAFMzRuUXS .card-header span {
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.cid-tAFMzRuUXS .card-header:hover a,
.cid-tAFMzRuUXS .card-header:hover h6,
.cid-tAFMzRuUXS .card-header:hover span {
  color: #ffffff !important;
}
.cid-tAFMzRuUXS .card-header:hover:before {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tAFMzRuUXS .card-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tAFMzRuUXS .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #171343;
  margin-left: 1rem;
  z-index: 1;
}
.cid-tAFMzRuUXS .panel-group {
  border: none;
}
.cid-tAFMzRuUXS .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tAFMzRuUXS .panel-title-edit {
  color: #a92b31;
}
.cid-tAFMzRuUXS .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tAFMzRuUXS H3 {
  color: #171343;
  text-align: center;
}
.cid-tAFMzRuUXS .panel-text {
  color: #17003b;
}
.cid-tAFMzRuUXS H4 {
  color: #b72025;
  text-align: center;
}
.cid-tAFMKrSSWo {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #17003b;
}
.cid-tAFMKrSSWo .mbr-overlay {
  background-color: #17003b;
  opacity: 0.4;
}
.cid-tAFMKrSSWo .btn {
  height: 100%;
  min-height: 70px;
}
.cid-tAFMKrSSWo .form-group {
  margin: 0 !important;
}
@media (max-width: 992px) {
  .cid-tAFMKrSSWo .form-group {
    min-width: 100% !important;
    margin-bottom: 1rem;
  }
}
.cid-tAFMKrSSWo form .row [class*=col] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tAFMKrSSWo p {
  margin-bottom: 4rem;
}
.cid-tAFMKrSSWo h4 {
  margin-bottom: 1rem;
}
.cid-tAFMKrSSWo .form-control,
.cid-tAFMKrSSWo .field-input {
  padding: 1.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 0;
  color: #17003b;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tAFMKrSSWo .form-control::-webkit-input-placeholder,
.cid-tAFMKrSSWo .field-input::-webkit-input-placeholder,
.cid-tAFMKrSSWo .form-control::-webkit-input-placeholder,
.cid-tAFMKrSSWo .field-input::-webkit-input-placeholder {
  color: #17003b;
}
.cid-tAFMKrSSWo .form-control:-moz-placeholder,
.cid-tAFMKrSSWo .field-input:-moz-placeholder,
.cid-tAFMKrSSWo .form-control:-moz-placeholder,
.cid-tAFMKrSSWo .field-input:-moz-placeholder {
  color: #17003b;
}
.cid-tAFMKrSSWo .form-control:hover,
.cid-tAFMKrSSWo .field-input:hover,
.cid-tAFMKrSSWo .form-control:focus,
.cid-tAFMKrSSWo .field-input:focus {
  background-color: #efefef;
  border-color: #ffffff !important;
  color: #17003b;
  box-shadow: none;
  outline: none;
}
.cid-tAFMKrSSWo .form-control:hover::-webkit-input-placeholder,
.cid-tAFMKrSSWo .field-input:hover::-webkit-input-placeholder,
.cid-tAFMKrSSWo .form-control:focus::-webkit-input-placeholder,
.cid-tAFMKrSSWo .field-input:focus::-webkit-input-placeholder,
.cid-tAFMKrSSWo .form-control:hover::-webkit-input-placeholder,
.cid-tAFMKrSSWo .field-input:hover::-webkit-input-placeholder,
.cid-tAFMKrSSWo .form-control:focus::-webkit-input-placeholder,
.cid-tAFMKrSSWo .field-input:focus::-webkit-input-placeholder {
  color: #17003b;
}
.cid-tAFMKrSSWo .form-control:hover:-moz-placeholder,
.cid-tAFMKrSSWo .field-input:hover:-moz-placeholder,
.cid-tAFMKrSSWo .form-control:focus:-moz-placeholder,
.cid-tAFMKrSSWo .field-input:focus:-moz-placeholder,
.cid-tAFMKrSSWo .form-control:hover:-moz-placeholder,
.cid-tAFMKrSSWo .field-input:hover:-moz-placeholder,
.cid-tAFMKrSSWo .form-control:focus:-moz-placeholder,
.cid-tAFMKrSSWo .field-input:focus:-moz-placeholder {
  color: #17003b;
}
.cid-tAFMKrSSWo .jq-number__spin:hover,
.cid-tAFMKrSSWo .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tAFMKrSSWo .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #17003b;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tAFMKrSSWo .jq-selectbox li,
.cid-tAFMKrSSWo .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tAFMKrSSWo .jq-selectbox li:hover,
.cid-tAFMKrSSWo .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tAFMKrSSWo .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tAFMKrSSWo .jq-number__spin.minus:hover:after,
.cid-tAFMKrSSWo .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tAFMKrSSWo .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tAFMKrSSWo .jq-number__spin.minus:after,
.cid-tAFMKrSSWo .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tAFMKrSSWo input::-webkit-clear-button {
  display: none;
}
.cid-tAFMKrSSWo input::-webkit-inner-spin-button {
  display: none;
}
.cid-tAFMKrSSWo input::-webkit-outer-spin-button {
  display: none;
}
.cid-tAFMKrSSWo input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tAFMKrSSWo H4 {
  color: #ffffff;
}
.cid-tAFMKrSSWo P {
  color: #ffffff;
}
.cid-tAFMKrSSWo LABEL {
  color: #b72025;
}
.cid-tAFPO5syzw {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAFPO5syzw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFPO5syzw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFPO5syzw .text-primary {
  background-color: #b72025;
}
.cid-tAFPO5syzw .mbr-section-title {
  color: #171343;
}
.cid-tYg5NOlGVw {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tYg5NOlGVw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tYg5NOlGVw .row {
  flex-direction: row-reverse;
}
.cid-tYg5NOlGVw img {
  width: 100%;
}
.cid-tAGmwAvoQB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #b72025;
}
.cid-tAGmwAvoQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAGmwAvoQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tAGmwAvoQB .container {
    padding: 0 30px;
  }
}
.cid-tAGmwAvoQB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tAGmwAvoQB .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tAGmwAvoQB .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tAGmwAvoQB .mbr-section-btn {
    display: block;
  }
}
.cid-tAGmwAvoQB .mbr-section-title {
  color: #ffffff;
}
.cid-tAFTz0Ga9R {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #171343;
}
.cid-tAFTz0Ga9R .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tAFTz0Ga9R textarea {
  min-height: 200px;
}
.cid-tAFTz0Ga9R .btn {
  padding: 1rem 3rem;
}
.cid-tAFTz0Ga9R .form-control,
.cid-tAFTz0Ga9R .field-input {
  padding: 1.2rem 1.6rem;
  background-color: #b72025;
  border-color: #ffffff;
  color: #fff;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 1rem;
  outline: none;
}
.cid-tAFTz0Ga9R .form-control::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .field-input::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .form-control::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .field-input::-webkit-input-placeholder {
  color: #fff;
}
.cid-tAFTz0Ga9R .form-control:-moz-placeholder,
.cid-tAFTz0Ga9R .field-input:-moz-placeholder,
.cid-tAFTz0Ga9R .form-control:-moz-placeholder,
.cid-tAFTz0Ga9R .field-input:-moz-placeholder {
  color: #ffffff;
}
.cid-tAFTz0Ga9R .form-control:hover,
.cid-tAFTz0Ga9R .field-input:hover,
.cid-tAFTz0Ga9R .form-control:focus,
.cid-tAFTz0Ga9R .field-input:focus {
  background-color: #890c10;
  border-color: #ffffff !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tAFTz0Ga9R .form-control:hover::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .field-input:hover::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .form-control:focus::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .field-input:focus::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .form-control:hover::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .field-input:hover::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .form-control:focus::-webkit-input-placeholder,
.cid-tAFTz0Ga9R .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tAFTz0Ga9R .form-control:hover:-moz-placeholder,
.cid-tAFTz0Ga9R .field-input:hover:-moz-placeholder,
.cid-tAFTz0Ga9R .form-control:focus:-moz-placeholder,
.cid-tAFTz0Ga9R .field-input:focus:-moz-placeholder,
.cid-tAFTz0Ga9R .form-control:hover:-moz-placeholder,
.cid-tAFTz0Ga9R .field-input:hover:-moz-placeholder,
.cid-tAFTz0Ga9R .form-control:focus:-moz-placeholder,
.cid-tAFTz0Ga9R .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-tAFTz0Ga9R .jq-number__spin:hover,
.cid-tAFTz0Ga9R .jq-number__spin:focus {
  background-color: #890c10;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tAFTz0Ga9R .jq-number__spin {
  background-color: #b72025;
  border-color: #ffffff;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tAFTz0Ga9R .jq-selectbox li,
.cid-tAFTz0Ga9R .jq-selectbox li {
  background-color: #b72025;
  color: #ffffff;
}
.cid-tAFTz0Ga9R .jq-selectbox li:hover,
.cid-tAFTz0Ga9R .jq-selectbox li.selected {
  background-color: #890c10;
  color: #ffffff;
}
.cid-tAFTz0Ga9R .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tAFTz0Ga9R .jq-number__spin.minus:hover:after,
.cid-tAFTz0Ga9R .jq-number__spin.plus:hover:after {
  border-top-color: #b72025;
  border-bottom-color: #b72025;
}
.cid-tAFTz0Ga9R .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tAFTz0Ga9R .jq-number__spin.minus:after,
.cid-tAFTz0Ga9R .jq-number__spin.plus:after {
  border-top-color: #890c10;
  border-bottom-color: #890c10;
}
.cid-tAFTz0Ga9R input::-webkit-clear-button {
  display: none;
}
.cid-tAFTz0Ga9R input::-webkit-inner-spin-button {
  display: none;
}
.cid-tAFTz0Ga9R input::-webkit-outer-spin-button {
  display: none;
}
.cid-tAFTz0Ga9R input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tAFTz0Ga9R .mbr-section-title {
  color: #ffffff;
}
.cid-u9zBZEfDS7 {
  display: flex;
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #171343;
}
@media (min-width: 768px) {
  .cid-u9zBZEfDS7 {
    align-items: center;
  }
  .cid-u9zBZEfDS7 .row {
    justify-content: center;
  }
}
.cid-u9zBZEfDS7 p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u9zBZEfDS7 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u9zBZEfDS7 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u9zBZEfDS7 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u9zBZEfDS7 .content-wrap {
    width: 100%;
  }
}
.cid-u9zBZEfDS7 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-u9zBZEfDS7 .mbr-text,
.cid-u9zBZEfDS7 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u9zBZEfDS7 .mbr-section-subtitle {
  color: #a1a1a1;
  text-align: center;
}
.cid-tAFU0pzEKY {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tAFU0pzEKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFU0pzEKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFU0pzEKY .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tAFU0pzEKY .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tAFU0pzEKY .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tAFU0pzEKY .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tAFU0pzEKY .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tAFU0pzEKY .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tAFU0pzEKY .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tAFU0pzEKY .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tAFU0pzEKY .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tAFU0pzEKY .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tAFU0pzEKY .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tAFU0pzEKY .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tAFU0pzEKY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tAFU0pzEKY .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tAFU0pzEKY [class^="socicon-"]:before,
.cid-tAFU0pzEKY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tAFU0pzEKY .mbr-section-title,
.cid-tAFU0pzEKY .mbr-social-likes {
  color: #171343;
}
.cid-tYkOZ8qm8m {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYkOZ8qm8m .fb-page,
.cid-tYkOZ8qm8m span,
.cid-tYkOZ8qm8m iframe {
  width: 500px;
  height: 970px;
}
.cid-tYkOZ8qm8m blockquote {
  display: none;
}
.cid-tYkOZ8qm8m .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tYkPaZU98V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #b72025;
}
.cid-tYkPaZU98V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYkPaZU98V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tYkPaZU98V .container {
    padding: 0 30px;
  }
}
.cid-tYkPaZU98V .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tYkPaZU98V .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tYkPaZU98V .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYkPaZU98V .mbr-section-btn {
    display: block;
  }
}
.cid-tYkPaZU98V .mbr-section-title {
  color: #ffffff;
}
.cid-tAFUskHNmR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171343;
}
.cid-tAFUskHNmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFUskHNmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFUskHNmR .navbar-brand-box {
  width: 100%;
}
.cid-tAFUskHNmR .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #171343 !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tAFUskHNmR .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tAFUskHNmR .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list-box {
    max-width: 100%;
  }
}
.cid-tAFUskHNmR .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tAFUskHNmR .list li:hover {
  opacity: 1;
}
.cid-tAFUskHNmR .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list a:hover {
  color: #b72025 !important;
  line-height: inherit !important;
}
.cid-tAFUskHNmR .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .social-list {
    margin-top: 40px;
  }
}
.cid-tAFUskHNmR .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tAFUskHNmR .soc-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tAFUskHNmR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item {
    padding: 10px;
  }
}
.cid-tAFUskHNmR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tAFUskHNmR .soc-item:hover .mbr-iconfont {
  color: #b72025 !important;
}
.cid-tAFUskHNmR .border-item {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-tAFUskHNmR .copyright {
  color: #FFFFFF;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .copyright {
    padding: 2rem 0;
  }
}
.cid-tB9H8YhFvC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tB9H8YhFvC nav.navbar {
  position: fixed;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tB9H8YhFvC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tB9H8YhFvC .dropdown-item:hover,
.cid-tB9H8YhFvC .dropdown-item:focus {
  background: #171343 !important;
  color: white !important;
}
.cid-tB9H8YhFvC .dropdown-item:hover span {
  color: white;
}
.cid-tB9H8YhFvC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tB9H8YhFvC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tB9H8YhFvC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tB9H8YhFvC .nav-link {
  position: relative;
}
.cid-tB9H8YhFvC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown-menu,
.cid-tB9H8YhFvC .navbar.opened {
  background: #171343 !important;
}
.cid-tB9H8YhFvC .nav-item:focus,
.cid-tB9H8YhFvC .nav-link:focus {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB9H8YhFvC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB9H8YhFvC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.opened {
  transition: all 0.3s;
}
.cid-tB9H8YhFvC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tB9H8YhFvC .navbar .navbar-logo img {
  width: auto;
}
.cid-tB9H8YhFvC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB9H8YhFvC .navbar.collapsed {
  justify-content: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB9H8YhFvC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB9H8YhFvC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB9H8YhFvC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tB9H8YhFvC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tB9H8YhFvC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tB9H8YhFvC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tB9H8YhFvC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB9H8YhFvC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown-item.active,
.cid-tB9H8YhFvC .dropdown-item:active {
  background-color: transparent;
}
.cid-tB9H8YhFvC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB9H8YhFvC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB9H8YhFvC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tB9H8YhFvC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tB9H8YhFvC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tB9H8YhFvC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar {
    height: 70px;
  }
  .cid-tB9H8YhFvC .navbar.opened {
    height: auto;
  }
  .cid-tB9H8YhFvC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAGigc8wRa {
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/thornton-cpetition-bcg-1920x1000.png");
}
.cid-tAGigc8wRa .mbr-overlay {
  background-color: #171343;
  opacity: 0.8;
}
.cid-tAGigc8wRa form {
  background: #b72025;
  padding: 6rem 4rem;
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .cid-tAGigc8wRa form {
    padding: 2rem 1rem;
  }
}
.cid-tAGigc8wRa .mbr-section-title {
  transform: translateY(85px);
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tAGigc8wRa .mbr-section-title {
    transform: translateY(70px);
  }
}
.cid-tAGigc8wRa .col-auto {
  margin: auto;
}
.cid-tAGigc8wRa textarea {
  min-height: 170px;
}
.cid-tAGigc8wRa .form-group {
  padding: 1rem;
}
.cid-tAGigc8wRa .btn {
  padding: 1rem 2rem;
}
.cid-tAGigc8wRa .btn span {
  padding-left: 2rem;
}
.cid-tAGigc8wRa .form-control,
.cid-tAGigc8wRa .field-input {
  padding: 0rem;
  background-color: #b72025;
  border: none!important;
  border-radius: 0;
  border-bottom: 1px solid #ffffff !important;
  border-color: #ffffff !important;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tAGigc8wRa .form-control::-webkit-input-placeholder,
.cid-tAGigc8wRa .field-input::-webkit-input-placeholder,
.cid-tAGigc8wRa .form-control::-webkit-input-placeholder,
.cid-tAGigc8wRa .field-input::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tAGigc8wRa .form-control:-moz-placeholder,
.cid-tAGigc8wRa .field-input:-moz-placeholder,
.cid-tAGigc8wRa .form-control:-moz-placeholder,
.cid-tAGigc8wRa .field-input:-moz-placeholder {
  color: #ffffff;
}
.cid-tAGigc8wRa .form-control:hover,
.cid-tAGigc8wRa .field-input:hover,
.cid-tAGigc8wRa .form-control:focus,
.cid-tAGigc8wRa .field-input:focus {
  background-color: #b72025;
  border-color: #bbbbbb !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tAGigc8wRa .form-control:hover::-webkit-input-placeholder,
.cid-tAGigc8wRa .field-input:hover::-webkit-input-placeholder,
.cid-tAGigc8wRa .form-control:focus::-webkit-input-placeholder,
.cid-tAGigc8wRa .field-input:focus::-webkit-input-placeholder,
.cid-tAGigc8wRa .form-control:hover::-webkit-input-placeholder,
.cid-tAGigc8wRa .field-input:hover::-webkit-input-placeholder,
.cid-tAGigc8wRa .form-control:focus::-webkit-input-placeholder,
.cid-tAGigc8wRa .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tAGigc8wRa .form-control:hover:-moz-placeholder,
.cid-tAGigc8wRa .field-input:hover:-moz-placeholder,
.cid-tAGigc8wRa .form-control:focus:-moz-placeholder,
.cid-tAGigc8wRa .field-input:focus:-moz-placeholder,
.cid-tAGigc8wRa .form-control:hover:-moz-placeholder,
.cid-tAGigc8wRa .field-input:hover:-moz-placeholder,
.cid-tAGigc8wRa .form-control:focus:-moz-placeholder,
.cid-tAGigc8wRa .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-tAGigc8wRa .jq-number__spin:hover,
.cid-tAGigc8wRa .jq-number__spin:focus {
  background-color: #b72025;
  border-color: #bbbbbb !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tAGigc8wRa .jq-number__spin {
  background-color: #b72025;
  border-color: #ffffff !important;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tAGigc8wRa .jq-selectbox li,
.cid-tAGigc8wRa .jq-selectbox li {
  background-color: #b72025;
  color: #ffffff;
}
.cid-tAGigc8wRa .jq-selectbox li:hover,
.cid-tAGigc8wRa .jq-selectbox li.selected {
  background-color: #b72025;
  color: #ffffff;
}
.cid-tAGigc8wRa .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tAGigc8wRa .jq-number__spin.minus:hover:after,
.cid-tAGigc8wRa .jq-number__spin.plus:hover:after {
  border-top-color: #b72025;
  border-bottom-color: #b72025;
}
.cid-tAGigc8wRa .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tAGigc8wRa .jq-number__spin.minus:after,
.cid-tAGigc8wRa .jq-number__spin.plus:after {
  border-top-color: #b72025;
  border-bottom-color: #b72025;
}
.cid-tAGigc8wRa P {
  color: #ffffff;
}
.cid-tYkPwkTtyv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYkPwkTtyv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYkPwkTtyv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYkPwkTtyv .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tYkPwkTtyv .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tYkPwkTtyv .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tYkPwkTtyv .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tYkPwkTtyv .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tYkPwkTtyv .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tYkPwkTtyv .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tYkPwkTtyv .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tYkPwkTtyv .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tYkPwkTtyv .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tYkPwkTtyv .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tYkPwkTtyv .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tYkPwkTtyv .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tYkPwkTtyv .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tYkPwkTtyv [class^="socicon-"]:before,
.cid-tYkPwkTtyv [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tYkPwkTtyv .mbr-section-title,
.cid-tYkPwkTtyv .mbr-social-likes {
  color: #171343;
}
.cid-tYkT4Jpj34 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #b72025;
}
.cid-tYkT4Jpj34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYkT4Jpj34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tYkT4Jpj34 .container {
    padding: 0 30px;
  }
}
.cid-tYkT4Jpj34 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tYkT4Jpj34 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tYkT4Jpj34 .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYkT4Jpj34 .mbr-section-btn {
    display: block;
  }
}
.cid-tYkT4Jpj34 .mbr-section-title {
  color: #ffffff;
}
.cid-tAFUskHNmR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171343;
}
.cid-tAFUskHNmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFUskHNmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFUskHNmR .navbar-brand-box {
  width: 100%;
}
.cid-tAFUskHNmR .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #171343 !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tAFUskHNmR .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tAFUskHNmR .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list-box {
    max-width: 100%;
  }
}
.cid-tAFUskHNmR .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tAFUskHNmR .list li:hover {
  opacity: 1;
}
.cid-tAFUskHNmR .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list a:hover {
  color: #b72025 !important;
  line-height: inherit !important;
}
.cid-tAFUskHNmR .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .social-list {
    margin-top: 40px;
  }
}
.cid-tAFUskHNmR .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tAFUskHNmR .soc-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tAFUskHNmR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item {
    padding: 10px;
  }
}
.cid-tAFUskHNmR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tAFUskHNmR .soc-item:hover .mbr-iconfont {
  color: #b72025 !important;
}
.cid-tAFUskHNmR .border-item {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-tAFUskHNmR .copyright {
  color: #FFFFFF;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .copyright {
    padding: 2rem 0;
  }
}
.cid-tB9H8YhFvC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tB9H8YhFvC nav.navbar {
  position: fixed;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tB9H8YhFvC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tB9H8YhFvC .dropdown-item:hover,
.cid-tB9H8YhFvC .dropdown-item:focus {
  background: #171343 !important;
  color: white !important;
}
.cid-tB9H8YhFvC .dropdown-item:hover span {
  color: white;
}
.cid-tB9H8YhFvC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tB9H8YhFvC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tB9H8YhFvC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tB9H8YhFvC .nav-link {
  position: relative;
}
.cid-tB9H8YhFvC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown-menu,
.cid-tB9H8YhFvC .navbar.opened {
  background: #171343 !important;
}
.cid-tB9H8YhFvC .nav-item:focus,
.cid-tB9H8YhFvC .nav-link:focus {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB9H8YhFvC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB9H8YhFvC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.opened {
  transition: all 0.3s;
}
.cid-tB9H8YhFvC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tB9H8YhFvC .navbar .navbar-logo img {
  width: auto;
}
.cid-tB9H8YhFvC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB9H8YhFvC .navbar.collapsed {
  justify-content: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB9H8YhFvC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB9H8YhFvC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB9H8YhFvC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tB9H8YhFvC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tB9H8YhFvC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tB9H8YhFvC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tB9H8YhFvC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB9H8YhFvC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown-item.active,
.cid-tB9H8YhFvC .dropdown-item:active {
  background-color: transparent;
}
.cid-tB9H8YhFvC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB9H8YhFvC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB9H8YhFvC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tB9H8YhFvC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tB9H8YhFvC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tB9H8YhFvC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar {
    height: 70px;
  }
  .cid-tB9H8YhFvC .navbar.opened {
    height: auto;
  }
  .cid-tB9H8YhFvC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYkCjcDUfz {
  background-image: url("../../../assets/images/thornton-cpetition-bcg-1920x1000.png");
}
.cid-tYkCjcDUfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYkCjcDUfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYkCjcDUfz .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tYkCjcDUfz img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tYkCjcDUfz img {
    padding-bottom: 2rem;
  }
}
.cid-tYkCjcDUfz .row {
  align-items: center;
}
.cid-tYkCjcDUfz .mbr-section-title {
  color: #ffffff;
}
.cid-tYkCjcDUfz .mbr-text,
.cid-tYkCjcDUfz .mbr-section-btn {
  color: #ffffff;
}
.cid-tYkCjcDUfz .mbr-section-subtitle {
  color: #b72025;
}
.cid-tYkZ3XVdBE {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tYkZ3XVdBE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYkZ3XVdBE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYkZ3XVdBE .mbr-section-title {
  color: #171343;
}
.cid-tYkCHEbOMs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #b72025;
}
.cid-tYkCHEbOMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYkCHEbOMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tYkCHEbOMs .container {
    padding: 0 30px;
  }
}
.cid-tYkCHEbOMs .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tYkCHEbOMs .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tYkCHEbOMs .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tYkCHEbOMs .mbr-section-btn {
    display: block;
  }
}
.cid-tYkCHEbOMs .mbr-section-title {
  color: #ffffff;
}
.cid-tYkCIuTVmo {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tYkCIuTVmo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYkCIuTVmo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYkCIuTVmo .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tYkCIuTVmo .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tYkCIuTVmo .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tYkCIuTVmo .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tYkCIuTVmo .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tYkCIuTVmo .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tYkCIuTVmo .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tYkCIuTVmo .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tYkCIuTVmo .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tYkCIuTVmo .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tYkCIuTVmo .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tYkCIuTVmo .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tYkCIuTVmo .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tYkCIuTVmo .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tYkCIuTVmo [class^="socicon-"]:before,
.cid-tYkCIuTVmo [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tYkCIuTVmo .mbr-section-title,
.cid-tYkCIuTVmo .mbr-social-likes {
  color: #171343;
}
.cid-tYkOBMnaeP {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYkOBMnaeP .fb-page,
.cid-tYkOBMnaeP span,
.cid-tYkOBMnaeP iframe {
  width: 500px;
  height: 970px;
}
.cid-tYkOBMnaeP blockquote {
  display: none;
}
.cid-tYkOBMnaeP .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tAFUskHNmR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171343;
}
.cid-tAFUskHNmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFUskHNmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFUskHNmR .navbar-brand-box {
  width: 100%;
}
.cid-tAFUskHNmR .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #171343 !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tAFUskHNmR .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tAFUskHNmR .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list-box {
    max-width: 100%;
  }
}
.cid-tAFUskHNmR .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tAFUskHNmR .list li:hover {
  opacity: 1;
}
.cid-tAFUskHNmR .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list a:hover {
  color: #b72025 !important;
  line-height: inherit !important;
}
.cid-tAFUskHNmR .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .social-list {
    margin-top: 40px;
  }
}
.cid-tAFUskHNmR .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tAFUskHNmR .soc-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tAFUskHNmR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item {
    padding: 10px;
  }
}
.cid-tAFUskHNmR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tAFUskHNmR .soc-item:hover .mbr-iconfont {
  color: #b72025 !important;
}
.cid-tAFUskHNmR .border-item {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-tAFUskHNmR .copyright {
  color: #FFFFFF;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .copyright {
    padding: 2rem 0;
  }
}
.cid-tB9H8YhFvC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tB9H8YhFvC nav.navbar {
  position: fixed;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tB9H8YhFvC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tB9H8YhFvC .dropdown-item:hover,
.cid-tB9H8YhFvC .dropdown-item:focus {
  background: #171343 !important;
  color: white !important;
}
.cid-tB9H8YhFvC .dropdown-item:hover span {
  color: white;
}
.cid-tB9H8YhFvC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tB9H8YhFvC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tB9H8YhFvC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tB9H8YhFvC .nav-link {
  position: relative;
}
.cid-tB9H8YhFvC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tB9H8YhFvC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown-menu,
.cid-tB9H8YhFvC .navbar.opened {
  background: #171343 !important;
}
.cid-tB9H8YhFvC .nav-item:focus,
.cid-tB9H8YhFvC .nav-link:focus {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tB9H8YhFvC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB9H8YhFvC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB9H8YhFvC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB9H8YhFvC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.opened {
  transition: all 0.3s;
}
.cid-tB9H8YhFvC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tB9H8YhFvC .navbar .navbar-logo img {
  width: auto;
}
.cid-tB9H8YhFvC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB9H8YhFvC .navbar.collapsed {
  justify-content: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB9H8YhFvC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB9H8YhFvC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB9H8YhFvC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tB9H8YhFvC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tB9H8YhFvC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB9H8YhFvC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tB9H8YhFvC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB9H8YhFvC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tB9H8YhFvC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tB9H8YhFvC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tB9H8YhFvC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tB9H8YhFvC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tB9H8YhFvC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB9H8YhFvC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB9H8YhFvC .dropdown-item.active,
.cid-tB9H8YhFvC .dropdown-item:active {
  background-color: transparent;
}
.cid-tB9H8YhFvC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB9H8YhFvC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #171343;
}
.cid-tB9H8YhFvC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB9H8YhFvC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB9H8YhFvC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tB9H8YhFvC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tB9H8YhFvC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB9H8YhFvC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB9H8YhFvC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB9H8YhFvC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tB9H8YhFvC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB9H8YhFvC .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-tB9H8YhFvC .navbar {
    height: 70px;
  }
  .cid-tB9H8YhFvC .navbar.opened {
    height: auto;
  }
  .cid-tB9H8YhFvC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9zqiI2KBa {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-u9zqiI2KBa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9zqiI2KBa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9zqiI2KBa .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-u9zqiI2KBa .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u9zqiI2KBa .container {
    padding: 0 16px;
  }
}
.cid-u9zqiI2KBa .row {
  justify-content: center;
}
.cid-u9zqiI2KBa .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u9zqiI2KBa .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #b72025 !important;
  color: #b72025 !important;
  border-color: #b72025 !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #171343 !important;
  color: #b72025 !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #b72025 !important;
  color: #b72025 !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #171343 !important;
  color: #b72025 !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #b72025 !important;
  color: #b72025 !important;
  border-color: #b72025 !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #fffa63 !important;
  color: #b72025 !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #b72025 !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-u9zqiI2KBa .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-u9zqiI2KBa .mbr-desc {
  color: #706cff;
}
.cid-u9zqiI2KBa .mbr-section-title {
  color: #000000;
}
.cid-u9zqiI2KBa .mbr-text {
  color: #000000;
}
.cid-u9zqiI2KBa .mbr-section-btn {
  text-align: center;
}
.cid-u9zqiI2KBa .mbr-section-title,
.cid-u9zqiI2KBa .mbr-section-btn {
  color: #171343;
}
.cid-tAFUskHNmR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171343;
}
.cid-tAFUskHNmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAFUskHNmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAFUskHNmR .navbar-brand-box {
  width: 100%;
}
.cid-tAFUskHNmR .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #171343 !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tAFUskHNmR .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tAFUskHNmR .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tAFUskHNmR .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list-box {
    max-width: 100%;
  }
}
.cid-tAFUskHNmR .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tAFUskHNmR .list li:hover {
  opacity: 1;
}
.cid-tAFUskHNmR .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tAFUskHNmR .list a:hover {
  color: #b72025 !important;
  line-height: inherit !important;
}
.cid-tAFUskHNmR .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .social-list {
    margin-top: 40px;
  }
}
.cid-tAFUskHNmR .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tAFUskHNmR .soc-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tAFUskHNmR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tAFUskHNmR .soc-item {
    padding: 10px;
  }
}
.cid-tAFUskHNmR .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tAFUskHNmR .soc-item:hover .mbr-iconfont {
  color: #b72025 !important;
}
.cid-tAFUskHNmR .border-item {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-tAFUskHNmR .copyright {
  color: #FFFFFF;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tAFUskHNmR .copyright {
    padding: 2rem 0;
  }
}
.cid-uhXMWVE73D {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhXMWVE73D nav.navbar {
  position: fixed;
}
.cid-uhXMWVE73D .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-uhXMWVE73D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uhXMWVE73D .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uhXMWVE73D .dropdown-item:hover,
.cid-uhXMWVE73D .dropdown-item:focus {
  background: #171343 !important;
  color: white !important;
}
.cid-uhXMWVE73D .dropdown-item:hover span {
  color: white;
}
.cid-uhXMWVE73D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhXMWVE73D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhXMWVE73D .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uhXMWVE73D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhXMWVE73D .nav-link {
  position: relative;
}
.cid-uhXMWVE73D .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhXMWVE73D .container {
    flex-wrap: wrap;
  }
}
.cid-uhXMWVE73D .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uhXMWVE73D .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uhXMWVE73D .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhXMWVE73D .dropdown-menu,
.cid-uhXMWVE73D .navbar.opened {
  background: #171343 !important;
}
.cid-uhXMWVE73D .nav-item:focus,
.cid-uhXMWVE73D .nav-link:focus {
  outline: none;
}
.cid-uhXMWVE73D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhXMWVE73D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhXMWVE73D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhXMWVE73D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhXMWVE73D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhXMWVE73D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhXMWVE73D .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #171343;
}
.cid-uhXMWVE73D .navbar.opened {
  transition: all 0.3s;
}
.cid-uhXMWVE73D .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhXMWVE73D .navbar .navbar-logo img {
  width: auto;
}
.cid-uhXMWVE73D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhXMWVE73D .navbar.collapsed {
  justify-content: center;
}
.cid-uhXMWVE73D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhXMWVE73D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhXMWVE73D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uhXMWVE73D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhXMWVE73D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhXMWVE73D .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-uhXMWVE73D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhXMWVE73D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhXMWVE73D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhXMWVE73D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhXMWVE73D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhXMWVE73D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhXMWVE73D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhXMWVE73D .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-uhXMWVE73D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhXMWVE73D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhXMWVE73D .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhXMWVE73D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhXMWVE73D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhXMWVE73D .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhXMWVE73D .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uhXMWVE73D .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhXMWVE73D .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhXMWVE73D .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhXMWVE73D .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-uhXMWVE73D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhXMWVE73D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhXMWVE73D .dropdown-item.active,
.cid-uhXMWVE73D .dropdown-item:active {
  background-color: transparent;
}
.cid-uhXMWVE73D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhXMWVE73D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhXMWVE73D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhXMWVE73D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #171343;
}
.cid-uhXMWVE73D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhXMWVE73D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhXMWVE73D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhXMWVE73D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhXMWVE73D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhXMWVE73D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhXMWVE73D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhXMWVE73D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhXMWVE73D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhXMWVE73D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhXMWVE73D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhXMWVE73D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhXMWVE73D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhXMWVE73D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhXMWVE73D .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhXMWVE73D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhXMWVE73D .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-uhXMWVE73D .navbar {
    height: 70px;
  }
  .cid-uhXMWVE73D .navbar.opened {
    height: auto;
  }
  .cid-uhXMWVE73D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhXQ1mlj0B {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #b72025;
}
.cid-uhXQ1mlj0B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhXQ1mlj0B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhXQ1mlj0B .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uhXQ1mlj0B .mbr-text,
.cid-uhXQ1mlj0B .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhXQ1mlj0B b,
.cid-uhXQ1mlj0B strong {
  font-weight: 900;
}
.cid-uhXQ1mlj0B .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uiBzTDsgOj {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #171343;
}
.cid-uiBzTDsgOj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiBzTDsgOj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiBzTDsgOj .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uiBzTDsgOj img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uiBzTDsgOj img {
    padding-bottom: 2rem;
  }
}
.cid-uiBzTDsgOj .row {
  align-items: center;
}
.cid-uiBzTDsgOj .mbr-section-title {
  color: #ffffff;
}
.cid-uiBzTDsgOj .mbr-text,
.cid-uiBzTDsgOj .mbr-section-btn {
  color: #ffffff;
}
.cid-uiBzTDsgOj .mbr-section-subtitle {
  color: #b72025;
}
.cid-uikfoE07Fp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #171343;
}
.cid-uikfoE07Fp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uikfoE07Fp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uikfoE07Fp img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uikfoE07Fp img {
    padding-bottom: 2rem;
  }
}
.cid-uikfoE07Fp .row {
  align-items: center;
}
.cid-uikfoE07Fp .mbr-section-title {
  color: #ffffff;
}
.cid-uikfoE07Fp .mbr-text,
.cid-uikfoE07Fp .mbr-section-btn {
  color: #ffffff;
}
.cid-uikfoE07Fp .mbr-section-subtitle {
  color: #b72025;
}
.cid-uhXOcNVWLv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #171343;
}
.cid-uhXOcNVWLv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhXOcNVWLv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhXOcNVWLv .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uhXOcNVWLv img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uhXOcNVWLv img {
    padding-bottom: 2rem;
  }
}
.cid-uhXOcNVWLv .row {
  align-items: center;
}
.cid-uhXOcNVWLv .mbr-section-title {
  color: #ffffff;
}
.cid-uhXOcNVWLv .mbr-text,
.cid-uhXOcNVWLv .mbr-section-btn {
  color: #ffffff;
}
.cid-uhXOcNVWLv .mbr-section-subtitle {
  color: #b72025;
}
.cid-uhXP1JxetM {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #171343;
}
.cid-uhXP1JxetM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhXP1JxetM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhXP1JxetM img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uhXP1JxetM img {
    padding-bottom: 2rem;
  }
}
.cid-uhXP1JxetM .row {
  align-items: center;
}
.cid-uhXP1JxetM .mbr-section-title {
  color: #ffffff;
}
.cid-uhXP1JxetM .mbr-text,
.cid-uhXP1JxetM .mbr-section-btn {
  color: #ffffff;
}
.cid-uhXP1JxetM .mbr-section-subtitle {
  color: #b72025;
}
.cid-uhXMWWv0cC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhXMWWv0cC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhXMWWv0cC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhXMWWv0cC .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uhXMWWv0cC .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uhXMWWv0cC .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uhXMWWv0cC .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uhXMWWv0cC .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uhXMWWv0cC .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uhXMWWv0cC .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uhXMWWv0cC .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uhXMWWv0cC .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uhXMWWv0cC .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uhXMWWv0cC .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uhXMWWv0cC .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uhXMWWv0cC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uhXMWWv0cC .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uhXMWWv0cC [class^="socicon-"]:before,
.cid-uhXMWWv0cC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uhXMWWv0cC .mbr-section-title,
.cid-uhXMWWv0cC .mbr-social-likes {
  color: #171343;
}
.cid-uhXMWWRqje {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #b72025;
}
.cid-uhXMWWRqje .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhXMWWRqje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhXMWWRqje .container {
    padding: 0 30px;
  }
}
.cid-uhXMWWRqje .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uhXMWWRqje .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uhXMWWRqje .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uhXMWWRqje .mbr-section-btn {
    display: block;
  }
}
.cid-uhXMWWRqje .mbr-section-title {
  color: #ffffff;
}
.cid-uhXMWXg7Kw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171343;
}
.cid-uhXMWXg7Kw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhXMWXg7Kw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhXMWXg7Kw .navbar-brand-box {
  width: 100%;
}
.cid-uhXMWXg7Kw .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uhXMWXg7Kw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhXMWXg7Kw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhXMWXg7Kw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uhXMWXg7Kw .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #171343 !important;
}
.cid-uhXMWXg7Kw .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uhXMWXg7Kw .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uhXMWXg7Kw .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-uhXMWXg7Kw .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-uhXMWXg7Kw .col-links {
    margin: 50px 0 16px;
  }
}
.cid-uhXMWXg7Kw .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-uhXMWXg7Kw .list-box {
    max-width: 100%;
  }
}
.cid-uhXMWXg7Kw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-uhXMWXg7Kw .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
}
@media (max-width: 991px) {
  .cid-uhXMWXg7Kw .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-uhXMWXg7Kw .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-uhXMWXg7Kw .list li:hover {
  opacity: 1;
}
.cid-uhXMWXg7Kw .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uhXMWXg7Kw .list a:hover {
  color: #b72025 !important;
  line-height: inherit !important;
}
.cid-uhXMWXg7Kw .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-uhXMWXg7Kw .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-uhXMWXg7Kw .social-list {
    margin-top: 40px;
  }
}
.cid-uhXMWXg7Kw .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-uhXMWXg7Kw .soc-item-title {
    margin-right: 10px;
  }
}
.cid-uhXMWXg7Kw .soc-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-uhXMWXg7Kw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uhXMWXg7Kw .soc-item {
    padding: 10px;
  }
}
.cid-uhXMWXg7Kw .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-uhXMWXg7Kw .soc-item:hover .mbr-iconfont {
  color: #b72025 !important;
}
.cid-uhXMWXg7Kw .border-item {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-uhXMWXg7Kw .copyright {
  color: #FFFFFF;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-uhXMWXg7Kw .copyright {
    padding: 2rem 0;
  }
}
