.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Esteban', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fafafa !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fafafa !important;
}
.text-secondary {
  color: #bbbbbb !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c7c7c7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #888888 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fafafa;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fafafa;
  border-color: #fafafa;
  color: #878787;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fafafa;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #fafafa !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #fafafa;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fafafa;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fafafa;
}
.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: #fafafa;
  border-bottom-color: #fafafa;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #fafafa !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #bbbbbb !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='%23fafafa' %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-tWx8pC0SOb {
  z-index: 1000;
  width: 100%;
}
.cid-tWx8pC0SOb nav.navbar {
  position: fixed;
}
.cid-tWx8pC0SOb .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-tWx8pC0SOb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWx8pC0SOb .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-tWx8pC0SOb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWx8pC0SOb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWx8pC0SOb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWx8pC0SOb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWx8pC0SOb .nav-link {
  position: relative;
}
.cid-tWx8pC0SOb .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWx8pC0SOb .container {
    flex-wrap: wrap;
  }
}
.cid-tWx8pC0SOb .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWx8pC0SOb .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWx8pC0SOb .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWx8pC0SOb .dropdown-menu,
.cid-tWx8pC0SOb .navbar.opened {
  background: #232323 !important;
}
.cid-tWx8pC0SOb .nav-item:focus,
.cid-tWx8pC0SOb .nav-link:focus {
  outline: none;
}
.cid-tWx8pC0SOb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWx8pC0SOb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWx8pC0SOb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWx8pC0SOb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWx8pC0SOb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWx8pC0SOb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWx8pC0SOb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-tWx8pC0SOb .navbar.opened {
  transition: all 0.3s;
}
.cid-tWx8pC0SOb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWx8pC0SOb .navbar .navbar-logo img {
  width: auto;
}
.cid-tWx8pC0SOb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWx8pC0SOb .navbar.collapsed {
  justify-content: center;
}
.cid-tWx8pC0SOb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWx8pC0SOb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tWx8pC0SOb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWx8pC0SOb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWx8pC0SOb .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-tWx8pC0SOb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWx8pC0SOb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWx8pC0SOb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWx8pC0SOb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWx8pC0SOb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWx8pC0SOb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWx8pC0SOb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWx8pC0SOb .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-tWx8pC0SOb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWx8pC0SOb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWx8pC0SOb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWx8pC0SOb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWx8pC0SOb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWx8pC0SOb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWx8pC0SOb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWx8pC0SOb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWx8pC0SOb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWx8pC0SOb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWx8pC0SOb .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-tWx8pC0SOb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWx8pC0SOb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWx8pC0SOb .dropdown-item.active,
.cid-tWx8pC0SOb .dropdown-item:active {
  background-color: transparent;
}
.cid-tWx8pC0SOb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWx8pC0SOb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWx8pC0SOb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWx8pC0SOb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tWx8pC0SOb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWx8pC0SOb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWx8pC0SOb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWx8pC0SOb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWx8pC0SOb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWx8pC0SOb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWx8pC0SOb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWx8pC0SOb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWx8pC0SOb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWx8pC0SOb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWx8pC0SOb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWx8pC0SOb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWx8pC0SOb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWx8pC0SOb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWx8pC0SOb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-tWx8pC0SOb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWx8pC0SOb .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-tWx8pC0SOb .navbar {
    height: 70px;
  }
  .cid-tWx8pC0SOb .navbar.opened {
    height: auto;
  }
  .cid-tWx8pC0SOb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tStcyuIeAQ {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-tStcyuIeAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tStcyuIeAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tStcyuIeAQ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tStcyuIeAQ .card-wrapper {
  background-color: #f5f5f5;
  border-radius: 4px;
}
.cid-tStcyuIeAQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tStcyuIeAQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #000000;
  transition: all 0.3s;
}
.cid-tStcyuIeAQ .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #000000;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tStcyuIeAQ .social-row .soc-item:hover {
  background-color: #000000;
}
.cid-tStcyuIeAQ .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tStcyuIeAQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tStcyuIeAQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tStcyuIeAQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tStcyuIeAQ .card-title {
  color: #232323;
  text-align: left;
}
.cid-tStcyuIeAQ .mbr-text,
.cid-tStcyuIeAQ .social-row {
  color: #232323;
  text-align: left;
}
.cid-tStcyuIeAQ .card-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tStcysAh1W {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f5f5f5;
}
.cid-tStcysAh1W img,
.cid-tStcysAh1W .item-img {
  width: 100%;
}
.cid-tStcysAh1W .item:focus,
.cid-tStcysAh1W span:focus {
  outline: none;
}
.cid-tStcysAh1W .item-wrapper {
  position: relative;
}
.cid-tStcysAh1W .slide-content {
  position: relative;
  border-radius: 4px;
  background: #f5f5f5;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tStcysAh1W .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tStcysAh1W .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tStcysAh1W .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tStcysAh1W .mbr-section-title {
  color: #232323;
}
.cid-tStcysAh1W .mbr-text,
.cid-tStcysAh1W .mbr-section-btn {
  text-align: left;
}
.cid-tStcysAh1W .item-title {
  text-align: left;
}
.cid-tStcysAh1W .item-subtitle {
  text-align: left;
}
.cid-tStcysAh1W .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tStcysAh1W .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tStcysAh1W .embla__button--next,
.cid-tStcysAh1W .embla__button--prev {
  display: flex;
}
.cid-tStcysAh1W .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tStcysAh1W .embla__button {
    display: none;
  }
}
.cid-tStcysAh1W .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tStcysAh1W .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tStcysAh1W .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tStcysAh1W .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tStcysAh1W .embla__button {
    top: auto;
  }
}
.cid-tStcysAh1W .embla {
  position: relative;
  width: 100%;
}
.cid-tStcysAh1W .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tStcysAh1W .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tStcysAh1W .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tStcysAh1W .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tWrtO1sPsV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-tWrtO1sPsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWrtO1sPsV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWrtO1sPsV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tWrtO1sPsV .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tWrtO1sPsV .embla__button--next,
.cid-tWrtO1sPsV .embla__button--prev {
  display: flex;
}
.cid-tWrtO1sPsV .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tWrtO1sPsV .embla__button {
    display: none;
  }
}
.cid-tWrtO1sPsV .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tWrtO1sPsV .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tWrtO1sPsV .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWrtO1sPsV .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tWrtO1sPsV .embla__button {
    top: auto;
  }
}
.cid-tWrtO1sPsV .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tWrtO1sPsV .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tWrtO1sPsV .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tWrtO1sPsV .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tWrtO1sPsV .embla {
  position: relative;
  width: 100%;
}
.cid-tWrtO1sPsV .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tWrtO1sPsV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tWrtO1sPsV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tWrtO1sPsV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tWrtO1sPsV .user_text {
  text-align: center;
  color: #ffffff;
}
.cid-tWrtO1sPsV .user_name {
  color: #ffffff;
}
.cid-tWrtO1sPsV .user_desk {
  color: #ffffff;
}
.cid-tStcyvKHaa {
  background-color: #ffffff;
}
.cid-tStcyvKHaa .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-tStcyvKHaa .container-nopadding {
  padding: 0px;
}
.cid-tStcyvKHaa .contactBtn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5001;
}
.cid-tStcyvKHaa .contactBtnFixed {
  position: fixed;
}
.cid-tStcyvKHaa .btn-circle {
  background-color: rgba(255, 255, 255, 0.75);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
  border-width: 0px;
}
.cid-tStcyvKHaa .btnIconcol {
  color: #232323;
}
.cid-tStcyvKHaa .btn-circle:hover {
  background-color: #ffffff;
}
.cid-tStcyvKHaa .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-tStcyvKHaa .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-tStcyvKHaa .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-tStcyvKHaa .contactwindow {
  display: inline-block;
  text-align: left;
  width: 410px;
  background-color: #ffffff;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 5px !important;
  box-shadow: 0 12px 20px 0 rgba(35, 35, 35, 0.4) !important;
  z-index: 5000;
}
.cid-tStcyvKHaa .windowFixed {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 30px;
  overflow: auto;
  opacity: 0%;
  transition: opacity 1s;
}
.cid-tStcyvKHaa .windowBar {
  width: 100%;
  background-color: #ffffff;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-tStcyvKHaa .close {
  color: #232323;
  text-shadow: none;
  opacity: 1;
  padding-right: 15px !important;
  outline: none !important;
  float: right ;
  background-color: transparent;
  border: none;
  font-size: 1.5rem !important;
  line-height: 1.7;
}
@media (max-width: 500px) {
  .cid-tStcyvKHaa .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-tStcyvKHaa .windowBar,
  .cid-tStcyvKHaa .contentwindow,
  .cid-tStcyvKHaa .contactwindow {
    border-radius: 0;
  }
}
.cid-tStcyvKHaa .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-tStcyvKHaa .windowBarText {
  display: block;
  color: #232323;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 0px;
}
.cid-tStcyvKHaa .btn-form {
  display: initial;
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tStcyvKHaa .mbr-form .input-group-btn button[type="submit"] {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tStcyvKHaa .recaptcha-div {
  margin-bottom: 0;
}
.cid-tStcyvKHaa .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tStcyvKHaa .gdpr-div {
  margin-bottom: 0;
}
.cid-tStcyvKHaa .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tStcyvKHaa .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.cid-tStcyvKHaa .send-copy-div {
  margin-bottom: 0;
}
.cid-tStcyvKHaa .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tStcyvKHaa .alert-success {
  background-color: #232323;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tStcyvKHaa .alert-danger {
  background-color: #bbbbbb;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tStcyvKHaa .mbr-alert-success {
  text-align: center;
}
.cid-tStcyvKHaa .mbr-alert-danger {
  text-align: center;
}
.cid-tStcyvKHaa .message-div {
  margin-bottom: 0;
}
.cid-tStcyvKHaa .message-topic-div {
  margin-bottom: 0;
}
.cid-tStcyvKHaa .file-upload-div {
  margin-bottom: 0;
}
.cid-tStcyvKHaa .form-control {
  padding-top: 5px !important;
  padding-bottom: 8px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  min-height: 3.2em !important;
}
.cid-tStcyvKHaa .form-control2 {
  color: #000000 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.2em !important;
}
.cid-tStcyvKHaa .form-control3 {
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.5em !important;
}
.cid-tStcyvKHaa .form-control {
  border: 1px solid #000000 !important;
}
.cid-tStcyvKHaa .form-control:hover {
  border: 1px solid #000000 !important;
}
.cid-tStcyvKHaa .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-tStcyvKHaa .showAlerts {
  display: block !important;
}
.cid-tStcyvKHaa .sendBtnCornerRadius {
  border-radius: 7px;
}
.cid-tStcyvKHaa .hidden {
  display: none;
}
.cid-tStcyvKHaa .mbr-section-terms {
  color: #232323;
  text-align: left;
}
.cid-tStcyvKHaa .mbr-section-autorespond {
  color: #232323;
  text-align: center;
}
.cid-tStcyvKHaa .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-tStcyvKHaa .mbr-section-alertsuccess {
  text-align: left;
}
.cid-tStcyvKHaa .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-tStcyvKHaa .mbr-section-alerterror {
  text-align: left;
}
.cid-tStcyvKHaa .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-tStcyvKHaa .mbr-section-labels {
  color: #232323;
}
.cid-tStcyvKHaa .sub-btn-config {
  margin-top: 13px !important;
  margin-bottom: 10px !important;
}
.cid-tStcyvKHaa .uploadBtn {
  padding-top: 8.75px !important;
  padding-left: 13.25px !important;
  color: #000000 !important;
}
.cid-tStcyvKHaa .MsgTopicXpad {
  padding-left: 6px !important;
}
.cid-tStcyvKHaa input[type=file]::file-selector-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tStcyvKHaa input[type=file]::-webkit-file-upload-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tStcyvKHaa input[type=file]::-ms-browse {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tStcyvKHaa .blockhelp-format {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
}
.cid-tStcyvKHaa .blockhelp-format2 {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
  color: red;
}
.cid-tStcyvKHaa .show2ndButton {
  display: none ;
}
.cid-tStcyvKHaa input,
.cid-tStcyvKHaa textarea,
.cid-tStcyvKHaa select {
  background-color: #ffffff !important;
}
.cid-tStcyvKHaa textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa textarea::-moz-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa textarea:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa input::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa input:-moz-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa input::-moz-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa input:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tStcyvKHaa .btn .mbr-iconfont,
.cid-tStcyvKHaa .btn.btn-sm .mbr-iconfont {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: unset;
}
.cid-tVN7iHQ4PM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tVN7iHQ4PM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVN7iHQ4PM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVN7iHQ4PM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVN7iHQ4PM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVN7iHQ4PM .row {
    text-align: center;
  }
  .cid-tVN7iHQ4PM .social-row {
    justify-content: center;
  }
}
.cid-tVN7iHQ4PM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 0rem;
  }
}
.cid-tVN7iHQ4PM .mbr-text {
  color: #bbbbbb;
}
.cid-tVN7iHQ4PM .mbr-iconfont {
  color: black;
}
.cid-tMCQpIhEVE {
  z-index: 1000;
  width: 100%;
}
.cid-tMCQpIhEVE nav.navbar {
  position: fixed;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCQpIhEVE .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-tMCQpIhEVE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCQpIhEVE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCQpIhEVE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCQpIhEVE .nav-link {
  position: relative;
  mix-blend-mode: difference !important;
}
.cid-tMCQpIhEVE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .container-fluid {
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown-menu,
.cid-tMCQpIhEVE .navbar.opened {
  background: #232323 !important;
}
.cid-tMCQpIhEVE .nav-item:focus,
.cid-tMCQpIhEVE .nav-link:focus {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCQpIhEVE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCQpIhEVE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-tMCQpIhEVE .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCQpIhEVE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCQpIhEVE .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCQpIhEVE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCQpIhEVE .navbar.collapsed {
  justify-content: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCQpIhEVE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCQpIhEVE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCQpIhEVE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCQpIhEVE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCQpIhEVE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMCQpIhEVE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCQpIhEVE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown-item.active,
.cid-tMCQpIhEVE .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCQpIhEVE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCQpIhEVE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCQpIhEVE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCQpIhEVE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCQpIhEVE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-tMCQpIhEVE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar {
    height: 70px;
  }
  .cid-tMCQpIhEVE .navbar.opened {
    height: auto;
  }
  .cid-tMCQpIhEVE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVM85PfRns {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #f5f5f5;
}
.cid-tVM85PfRns .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVM85PfRns .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tVM85PfRns .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tVM85PfRns .row {
  flex-direction: row-reverse;
}
.cid-tVM85PfRns img {
  width: 100%;
}
.cid-tVMoFgYW8f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-tVN7iHQ4PM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tVN7iHQ4PM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVN7iHQ4PM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVN7iHQ4PM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVN7iHQ4PM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVN7iHQ4PM .row {
    text-align: center;
  }
  .cid-tVN7iHQ4PM .social-row {
    justify-content: center;
  }
}
.cid-tVN7iHQ4PM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 0rem;
  }
}
.cid-tVN7iHQ4PM .mbr-text {
  color: #bbbbbb;
}
.cid-tVN7iHQ4PM .mbr-iconfont {
  color: black;
}
.cid-tMCQpIhEVE {
  z-index: 1000;
  width: 100%;
}
.cid-tMCQpIhEVE nav.navbar {
  position: fixed;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCQpIhEVE .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-tMCQpIhEVE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCQpIhEVE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCQpIhEVE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCQpIhEVE .nav-link {
  position: relative;
  mix-blend-mode: difference !important;
}
.cid-tMCQpIhEVE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .container-fluid {
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown-menu,
.cid-tMCQpIhEVE .navbar.opened {
  background: #232323 !important;
}
.cid-tMCQpIhEVE .nav-item:focus,
.cid-tMCQpIhEVE .nav-link:focus {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCQpIhEVE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCQpIhEVE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-tMCQpIhEVE .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCQpIhEVE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCQpIhEVE .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCQpIhEVE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCQpIhEVE .navbar.collapsed {
  justify-content: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCQpIhEVE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCQpIhEVE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCQpIhEVE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCQpIhEVE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCQpIhEVE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMCQpIhEVE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCQpIhEVE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown-item.active,
.cid-tMCQpIhEVE .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCQpIhEVE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCQpIhEVE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCQpIhEVE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCQpIhEVE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCQpIhEVE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-tMCQpIhEVE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar {
    height: 70px;
  }
  .cid-tMCQpIhEVE .navbar.opened {
    height: auto;
  }
  .cid-tMCQpIhEVE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVMGy1lsj4 {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #232323;
}
.cid-tVMGy1lsj4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tVMGy1lsj4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVMGy1lsj4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVMGy1lsj4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tVMGy1lsj4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 299.935ms cubic-bezier(0.165, 0.84, 0.44, 1) 0ms, transform 299.935ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tVMGy1lsj4 .icon-focus {
  display: none;
}
.cid-tVMGy1lsj4 .mbr-gallery-item > div {
  transition: opacity 299.935ms cubic-bezier(0.165, 0.84, 0.44, 1) 0ms, transform 299.935ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tVMGy1lsj4 .mbr-gallery-item > div:hover {
  transform: translate(0px, -9px);
  opacity: 0.6;
}
.cid-tVMGy1lsj4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: revert;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tVMGy1lsj4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323;
}
.cid-tVMGy1lsj4 .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-tMwOozEBbf {
  background-color: #ffffff;
}
.cid-tMwOozEBbf .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-tMwOozEBbf .container-nopadding {
  padding: 0px;
}
.cid-tMwOozEBbf .contactBtn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5001;
}
.cid-tMwOozEBbf .contactBtnFixed {
  position: fixed;
}
.cid-tMwOozEBbf .btn-circle {
  background-color: rgba(255, 255, 255, 0.75);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
  border-width: 0px;
}
.cid-tMwOozEBbf .btnIconcol {
  color: #232323;
}
.cid-tMwOozEBbf .btn-circle:hover {
  background-color: #ffffff;
}
.cid-tMwOozEBbf .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-tMwOozEBbf .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-tMwOozEBbf .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-tMwOozEBbf .contactwindow {
  display: inline-block;
  text-align: left;
  width: 410px;
  background-color: #ffffff;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 5px !important;
  box-shadow: 0 12px 20px 0 rgba(35, 35, 35, 0.4) !important;
  z-index: 5000;
}
.cid-tMwOozEBbf .windowFixed {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 30px;
  overflow: auto;
  opacity: 0%;
  transition: opacity 1s;
}
.cid-tMwOozEBbf .windowBar {
  width: 100%;
  background-color: #ffffff;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-tMwOozEBbf .close {
  color: #232323;
  text-shadow: none;
  opacity: 1;
  padding-right: 15px !important;
  outline: none !important;
  float: right ;
  background-color: transparent;
  border: none;
  font-size: 1.5rem !important;
  line-height: 1.7;
}
@media (max-width: 500px) {
  .cid-tMwOozEBbf .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-tMwOozEBbf .windowBar,
  .cid-tMwOozEBbf .contentwindow,
  .cid-tMwOozEBbf .contactwindow {
    border-radius: 0;
  }
}
.cid-tMwOozEBbf .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-tMwOozEBbf .windowBarText {
  display: block;
  color: #232323;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 0px;
}
.cid-tMwOozEBbf .btn-form {
  display: initial;
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tMwOozEBbf .mbr-form .input-group-btn button[type="submit"] {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tMwOozEBbf .recaptcha-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .gdpr-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.cid-tMwOozEBbf .send-copy-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .alert-success {
  background-color: #232323;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tMwOozEBbf .alert-danger {
  background-color: #bbbbbb;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tMwOozEBbf .mbr-alert-success {
  text-align: center;
}
.cid-tMwOozEBbf .mbr-alert-danger {
  text-align: center;
}
.cid-tMwOozEBbf .message-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .message-topic-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .file-upload-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .form-control {
  padding-top: 5px !important;
  padding-bottom: 8px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  min-height: 3.2em !important;
}
.cid-tMwOozEBbf .form-control2 {
  color: #000000 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.2em !important;
}
.cid-tMwOozEBbf .form-control3 {
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.5em !important;
}
.cid-tMwOozEBbf .form-control {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .form-control:hover {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .showAlerts {
  display: block !important;
}
.cid-tMwOozEBbf .sendBtnCornerRadius {
  border-radius: 7px;
}
.cid-tMwOozEBbf .hidden {
  display: none;
}
.cid-tMwOozEBbf .mbr-section-terms {
  color: #232323;
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-autorespond {
  color: #232323;
  text-align: center;
}
.cid-tMwOozEBbf .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alertsuccess {
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-tMwOozEBbf .mbr-section-alerterror {
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-tMwOozEBbf .mbr-section-labels {
  color: #232323;
}
.cid-tMwOozEBbf .sub-btn-config {
  margin-top: 13px !important;
  margin-bottom: 10px !important;
}
.cid-tMwOozEBbf .uploadBtn {
  padding-top: 8.75px !important;
  padding-left: 13.25px !important;
  color: #000000 !important;
}
.cid-tMwOozEBbf .MsgTopicXpad {
  padding-left: 6px !important;
}
.cid-tMwOozEBbf input[type=file]::file-selector-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf input[type=file]::-webkit-file-upload-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf input[type=file]::-ms-browse {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf .blockhelp-format {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
}
.cid-tMwOozEBbf .blockhelp-format2 {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
  color: red;
}
.cid-tMwOozEBbf .show2ndButton {
  display: none ;
}
.cid-tMwOozEBbf input,
.cid-tMwOozEBbf textarea,
.cid-tMwOozEBbf select {
  background-color: #ffffff !important;
}
.cid-tMwOozEBbf textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea::-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input:-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input::-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf .btn .mbr-iconfont,
.cid-tMwOozEBbf .btn.btn-sm .mbr-iconfont {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: unset;
}
.cid-tVN7iHQ4PM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tVN7iHQ4PM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVN7iHQ4PM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVN7iHQ4PM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVN7iHQ4PM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVN7iHQ4PM .row {
    text-align: center;
  }
  .cid-tVN7iHQ4PM .social-row {
    justify-content: center;
  }
}
.cid-tVN7iHQ4PM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 0rem;
  }
}
.cid-tVN7iHQ4PM .mbr-text {
  color: #bbbbbb;
}
.cid-tVN7iHQ4PM .mbr-iconfont {
  color: black;
}
.cid-tMCQpIhEVE {
  z-index: 1000;
  width: 100%;
}
.cid-tMCQpIhEVE nav.navbar {
  position: fixed;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCQpIhEVE .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-tMCQpIhEVE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCQpIhEVE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCQpIhEVE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCQpIhEVE .nav-link {
  position: relative;
}
.cid-tMCQpIhEVE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCQpIhEVE .navbar-caption {
  mix-blend-mode: difference !important;
}
.cid-tMCQpIhEVE .dropdown-menu,
.cid-tMCQpIhEVE .navbar.opened {
  background: #232323 !important;
}
.cid-tMCQpIhEVE .nav-item:focus,
.cid-tMCQpIhEVE .nav-link:focus {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCQpIhEVE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCQpIhEVE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-tMCQpIhEVE .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCQpIhEVE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCQpIhEVE .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCQpIhEVE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCQpIhEVE .navbar.collapsed {
  justify-content: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCQpIhEVE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCQpIhEVE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCQpIhEVE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCQpIhEVE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCQpIhEVE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMCQpIhEVE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCQpIhEVE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown-item.active,
.cid-tMCQpIhEVE .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCQpIhEVE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCQpIhEVE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCQpIhEVE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCQpIhEVE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCQpIhEVE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-tMCQpIhEVE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar {
    height: 70px;
  }
  .cid-tMCQpIhEVE .navbar.opened {
    height: auto;
  }
  .cid-tMCQpIhEVE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tLcWzffmYk .icon-wrapper {
  margin: auto;
  background-color: #ffffff;
  color: #fafafa;
  border-radius: 50%;
  font-size: 48px;
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  transition: all 0.25s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-tLcWzffmYk .icon-wrapper span {
  margin-left: 10px;
}
.cid-tLcWzffmYk .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tLcWzffmYk .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tLcWzffmYk .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tLcWzffmYk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tLcWzffmYk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tLcWzffmYk .icon-description {
  color: #ffffff;
}
.cid-tLcWzffmYk H1 {
  color: #fafafa;
}
.cid-tSzouRUiuJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-tSzouRUiuJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSzouRUiuJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSzouRUiuJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSzouRUiuJ .mbr-section-title {
  color: #ffffff;
}
.cid-tVH22QiBVy {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-tVH22QiBVy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVH22QiBVy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVH22QiBVy .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tVH22QiBVy .item {
    margin-bottom: 1rem;
  }
}
.cid-tVH22QiBVy .item-wrapper {
  position: relative;
  pointer-events: auto;
  transition: opacity 299.935ms cubic-bezier(0.165, 0.84, 0.44, 1) 0ms, transform 299.935ms cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent !important;
}
.cid-tVH22QiBVy .item-wrapper:hover {
  transform: translate(0px, -9px);
  opacity: 0.6;
}
.cid-tVH22QiBVy .item-wrapper .clicky {
  pointer-events: auto;
}
.cid-tVH22QiBVy .item-wrapper .w-100 {
  pointer-events: none;
}
.cid-tVH22QiBVy .item-wrapper .icon-wrapper {
  opacity: 0;
  pointer-events: auto;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-tVH22QiBVy .carousel-control,
.cid-tVH22QiBVy .close {
  background: #1b1b1b;
}
.cid-tVH22QiBVy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tVH22QiBVy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tVH22QiBVy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tVH22QiBVy .carousel-control-next span {
  margin-left: 5px;
}
.cid-tVH22QiBVy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tVH22QiBVy .close::before {
  content: '\e91a';
}
.cid-tVH22QiBVy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tVH22QiBVy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tVH22QiBVy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVH22QiBVy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVH22QiBVy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tVH22QiBVy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tVH22QiBVy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tVH22QiBVy .carousel-indicators li.active,
.cid-tVH22QiBVy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tVH22QiBVy .carousel-indicators li::after,
.cid-tVH22QiBVy .carousel-indicators li::before {
  content: none;
}
.cid-tVH22QiBVy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tVH22QiBVy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tVH22QiBVy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tVH22QiBVy .carousel-indicators {
    display: none;
  }
}
.cid-tVH22QiBVy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tVH22QiBVy .carousel-inner > .active {
  display: block;
}
.cid-tVH22QiBVy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVH22QiBVy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVH22QiBVy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tVH22QiBVy .carousel-control,
  .cid-tVH22QiBVy .carousel-indicators,
  .cid-tVH22QiBVy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tVH22QiBVy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tVH22QiBVy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tVH22QiBVy .carousel-indicators .active,
.cid-tVH22QiBVy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tVH22QiBVy .carousel-indicators .active {
  background: #fff;
}
.cid-tVH22QiBVy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tVH22QiBVy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tVH22QiBVy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tVH22QiBVy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tVH22QiBVy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tVH22QiBVy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tVH22QiBVy .carousel {
  width: 100%;
}
.cid-tVH22QiBVy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tVH22QiBVy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tVH22QiBVy .modal.fade .modal-dialog,
.cid-tVH22QiBVy .modal.in .modal-dialog {
  transform: none;
}
.cid-tVH22QiBVy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tVH22QiBVy .content-head {
  max-width: 800px;
}
.cid-tVH22QiBVy H6 {
  color: #ffffff;
  text-align: center;
}
.cid-tSufKY4ZE9 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-color: #232323;
}
.cid-tSufKY4ZE9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSufKY4ZE9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSufKY4ZE9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSufKY4ZE9 .mbr-section-title {
  color: #ffffff;
}
.cid-tSWKMdPI3i {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tSWKMdPI3i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWKMdPI3i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWKMdPI3i .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tStwWjN7GT {
  display: flex;
  padding-top: 180px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/header-youtube-2.gif");
}
.cid-tStwWjN7GT .mbr-overlay {
  background-color: #232323;
  opacity: 0.3;
}
.cid-tStwWjN7GT .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tStwWjN7GT {
    align-items: flex-end;
  }
  .cid-tStwWjN7GT .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tStwWjN7GT .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tStwWjN7GT {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tStwWjN7GT .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tStwWjN7GT .content-wrap {
    width: 100%;
  }
}
.cid-tStwWjN7GT .mbr-section-title {
  text-align: center;
}
.cid-tStwWjN7GT .mbr-text,
.cid-tStwWjN7GT .mbr-section-btn {
  text-align: center;
}
.cid-tSWKZJIZNW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tSWKZJIZNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWKZJIZNW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWKZJIZNW .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-tStMh74tQp {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tStMh74tQp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tStMh74tQp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tStMh74tQp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSWCqCUn4v {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tSWCqCUn4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWCqCUn4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWCqCUn4v .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSufUYPcQx {
  display: flex;
  padding-top: 240px;
  padding-bottom: 240px;
  background-image: url("../../../assets/images/sprinters-gif-lessfx.webp");
}
.cid-tSufUYPcQx .mbr-overlay {
  background-color: #232323;
  opacity: 0.2;
}
.cid-tSufUYPcQx .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSufUYPcQx {
    align-items: flex-end;
  }
  .cid-tSufUYPcQx .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSufUYPcQx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSufUYPcQx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSufUYPcQx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSufUYPcQx .content-wrap {
    width: 100%;
  }
}
.cid-tSufUYPcQx .mbr-section-title {
  text-align: center;
}
.cid-tSufUYPcQx .mbr-text,
.cid-tSufUYPcQx .mbr-section-btn {
  text-align: center;
}
.cid-tSWMTbsBQR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tSWMTbsBQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWMTbsBQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWMTbsBQR .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-tSug0dOi6v {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tSug0dOi6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSug0dOi6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSug0dOi6v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSWN2uHayf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tSWN2uHayf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWN2uHayf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWN2uHayf .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSu3wUkoR5 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.cid-tSu3wUkoR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSu3wUkoR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-tSWNbiS60X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tSWNbiS60X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSWNbiS60X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSWNbiS60X .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-tVN77UcBHm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tVN77UcBHm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tVN77UcBHm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tVN77UcBHm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tVN77UcBHm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tVN77UcBHm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tVN77UcBHm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tVN77UcBHm .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tVN77UcBHm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tVN77UcBHm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tVN77UcBHm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tVN77UcBHm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tVN77UcBHm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tVN77UcBHm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tVN77UcBHm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tMwOozEBbf {
  background-color: #ffffff;
}
.cid-tMwOozEBbf .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-tMwOozEBbf .container-nopadding {
  padding: 0px;
}
.cid-tMwOozEBbf .contactBtn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5001;
}
.cid-tMwOozEBbf .contactBtnFixed {
  position: fixed;
}
.cid-tMwOozEBbf .btn-circle {
  background-color: rgba(255, 255, 255, 0.75);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
  border-width: 0px;
}
.cid-tMwOozEBbf .btnIconcol {
  color: #232323;
}
.cid-tMwOozEBbf .btn-circle:hover {
  background-color: #ffffff;
}
.cid-tMwOozEBbf .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-tMwOozEBbf .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-tMwOozEBbf .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-tMwOozEBbf .contactwindow {
  display: inline-block;
  text-align: left;
  width: 410px;
  background-color: #ffffff;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 5px !important;
  box-shadow: 0 12px 20px 0 rgba(35, 35, 35, 0.4) !important;
  z-index: 5000;
}
.cid-tMwOozEBbf .windowFixed {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 30px;
  overflow: auto;
  opacity: 0%;
  transition: opacity 1s;
}
.cid-tMwOozEBbf .windowBar {
  width: 100%;
  background-color: #ffffff;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-tMwOozEBbf .close {
  color: #232323;
  text-shadow: none;
  opacity: 1;
  padding-right: 15px !important;
  outline: none !important;
  float: right ;
  background-color: transparent;
  border: none;
  font-size: 1.5rem !important;
  line-height: 1.7;
}
@media (max-width: 500px) {
  .cid-tMwOozEBbf .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-tMwOozEBbf .windowBar,
  .cid-tMwOozEBbf .contentwindow,
  .cid-tMwOozEBbf .contactwindow {
    border-radius: 0;
  }
}
.cid-tMwOozEBbf .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-tMwOozEBbf .windowBarText {
  display: block;
  color: #232323;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 0px;
}
.cid-tMwOozEBbf .btn-form {
  display: initial;
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tMwOozEBbf .mbr-form .input-group-btn button[type="submit"] {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tMwOozEBbf .recaptcha-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .gdpr-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.cid-tMwOozEBbf .send-copy-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .alert-success {
  background-color: #232323;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tMwOozEBbf .alert-danger {
  background-color: #bbbbbb;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tMwOozEBbf .mbr-alert-success {
  text-align: center;
}
.cid-tMwOozEBbf .mbr-alert-danger {
  text-align: center;
}
.cid-tMwOozEBbf .message-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .message-topic-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .file-upload-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .form-control {
  padding-top: 5px !important;
  padding-bottom: 8px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  min-height: 3.2em !important;
}
.cid-tMwOozEBbf .form-control2 {
  color: #000000 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.2em !important;
}
.cid-tMwOozEBbf .form-control3 {
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.5em !important;
}
.cid-tMwOozEBbf .form-control {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .form-control:hover {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .showAlerts {
  display: block !important;
}
.cid-tMwOozEBbf .sendBtnCornerRadius {
  border-radius: 7px;
}
.cid-tMwOozEBbf .hidden {
  display: none;
}
.cid-tMwOozEBbf .mbr-section-terms {
  color: #232323;
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-autorespond {
  color: #232323;
  text-align: center;
}
.cid-tMwOozEBbf .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alertsuccess {
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-tMwOozEBbf .mbr-section-alerterror {
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-tMwOozEBbf .mbr-section-labels {
  color: #232323;
}
.cid-tMwOozEBbf .sub-btn-config {
  margin-top: 13px !important;
  margin-bottom: 10px !important;
}
.cid-tMwOozEBbf .uploadBtn {
  padding-top: 8.75px !important;
  padding-left: 13.25px !important;
  color: #000000 !important;
}
.cid-tMwOozEBbf .MsgTopicXpad {
  padding-left: 6px !important;
}
.cid-tMwOozEBbf input[type=file]::file-selector-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf input[type=file]::-webkit-file-upload-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf input[type=file]::-ms-browse {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf .blockhelp-format {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
}
.cid-tMwOozEBbf .blockhelp-format2 {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
  color: red;
}
.cid-tMwOozEBbf .show2ndButton {
  display: none ;
}
.cid-tMwOozEBbf input,
.cid-tMwOozEBbf textarea,
.cid-tMwOozEBbf select {
  background-color: #ffffff !important;
}
.cid-tMwOozEBbf textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea::-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input:-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input::-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf .btn .mbr-iconfont,
.cid-tMwOozEBbf .btn.btn-sm .mbr-iconfont {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: unset;
}
.cid-tMCQpIhEVE {
  z-index: 1000;
  width: 100%;
}
.cid-tMCQpIhEVE nav.navbar {
  position: fixed;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCQpIhEVE .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-tMCQpIhEVE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCQpIhEVE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCQpIhEVE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCQpIhEVE .nav-link {
  position: relative;
  mix-blend-mode: difference !important;
}
.cid-tMCQpIhEVE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .container-fluid {
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown-menu,
.cid-tMCQpIhEVE .navbar.opened {
  background: #232323 !important;
}
.cid-tMCQpIhEVE .nav-item:focus,
.cid-tMCQpIhEVE .nav-link:focus {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCQpIhEVE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCQpIhEVE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-tMCQpIhEVE .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCQpIhEVE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCQpIhEVE .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCQpIhEVE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCQpIhEVE .navbar.collapsed {
  justify-content: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCQpIhEVE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCQpIhEVE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCQpIhEVE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCQpIhEVE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCQpIhEVE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMCQpIhEVE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCQpIhEVE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown-item.active,
.cid-tMCQpIhEVE .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCQpIhEVE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCQpIhEVE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCQpIhEVE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCQpIhEVE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCQpIhEVE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-tMCQpIhEVE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar {
    height: 70px;
  }
  .cid-tMCQpIhEVE .navbar.opened {
    height: auto;
  }
  .cid-tMCQpIhEVE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVLZTGmDTf {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tVLZTGmDTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVLZTGmDTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVLZTGmDTf .mbr-section-title,
.cid-tVLZTGmDTf .mbr-text,
.cid-tVLZTGmDTf .mbr-section-btn {
  text-align: center;
}
.cid-tVLZTGmDTf .video-wrapper {
  margin: auto;
}
.cid-tVLZTGmDTf .video-wrapper iframe {
  width: 100%;
}
.cid-tVLZTGmDTf .mbr-section-title {
  color: #ffffff;
}
.cid-tVLZTGmDTf .mbr-text,
.cid-tVLZTGmDTf .mbr-section-btn {
  color: #ffffff;
}
.cid-tVMzYrIc9S {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tVMzYrIc9S .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tVMzYrIc9S .mbr-text {
  color: #ffffff;
}
.cid-tVMzYrIc9S .mbr-section-title {
  color: #ffffff;
}
.cid-tMwOozEBbf {
  background-color: #ffffff;
}
.cid-tMwOozEBbf .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-tMwOozEBbf .container-nopadding {
  padding: 0px;
}
.cid-tMwOozEBbf .contactBtn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5001;
}
.cid-tMwOozEBbf .contactBtnFixed {
  position: fixed;
}
.cid-tMwOozEBbf .btn-circle {
  background-color: rgba(255, 255, 255, 0.75);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
  border-width: 0px;
}
.cid-tMwOozEBbf .btnIconcol {
  color: #232323;
}
.cid-tMwOozEBbf .btn-circle:hover {
  background-color: #ffffff;
}
.cid-tMwOozEBbf .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-tMwOozEBbf .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-tMwOozEBbf .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-tMwOozEBbf .contactwindow {
  display: inline-block;
  text-align: left;
  width: 410px;
  background-color: #ffffff;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 5px !important;
  box-shadow: 0 12px 20px 0 rgba(35, 35, 35, 0.4) !important;
  z-index: 5000;
}
.cid-tMwOozEBbf .windowFixed {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 30px;
  overflow: auto;
  opacity: 0%;
  transition: opacity 1s;
}
.cid-tMwOozEBbf .windowBar {
  width: 100%;
  background-color: #ffffff;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-tMwOozEBbf .close {
  color: #232323;
  text-shadow: none;
  opacity: 1;
  padding-right: 15px !important;
  outline: none !important;
  float: right ;
  background-color: transparent;
  border: none;
  font-size: 1.5rem !important;
  line-height: 1.7;
}
@media (max-width: 500px) {
  .cid-tMwOozEBbf .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-tMwOozEBbf .windowBar,
  .cid-tMwOozEBbf .contentwindow,
  .cid-tMwOozEBbf .contactwindow {
    border-radius: 0;
  }
}
.cid-tMwOozEBbf .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-tMwOozEBbf .windowBarText {
  display: block;
  color: #232323;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 0px;
}
.cid-tMwOozEBbf .btn-form {
  display: initial;
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tMwOozEBbf .mbr-form .input-group-btn button[type="submit"] {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tMwOozEBbf .recaptcha-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .gdpr-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.cid-tMwOozEBbf .send-copy-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tMwOozEBbf .alert-success {
  background-color: #232323;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tMwOozEBbf .alert-danger {
  background-color: #bbbbbb;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tMwOozEBbf .mbr-alert-success {
  text-align: center;
}
.cid-tMwOozEBbf .mbr-alert-danger {
  text-align: center;
}
.cid-tMwOozEBbf .message-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .message-topic-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .file-upload-div {
  margin-bottom: 0;
}
.cid-tMwOozEBbf .form-control {
  padding-top: 5px !important;
  padding-bottom: 8px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  min-height: 3.2em !important;
}
.cid-tMwOozEBbf .form-control2 {
  color: #000000 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.2em !important;
}
.cid-tMwOozEBbf .form-control3 {
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.5em !important;
}
.cid-tMwOozEBbf .form-control {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .form-control:hover {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-tMwOozEBbf .showAlerts {
  display: block !important;
}
.cid-tMwOozEBbf .sendBtnCornerRadius {
  border-radius: 7px;
}
.cid-tMwOozEBbf .hidden {
  display: none;
}
.cid-tMwOozEBbf .mbr-section-terms {
  color: #232323;
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-autorespond {
  color: #232323;
  text-align: center;
}
.cid-tMwOozEBbf .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alertsuccess {
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-tMwOozEBbf .mbr-section-alerterror {
  text-align: left;
}
.cid-tMwOozEBbf .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-tMwOozEBbf .mbr-section-labels {
  color: #232323;
}
.cid-tMwOozEBbf .sub-btn-config {
  margin-top: 13px !important;
  margin-bottom: 10px !important;
}
.cid-tMwOozEBbf .uploadBtn {
  padding-top: 8.75px !important;
  padding-left: 13.25px !important;
  color: #000000 !important;
}
.cid-tMwOozEBbf .MsgTopicXpad {
  padding-left: 6px !important;
}
.cid-tMwOozEBbf input[type=file]::file-selector-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf input[type=file]::-webkit-file-upload-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf input[type=file]::-ms-browse {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tMwOozEBbf .blockhelp-format {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
}
.cid-tMwOozEBbf .blockhelp-format2 {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
  color: red;
}
.cid-tMwOozEBbf .show2ndButton {
  display: none ;
}
.cid-tMwOozEBbf input,
.cid-tMwOozEBbf textarea,
.cid-tMwOozEBbf select {
  background-color: #ffffff !important;
}
.cid-tMwOozEBbf textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea::-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf textarea:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input:-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input::-moz-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf input:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tMwOozEBbf .btn .mbr-iconfont,
.cid-tMwOozEBbf .btn.btn-sm .mbr-iconfont {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: unset;
}
.cid-tVN7iHQ4PM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tVN7iHQ4PM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVN7iHQ4PM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVN7iHQ4PM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVN7iHQ4PM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVN7iHQ4PM .row {
    text-align: center;
  }
  .cid-tVN7iHQ4PM .social-row {
    justify-content: center;
  }
}
.cid-tVN7iHQ4PM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 0rem;
  }
}
.cid-tVN7iHQ4PM .mbr-text {
  color: #bbbbbb;
}
.cid-tVN7iHQ4PM .mbr-iconfont {
  color: black;
}
.cid-tMCQpIhEVE {
  z-index: 1000;
  width: 100%;
}
.cid-tMCQpIhEVE nav.navbar {
  position: fixed;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMCQpIhEVE .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-tMCQpIhEVE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMCQpIhEVE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMCQpIhEVE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMCQpIhEVE .nav-link {
  position: relative;
  mix-blend-mode: difference !important;
}
.cid-tMCQpIhEVE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .container-fluid {
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMCQpIhEVE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown-menu,
.cid-tMCQpIhEVE .navbar.opened {
  background: #232323 !important;
}
.cid-tMCQpIhEVE .nav-item:focus,
.cid-tMCQpIhEVE .nav-link:focus {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMCQpIhEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMCQpIhEVE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMCQpIhEVE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMCQpIhEVE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-tMCQpIhEVE .navbar.opened {
  transition: all 0.3s;
}
.cid-tMCQpIhEVE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMCQpIhEVE .navbar .navbar-logo img {
  width: auto;
}
.cid-tMCQpIhEVE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMCQpIhEVE .navbar.collapsed {
  justify-content: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMCQpIhEVE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMCQpIhEVE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMCQpIhEVE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMCQpIhEVE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMCQpIhEVE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMCQpIhEVE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMCQpIhEVE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMCQpIhEVE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMCQpIhEVE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMCQpIhEVE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMCQpIhEVE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMCQpIhEVE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMCQpIhEVE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMCQpIhEVE .dropdown-item.active,
.cid-tMCQpIhEVE .dropdown-item:active {
  background-color: transparent;
}
.cid-tMCQpIhEVE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMCQpIhEVE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tMCQpIhEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMCQpIhEVE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMCQpIhEVE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMCQpIhEVE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMCQpIhEVE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMCQpIhEVE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMCQpIhEVE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMCQpIhEVE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-tMCQpIhEVE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMCQpIhEVE .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-tMCQpIhEVE .navbar {
    height: 70px;
  }
  .cid-tMCQpIhEVE .navbar.opened {
    height: auto;
  }
  .cid-tMCQpIhEVE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2iCkNbk1d .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2iCkNbk1d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/profilepic-og.png");
}
.cid-tWrpqbMaHT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tWrpqbMaHT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tWrpqbMaHT .mbr-text {
  color: #ffffff;
}
.cid-tWrpqbMaHT .mbr-section-title {
  color: #ffffff;
}
.cid-tWrpqbUqyM {
  background-color: #ffffff;
}
.cid-tWrpqbUqyM .container {
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: right;
}
.cid-tWrpqbUqyM .container-nopadding {
  padding: 0px;
}
.cid-tWrpqbUqyM .contactBtn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 5001;
}
.cid-tWrpqbUqyM .contactBtnFixed {
  position: fixed;
}
.cid-tWrpqbUqyM .btn-circle {
  background-color: rgba(255, 255, 255, 0.75);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  margin: .25rem !important;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5);
  border-width: 0px;
}
.cid-tWrpqbUqyM .btnIconcol {
  color: #232323;
}
.cid-tWrpqbUqyM .btn-circle:hover {
  background-color: #ffffff;
}
.cid-tWrpqbUqyM .btn-iconsize {
  line-height: revert !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 1.7rem !important;
}
@media (max-width: 767px) {
  .cid-tWrpqbUqyM .btn-iconsize .btn {
    font-size: 1.7rem !important;
  }
  .cid-tWrpqbUqyM .btn-iconsize .btn .mbr-iconfont {
    font-size: 1.7rem !important;
  }
}
.cid-tWrpqbUqyM .contactwindow {
  display: inline-block;
  text-align: left;
  width: 410px;
  background-color: #ffffff;
  border-color: black !important;
  border-width: 0 !important;
  border-style: solid !important;
  border-radius: 5px !important;
  box-shadow: 0 12px 20px 0 rgba(35, 35, 35, 0.4) !important;
  z-index: 5000;
}
.cid-tWrpqbUqyM .windowFixed {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 30px;
  overflow: auto;
  opacity: 0%;
  transition: opacity 1s;
}
.cid-tWrpqbUqyM .windowBar {
  width: 100%;
  background-color: #ffffff;
  color: #fff;
  padding: 5px;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.cid-tWrpqbUqyM .close {
  color: #232323;
  text-shadow: none;
  opacity: 1;
  padding-right: 15px !important;
  outline: none !important;
  float: right ;
  background-color: transparent;
  border: none;
  font-size: 1.5rem !important;
  line-height: 1.7;
}
@media (max-width: 500px) {
  .cid-tWrpqbUqyM .windowFixed {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .cid-tWrpqbUqyM .windowBar,
  .cid-tWrpqbUqyM .contentwindow,
  .cid-tWrpqbUqyM .contactwindow {
    border-radius: 0;
  }
}
.cid-tWrpqbUqyM .windowContent {
  width: 100%;
  padding: 10px;
}
.cid-tWrpqbUqyM .windowBarText {
  display: block;
  color: #232323;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px;
  padding-bottom: 0px;
}
.cid-tWrpqbUqyM .btn-form {
  display: initial;
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tWrpqbUqyM .mbr-form .input-group-btn button[type="submit"] {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tWrpqbUqyM .recaptcha-div {
  margin-bottom: 0;
}
.cid-tWrpqbUqyM .recaptcha-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tWrpqbUqyM .gdpr-div {
  margin-bottom: 0;
}
.cid-tWrpqbUqyM .gdpr-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tWrpqbUqyM .alert-div {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.cid-tWrpqbUqyM .send-copy-div {
  margin-bottom: 0;
}
.cid-tWrpqbUqyM .send-copy-div p {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}
.cid-tWrpqbUqyM .alert-success {
  background-color: #232323;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tWrpqbUqyM .alert-danger {
  background-color: #bbbbbb;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.cid-tWrpqbUqyM .mbr-alert-success {
  text-align: center;
}
.cid-tWrpqbUqyM .mbr-alert-danger {
  text-align: center;
}
.cid-tWrpqbUqyM .message-div {
  margin-bottom: 0;
}
.cid-tWrpqbUqyM .message-topic-div {
  margin-bottom: 0;
}
.cid-tWrpqbUqyM .file-upload-div {
  margin-bottom: 0;
}
.cid-tWrpqbUqyM .form-control {
  padding-top: 5px !important;
  padding-bottom: 8px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  min-height: 3.2em !important;
}
.cid-tWrpqbUqyM .form-control2 {
  color: #000000 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.2em !important;
}
.cid-tWrpqbUqyM .form-control3 {
  font-size: 15px !important;
  font-weight: 400 !important;
  min-height: 3.5em !important;
}
.cid-tWrpqbUqyM .form-control {
  border: 1px solid #000000 !important;
}
.cid-tWrpqbUqyM .form-control:hover {
  border: 1px solid #000000 !important;
}
.cid-tWrpqbUqyM .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-tWrpqbUqyM .showAlerts {
  display: block !important;
}
.cid-tWrpqbUqyM .sendBtnCornerRadius {
  border-radius: 7px;
}
.cid-tWrpqbUqyM .hidden {
  display: none;
}
.cid-tWrpqbUqyM .mbr-section-terms {
  color: #232323;
  text-align: left;
}
.cid-tWrpqbUqyM .mbr-section-autorespond {
  color: #232323;
  text-align: center;
}
.cid-tWrpqbUqyM .mbr-section-gdpr {
  color: #232323;
  text-align: left;
}
.cid-tWrpqbUqyM .mbr-section-alertsuccess {
  text-align: left;
}
.cid-tWrpqbUqyM .mbr-section-alertsuccess span {
  vertical-align: middle;
}
.cid-tWrpqbUqyM .mbr-section-alerterror {
  text-align: left;
}
.cid-tWrpqbUqyM .mbr-section-alerterror span {
  vertical-align: middle;
}
.cid-tWrpqbUqyM .mbr-section-labels {
  color: #232323;
}
.cid-tWrpqbUqyM .sub-btn-config {
  margin-top: 13px !important;
  margin-bottom: 10px !important;
}
.cid-tWrpqbUqyM .uploadBtn {
  padding-top: 8.75px !important;
  padding-left: 13.25px !important;
  color: #000000 !important;
}
.cid-tWrpqbUqyM .MsgTopicXpad {
  padding-left: 6px !important;
}
.cid-tWrpqbUqyM input[type=file]::file-selector-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tWrpqbUqyM input[type=file]::-webkit-file-upload-button {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tWrpqbUqyM input[type=file]::-ms-browse {
  border: 1.25px solid #000000 !important;
  padding-top: 5px;
  padding-bottom: 6.5px;
  padding-left: .4em;
  padding-right: .4em;
  border-radius: .2em;
  background-color: #c9e1e7 !important;
  color: #000000 !important;
  font-family: Arial, Helvetica, sans-serif;
}
.cid-tWrpqbUqyM .blockhelp-format {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
}
.cid-tWrpqbUqyM .blockhelp-format2 {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  text-align: left;
  color: red;
}
.cid-tWrpqbUqyM .show2ndButton {
  display: none ;
}
.cid-tWrpqbUqyM input,
.cid-tWrpqbUqyM textarea,
.cid-tWrpqbUqyM select {
  background-color: #ffffff !important;
}
.cid-tWrpqbUqyM textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM textarea::-moz-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM textarea:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM input::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM input:-moz-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM input::-moz-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM input:-ms-input-placeholder {
  color: #767676 !important;
}
.cid-tWrpqbUqyM .btn .mbr-iconfont,
.cid-tWrpqbUqyM .btn.btn-sm .mbr-iconfont {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: unset;
}
.cid-tWrpqcdofo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tWrpqcdofo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWrpqcdofo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWrpqcdofo .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWrpqcdofo .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWrpqcdofo .row {
    text-align: center;
  }
  .cid-tWrpqcdofo .social-row {
    justify-content: center;
  }
}
.cid-tWrpqcdofo .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tWrpqcdofo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWrpqcdofo .list {
    margin-bottom: 0rem;
  }
}
.cid-tWrpqcdofo .mbr-text {
  color: #bbbbbb;
}
.cid-tWrpqcdofo .mbr-iconfont {
  color: black;
}
.cid-h8JzSwq7yf {
  z-index: 1000;
  width: 100%;
}
.cid-h8JzSwq7yf nav.navbar {
  position: fixed;
}
.cid-h8JzSwq7yf .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-h8JzSwq7yf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-h8JzSwq7yf .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-h8JzSwq7yf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-h8JzSwq7yf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-h8JzSwq7yf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-h8JzSwq7yf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-h8JzSwq7yf .nav-link {
  position: relative;
  mix-blend-mode: difference !important;
}
.cid-h8JzSwq7yf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-h8JzSwq7yf .container {
    flex-wrap: wrap;
  }
}
.cid-h8JzSwq7yf .container-fluid {
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-h8JzSwq7yf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-h8JzSwq7yf .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-h8JzSwq7yf .dropdown-menu,
.cid-h8JzSwq7yf .navbar.opened {
  background: #232323 !important;
}
.cid-h8JzSwq7yf .nav-item:focus,
.cid-h8JzSwq7yf .nav-link:focus {
  outline: none;
}
.cid-h8JzSwq7yf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-h8JzSwq7yf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-h8JzSwq7yf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-h8JzSwq7yf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-h8JzSwq7yf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-h8JzSwq7yf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-h8JzSwq7yf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-h8JzSwq7yf .navbar.opened {
  transition: all 0.3s;
}
.cid-h8JzSwq7yf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-h8JzSwq7yf .navbar .navbar-logo img {
  width: auto;
}
.cid-h8JzSwq7yf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-h8JzSwq7yf .navbar.collapsed {
  justify-content: center;
}
.cid-h8JzSwq7yf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-h8JzSwq7yf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-h8JzSwq7yf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-h8JzSwq7yf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-h8JzSwq7yf .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-h8JzSwq7yf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-h8JzSwq7yf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-h8JzSwq7yf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-h8JzSwq7yf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-h8JzSwq7yf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-h8JzSwq7yf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-h8JzSwq7yf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-h8JzSwq7yf .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-h8JzSwq7yf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-h8JzSwq7yf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-h8JzSwq7yf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-h8JzSwq7yf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-h8JzSwq7yf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-h8JzSwq7yf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-h8JzSwq7yf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-h8JzSwq7yf .navbar.navbar-short {
  min-height: 60px;
}
.cid-h8JzSwq7yf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-h8JzSwq7yf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-h8JzSwq7yf .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-h8JzSwq7yf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-h8JzSwq7yf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-h8JzSwq7yf .dropdown-item.active,
.cid-h8JzSwq7yf .dropdown-item:active {
  background-color: transparent;
}
.cid-h8JzSwq7yf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-h8JzSwq7yf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-h8JzSwq7yf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-h8JzSwq7yf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-h8JzSwq7yf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-h8JzSwq7yf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-h8JzSwq7yf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-h8JzSwq7yf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-h8JzSwq7yf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-h8JzSwq7yf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-h8JzSwq7yf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-h8JzSwq7yf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-h8JzSwq7yf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-h8JzSwq7yf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-h8JzSwq7yf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-h8JzSwq7yf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-h8JzSwq7yf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-h8JzSwq7yf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-h8JzSwq7yf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-h8JzSwq7yf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-h8JzSwq7yf .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-h8JzSwq7yf .navbar {
    height: 70px;
  }
  .cid-h8JzSwq7yf .navbar.opened {
    height: auto;
  }
  .cid-h8JzSwq7yf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWwvasDu2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwvasDu2V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/sprints-poster.jpg");
}
.cid-tWwv6ejJua {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f5f5f5;
}
.cid-tWwv6ejJua .mbr-section-subtitle {
  color: #232323;
}
.cid-tWwv6ejJua .mbr-text {
  color: #232323;
}
.cid-lJLEAwyveu {
  background-color: #f5f5f5;
}
.cid-lJLEAwyveu .show {
  visibility: visible;
}
.cid-lJLEAwyveu .hide {
  visibility: hidden;
}
.cid-tWwx51LdRE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f5f5;
}
.cid-tWwx51LdRE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWwx51LdRE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWwx51LdRE .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tWwx51LdRE .item {
    margin-bottom: 1rem;
  }
}
.cid-tWwx51LdRE .item-wrapper {
  position: relative;
}
.cid-tWwx51LdRE .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-tWwx51LdRE .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tWwx51LdRE .carousel-control,
.cid-tWwx51LdRE .close {
  background: #1b1b1b;
}
.cid-tWwx51LdRE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWwx51LdRE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWwx51LdRE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWwx51LdRE .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWwx51LdRE .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWwx51LdRE .close::before {
  content: '\e91a';
}
.cid-tWwx51LdRE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWwx51LdRE .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWwx51LdRE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWwx51LdRE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWwx51LdRE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWwx51LdRE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWwx51LdRE .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWwx51LdRE .carousel-indicators li.active,
.cid-tWwx51LdRE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWwx51LdRE .carousel-indicators li::after,
.cid-tWwx51LdRE .carousel-indicators li::before {
  content: none;
}
.cid-tWwx51LdRE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWwx51LdRE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWwx51LdRE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWwx51LdRE .carousel-indicators {
    display: none;
  }
}
.cid-tWwx51LdRE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWwx51LdRE .carousel-inner > .active {
  display: block;
}
.cid-tWwx51LdRE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWwx51LdRE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWwx51LdRE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWwx51LdRE .carousel-control,
  .cid-tWwx51LdRE .carousel-indicators,
  .cid-tWwx51LdRE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWwx51LdRE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWwx51LdRE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWwx51LdRE .carousel-indicators .active,
.cid-tWwx51LdRE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWwx51LdRE .carousel-indicators .active {
  background: #fff;
}
.cid-tWwx51LdRE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWwx51LdRE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWwx51LdRE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWwx51LdRE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWwx51LdRE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWwx51LdRE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWwx51LdRE .carousel {
  width: 100%;
}
.cid-tWwx51LdRE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWwx51LdRE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWwx51LdRE .modal.fade .modal-dialog,
.cid-tWwx51LdRE .modal.in .modal-dialog {
  transform: none;
}
.cid-tWwx51LdRE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWwx51LdRE .content-head {
  max-width: 800px;
}
.cid-tVN7iHQ4PM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tVN7iHQ4PM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVN7iHQ4PM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVN7iHQ4PM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVN7iHQ4PM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVN7iHQ4PM .row {
    text-align: center;
  }
  .cid-tVN7iHQ4PM .social-row {
    justify-content: center;
  }
}
.cid-tVN7iHQ4PM .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVN7iHQ4PM .list {
    margin-bottom: 0rem;
  }
}
.cid-tVN7iHQ4PM .mbr-text {
  color: #bbbbbb;
}
.cid-tVN7iHQ4PM .mbr-iconfont {
  color: black;
}
.cid-u2oUwOAxVg {
  z-index: 1000;
  width: 100%;
}
.cid-u2oUwOAxVg nav.navbar {
  position: fixed;
}
.cid-u2oUwOAxVg .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-u2oUwOAxVg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2oUwOAxVg .dropdown-item {
  border-bottom: 0px solid #e6e6e6;
}
.cid-u2oUwOAxVg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2oUwOAxVg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2oUwOAxVg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2oUwOAxVg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2oUwOAxVg .nav-link {
  position: relative;
  mix-blend-mode: difference !important;
}
.cid-u2oUwOAxVg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-u2oUwOAxVg .container {
    flex-wrap: wrap;
  }
}
.cid-u2oUwOAxVg .container-fluid {
  flex-wrap: nowrap;
  mix-blend-mode: difference;
}
@media (max-width: 991px) {
  .cid-u2oUwOAxVg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2oUwOAxVg .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2oUwOAxVg .dropdown-menu,
.cid-u2oUwOAxVg .navbar.opened {
  background: #232323 !important;
}
.cid-u2oUwOAxVg .nav-item:focus,
.cid-u2oUwOAxVg .nav-link:focus {
  outline: none;
}
.cid-u2oUwOAxVg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2oUwOAxVg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2oUwOAxVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2oUwOAxVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2oUwOAxVg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2oUwOAxVg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2oUwOAxVg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(35, 35, 35, 0);
}
.cid-u2oUwOAxVg .navbar.opened {
  transition: all 0.3s;
}
.cid-u2oUwOAxVg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2oUwOAxVg .navbar .navbar-logo img {
  width: auto;
}
.cid-u2oUwOAxVg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2oUwOAxVg .navbar.collapsed {
  justify-content: center;
}
.cid-u2oUwOAxVg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2oUwOAxVg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u2oUwOAxVg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2oUwOAxVg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2oUwOAxVg .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-u2oUwOAxVg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2oUwOAxVg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2oUwOAxVg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2oUwOAxVg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2oUwOAxVg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2oUwOAxVg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2oUwOAxVg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2oUwOAxVg .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-u2oUwOAxVg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2oUwOAxVg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2oUwOAxVg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2oUwOAxVg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2oUwOAxVg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2oUwOAxVg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2oUwOAxVg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2oUwOAxVg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2oUwOAxVg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2oUwOAxVg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2oUwOAxVg .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-u2oUwOAxVg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2oUwOAxVg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2oUwOAxVg .dropdown-item.active,
.cid-u2oUwOAxVg .dropdown-item:active {
  background-color: transparent;
}
.cid-u2oUwOAxVg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2oUwOAxVg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2oUwOAxVg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2oUwOAxVg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-u2oUwOAxVg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2oUwOAxVg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2oUwOAxVg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2oUwOAxVg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2oUwOAxVg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2oUwOAxVg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u2oUwOAxVg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2oUwOAxVg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2oUwOAxVg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2oUwOAxVg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2oUwOAxVg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2oUwOAxVg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2oUwOAxVg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2oUwOAxVg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2oUwOAxVg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
  color: #232323;
}
.cid-u2oUwOAxVg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2oUwOAxVg .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-u2oUwOAxVg .navbar {
    height: 70px;
  }
  .cid-u2oUwOAxVg .navbar.opened {
    height: auto;
  }
  .cid-u2oUwOAxVg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2oUwPc7WF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2oUwPc7WF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/eumart-poster.jpg");
}
.cid-u2oUwProbD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f5f5f5;
}
.cid-u2oUwProbD .mbr-section-subtitle {
  color: #232323;
}
.cid-u2oUwProbD .mbr-text {
  color: #232323;
}
.cid-u2oUwQgmmf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u2oUwQgmmf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2oUwQgmmf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2oUwQgmmf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2oUwQgmmf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2oUwQgmmf .row {
    text-align: center;
  }
  .cid-u2oUwQgmmf .social-row {
    justify-content: center;
  }
}
.cid-u2oUwQgmmf .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u2oUwQgmmf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2oUwQgmmf .list {
    margin-bottom: 0rem;
  }
}
.cid-u2oUwQgmmf .mbr-text {
  color: #bbbbbb;
}
.cid-u2oUwQgmmf .mbr-iconfont {
  color: black;
}
