.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.5rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.32rem;
    font-size: calc( 0.79rem + (0.4 - 0.79) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.79rem + (0.4 - 0.79) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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: #4116ea !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #4479d9 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4116ea !important;
  border-color: #4116ea !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2b0e9b !important;
  border-color: #2b0e9b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2b0e9b !important;
  border-color: #2b0e9b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #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: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !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: #4116ea;
  color: #4116ea;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2b0e9b !important;
  background-color: transparent!important;
  border-color: #2b0e9b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4116ea !important;
  border-color: #4116ea !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #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: #4479d9;
  color: #4479d9;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #4116ea !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #4479d9 !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: #270d8d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #1f4a98 !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: #4116ea;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #4479d9;
}
.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: #4116ea;
  border-color: #4116ea;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4116ea;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dad1fb;
}
.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: #eef2fb;
}
.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: 'Jost', sans-serif;
  font-size: 0.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.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: #4116ea !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 0.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.5rem;
}
blockquote {
  border-color: #4116ea;
}
/* 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: #4116ea;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4116ea;
}
.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: #4116ea;
  border-bottom-color: #4116ea;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4116ea !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%234116ea' %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-s48MCQYojq {
  background-image: url("../../../assets/images/whatsapp-image-2022-10-16-at-10.48.36-1154x731.jpg");
}
.cid-s48MCQYojq .mbr-section-title {
  text-align: center;
}
.cid-s48MCQYojq .mbr-text,
.cid-s48MCQYojq .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-s48MCQYojq .mbr-section-title,
  .cid-s48MCQYojq .mbr-section-btn,
  .cid-s48MCQYojq .mbr-text {
    text-align: center;
  }
}
.cid-s48udlf8KU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s48udlf8KU .mbr-section-title {
  text-align: left;
}
.cid-s48udlf8KU .mbr-section-subtitle {
  text-align: left;
}
.cid-t7Yy36T7Y3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7Yy36T7Y3 img,
.cid-t7Yy36T7Y3 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t7Yy36T7Y3 .item:focus,
.cid-t7Yy36T7Y3 span:focus {
  outline: none;
}
.cid-t7Yy36T7Y3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-t7Yy36T7Y3 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t7Yy36T7Y3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t7Yy36T7Y3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t7Yy36T7Y3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t7Yy36T7Y3 .mbr-section-title {
  color: #232323;
}
.cid-t7YRY6MBqi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7YRY6MBqi img,
.cid-t7YRY6MBqi .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t7YRY6MBqi .item:focus,
.cid-t7YRY6MBqi span:focus {
  outline: none;
}
.cid-t7YRY6MBqi .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-t7YRY6MBqi .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t7YRY6MBqi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t7YRY6MBqi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t7YRY6MBqi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t7YRY6MBqi .mbr-section-title {
  color: #232323;
}
.cid-s48vaXqeL6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s48vaXqeL6 .mbr-section-title {
  text-align: left;
}
.cid-s48vaXqeL6 .mbr-section-subtitle {
  text-align: left;
}
.cid-s48vnjULo4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s48vnjULo4 .mbr-section-title {
  text-align: left;
}
.cid-s48vnjULo4 .mbr-section-subtitle {
  text-align: left;
}
.cid-s48vrXhP0J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-s48vrXhP0J .mbr-section-title {
  text-align: left;
}
.cid-s48vrXhP0J .mbr-section-subtitle {
  text-align: left;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t7YqRZchbK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t7YqRZchbK .mbr-section-title {
  text-align: left;
}
.cid-t7YqRZchbK .mbr-section-subtitle {
  text-align: left;
}
.cid-t7YVLCMswH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t7YVLCMswH .mbr-section-title {
  text-align: left;
}
.cid-t7YVLCMswH .mbr-section-subtitle {
  text-align: left;
}
.cid-t7YrzRQs3g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7YrzRQs3g .mbr-section-title {
  text-align: left;
}
.cid-t7YrzRQs3g .mbr-section-subtitle {
  text-align: left;
}
.cid-t7YTYo9ckj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t7YTYo9ckj .mbr-section-title {
  text-align: left;
}
.cid-t7YTYo9ckj .mbr-section-subtitle {
  text-align: left;
}
.cid-tkqJHu3DKR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tkqJHu3DKR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkqJHu3DKR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkqJHu3DKR .google-map {
  height: 30rem;
  position: relative;
}
.cid-tkqJHu3DKR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tkqJHu3DKR .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tkqJHu3DKR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tkqJHu3DKR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t8xs6udrlr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t8xs6udrlr nav.navbar {
  position: fixed;
}
.cid-t8xs6udrlr .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-t8xs6udrlr .dropdown-menu {
  padding: 0;
}
.cid-t8xs6udrlr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8xs6udrlr .dropdown-item:hover,
.cid-t8xs6udrlr .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-t8xs6udrlr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8xs6udrlr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8xs6udrlr .nav-link {
  position: relative;
}
.cid-t8xs6udrlr .container {
  display: flex;
  margin: auto;
}
.cid-t8xs6udrlr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8xs6udrlr .navbar-caption {
  padding-right: 4rem;
}
.cid-t8xs6udrlr .dropdown-menu,
.cid-t8xs6udrlr .navbar.opened {
  background: #ffffff !important;
}
.cid-t8xs6udrlr .nav-item:focus,
.cid-t8xs6udrlr .nav-link:focus {
  outline: none;
}
.cid-t8xs6udrlr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8xs6udrlr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8xs6udrlr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8xs6udrlr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8xs6udrlr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8xs6udrlr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8xs6udrlr .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t8xs6udrlr .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8xs6udrlr .navbar.opened {
  transition: all .3s;
}
.cid-t8xs6udrlr .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8xs6udrlr .navbar .navbar-logo img {
  width: auto;
}
.cid-t8xs6udrlr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8xs6udrlr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8xs6udrlr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8xs6udrlr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8xs6udrlr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8xs6udrlr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8xs6udrlr .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: 55%;
}
.cid-t8xs6udrlr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8xs6udrlr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8xs6udrlr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8xs6udrlr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8xs6udrlr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8xs6udrlr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8xs6udrlr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8xs6udrlr .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: 55%;
  }
  .cid-t8xs6udrlr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8xs6udrlr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8xs6udrlr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8xs6udrlr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8xs6udrlr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8xs6udrlr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8xs6udrlr .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8xs6udrlr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8xs6udrlr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8xs6udrlr .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8xs6udrlr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8xs6udrlr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8xs6udrlr .dropdown-item.active,
.cid-t8xs6udrlr .dropdown-item:active {
  background-color: transparent;
}
.cid-t8xs6udrlr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8xs6udrlr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8xs6udrlr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8xs6udrlr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8xs6udrlr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8xs6udrlr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8xs6udrlr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8xs6udrlr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8xs6udrlr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8xs6udrlr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8xs6udrlr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8xs6udrlr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8xs6udrlr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8xs6udrlr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8xs6udrlr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8xs6udrlr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8xs6udrlr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8xs6udrlr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8xs6udrlr .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t8xs6udrlr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8xs6udrlr .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-t8xs6udrlr .navbar {
    height: 77px;
  }
  .cid-t8xs6udrlr .navbar.opened {
    height: auto;
  }
  .cid-t8xs6udrlr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8xs6vlmUd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-t8xs6vlmUd .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xs6vlmUd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8xs6vlmUd .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t8xs6vlmUd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8xs6vlmUd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t8xs6vlmUd .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-t8xs6vlmUd .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8xs6vlmUd .mbr-section-title {
  color: #fafafa;
}
.cid-t8xs6vlmUd .mbr-text,
.cid-t8xs6vlmUd .mbr-section-btn {
  color: #fafafa;
}
.cid-t8xs6vOKlP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8xs6vOKlP .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xs6vOKlP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8xs6vOKlP .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8xs6vOKlP .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8xs6vOKlP .item-wrapper {
  position: relative;
}
.cid-t8xs6vOKlP .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8xs6vOKlP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8xs6vOKlP .carousel-control,
.cid-t8xs6vOKlP .close {
  background: #1b1b1b;
}
.cid-t8xs6vOKlP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8xs6vOKlP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8xs6vOKlP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8xs6vOKlP .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8xs6vOKlP .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-t8xs6vOKlP .close::before {
  content: '\e91a';
}
.cid-t8xs6vOKlP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8xs6vOKlP .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-t8xs6vOKlP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xs6vOKlP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8xs6vOKlP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8xs6vOKlP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8xs6vOKlP .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-t8xs6vOKlP .carousel-indicators li.active,
.cid-t8xs6vOKlP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8xs6vOKlP .carousel-indicators li::after,
.cid-t8xs6vOKlP .carousel-indicators li::before {
  content: none;
}
.cid-t8xs6vOKlP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8xs6vOKlP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8xs6vOKlP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8xs6vOKlP .carousel-indicators {
    display: none;
  }
}
.cid-t8xs6vOKlP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8xs6vOKlP .carousel-inner > .active {
  display: block;
}
.cid-t8xs6vOKlP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xs6vOKlP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8xs6vOKlP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8xs6vOKlP .carousel-control,
  .cid-t8xs6vOKlP .carousel-indicators,
  .cid-t8xs6vOKlP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8xs6vOKlP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8xs6vOKlP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8xs6vOKlP .carousel-indicators .active,
.cid-t8xs6vOKlP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8xs6vOKlP .carousel-indicators .active {
  background: #fff;
}
.cid-t8xs6vOKlP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8xs6vOKlP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8xs6vOKlP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8xs6vOKlP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8xs6vOKlP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8xs6vOKlP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8xs6vOKlP .carousel {
  width: 100%;
}
.cid-t8xs6vOKlP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8xs6vOKlP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8xs6vOKlP .modal.fade .modal-dialog,
.cid-t8xs6vOKlP .modal.in .modal-dialog {
  transform: none;
}
.cid-t8xs6vOKlP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8xs6vOKlP H6 {
  text-align: center;
}
.cid-t8xs6wrzhD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8xs6wrzhD .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xs6wrzhD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8xs6wrzhD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8xs6wrzhD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8xs6wrzhD .item-wrapper {
  position: relative;
}
.cid-t8xs6wrzhD .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8xs6wrzhD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8xs6wrzhD .carousel-control,
.cid-t8xs6wrzhD .close {
  background: #1b1b1b;
}
.cid-t8xs6wrzhD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8xs6wrzhD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8xs6wrzhD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8xs6wrzhD .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8xs6wrzhD .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-t8xs6wrzhD .close::before {
  content: '\e91a';
}
.cid-t8xs6wrzhD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8xs6wrzhD .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-t8xs6wrzhD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xs6wrzhD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8xs6wrzhD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8xs6wrzhD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8xs6wrzhD .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-t8xs6wrzhD .carousel-indicators li.active,
.cid-t8xs6wrzhD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8xs6wrzhD .carousel-indicators li::after,
.cid-t8xs6wrzhD .carousel-indicators li::before {
  content: none;
}
.cid-t8xs6wrzhD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8xs6wrzhD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8xs6wrzhD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8xs6wrzhD .carousel-indicators {
    display: none;
  }
}
.cid-t8xs6wrzhD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8xs6wrzhD .carousel-inner > .active {
  display: block;
}
.cid-t8xs6wrzhD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xs6wrzhD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8xs6wrzhD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8xs6wrzhD .carousel-control,
  .cid-t8xs6wrzhD .carousel-indicators,
  .cid-t8xs6wrzhD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8xs6wrzhD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8xs6wrzhD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8xs6wrzhD .carousel-indicators .active,
.cid-t8xs6wrzhD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8xs6wrzhD .carousel-indicators .active {
  background: #fff;
}
.cid-t8xs6wrzhD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8xs6wrzhD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8xs6wrzhD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8xs6wrzhD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8xs6wrzhD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8xs6wrzhD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8xs6wrzhD .carousel {
  width: 100%;
}
.cid-t8xs6wrzhD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8xs6wrzhD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8xs6wrzhD .modal.fade .modal-dialog,
.cid-t8xs6wrzhD .modal.in .modal-dialog {
  transform: none;
}
.cid-t8xs6wrzhD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8xs6wrzhD H6 {
  text-align: center;
}
.cid-t8xs6x02rX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8xs6x02rX .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xs6x02rX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8xs6x02rX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8xs6x02rX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8xs6x02rX .item-wrapper {
  position: relative;
}
.cid-t8xs6x02rX .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8xs6x02rX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8xs6x02rX .carousel-control,
.cid-t8xs6x02rX .close {
  background: #1b1b1b;
}
.cid-t8xs6x02rX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8xs6x02rX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8xs6x02rX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8xs6x02rX .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8xs6x02rX .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-t8xs6x02rX .close::before {
  content: '\e91a';
}
.cid-t8xs6x02rX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8xs6x02rX .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-t8xs6x02rX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xs6x02rX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8xs6x02rX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8xs6x02rX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8xs6x02rX .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-t8xs6x02rX .carousel-indicators li.active,
.cid-t8xs6x02rX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8xs6x02rX .carousel-indicators li::after,
.cid-t8xs6x02rX .carousel-indicators li::before {
  content: none;
}
.cid-t8xs6x02rX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8xs6x02rX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8xs6x02rX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8xs6x02rX .carousel-indicators {
    display: none;
  }
}
.cid-t8xs6x02rX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8xs6x02rX .carousel-inner > .active {
  display: block;
}
.cid-t8xs6x02rX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xs6x02rX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8xs6x02rX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8xs6x02rX .carousel-control,
  .cid-t8xs6x02rX .carousel-indicators,
  .cid-t8xs6x02rX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8xs6x02rX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8xs6x02rX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8xs6x02rX .carousel-indicators .active,
.cid-t8xs6x02rX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8xs6x02rX .carousel-indicators .active {
  background: #fff;
}
.cid-t8xs6x02rX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8xs6x02rX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8xs6x02rX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8xs6x02rX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8xs6x02rX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8xs6x02rX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8xs6x02rX .carousel {
  width: 100%;
}
.cid-t8xs6x02rX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8xs6x02rX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8xs6x02rX .modal.fade .modal-dialog,
.cid-t8xs6x02rX .modal.in .modal-dialog {
  transform: none;
}
.cid-t8xs6x02rX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8xs6x02rX H6 {
  text-align: center;
}
.cid-t8xs6xzqu8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-t8xs6xzqu8 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8xs6xzqu8 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8xs6xzqu8 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8xs6xzqu8 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8xs6xzqu8 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8xs6xzqu8 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8xs6xzqu8 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t8xs6xzqu8 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8xs6xzqu8 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8xs6xzqu8 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8xs6xzqu8 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8xs6xzqu8 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8xs6xzqu8 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8xs6xzqu8 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t8xHvgSy1V {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t8xHvgSy1V nav.navbar {
  position: fixed;
}
.cid-t8xHvgSy1V .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-t8xHvgSy1V .dropdown-menu {
  padding: 0;
}
.cid-t8xHvgSy1V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8xHvgSy1V .dropdown-item:hover,
.cid-t8xHvgSy1V .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-t8xHvgSy1V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8xHvgSy1V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8xHvgSy1V .nav-link {
  position: relative;
}
.cid-t8xHvgSy1V .container {
  display: flex;
  margin: auto;
}
.cid-t8xHvgSy1V .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8xHvgSy1V .navbar-caption {
  padding-right: 4rem;
}
.cid-t8xHvgSy1V .dropdown-menu,
.cid-t8xHvgSy1V .navbar.opened {
  background: #ffffff !important;
}
.cid-t8xHvgSy1V .nav-item:focus,
.cid-t8xHvgSy1V .nav-link:focus {
  outline: none;
}
.cid-t8xHvgSy1V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8xHvgSy1V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8xHvgSy1V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8xHvgSy1V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8xHvgSy1V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8xHvgSy1V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8xHvgSy1V .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t8xHvgSy1V .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8xHvgSy1V .navbar.opened {
  transition: all .3s;
}
.cid-t8xHvgSy1V .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8xHvgSy1V .navbar .navbar-logo img {
  width: auto;
}
.cid-t8xHvgSy1V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8xHvgSy1V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8xHvgSy1V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8xHvgSy1V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8xHvgSy1V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8xHvgSy1V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8xHvgSy1V .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: 55%;
}
.cid-t8xHvgSy1V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8xHvgSy1V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8xHvgSy1V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8xHvgSy1V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8xHvgSy1V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8xHvgSy1V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8xHvgSy1V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8xHvgSy1V .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: 55%;
  }
  .cid-t8xHvgSy1V .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8xHvgSy1V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8xHvgSy1V .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8xHvgSy1V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8xHvgSy1V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8xHvgSy1V .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8xHvgSy1V .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8xHvgSy1V .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8xHvgSy1V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8xHvgSy1V .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8xHvgSy1V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8xHvgSy1V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8xHvgSy1V .dropdown-item.active,
.cid-t8xHvgSy1V .dropdown-item:active {
  background-color: transparent;
}
.cid-t8xHvgSy1V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8xHvgSy1V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8xHvgSy1V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8xHvgSy1V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8xHvgSy1V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8xHvgSy1V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8xHvgSy1V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8xHvgSy1V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8xHvgSy1V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8xHvgSy1V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8xHvgSy1V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8xHvgSy1V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8xHvgSy1V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8xHvgSy1V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8xHvgSy1V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8xHvgSy1V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8xHvgSy1V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8xHvgSy1V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8xHvgSy1V .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t8xHvgSy1V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8xHvgSy1V .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-t8xHvgSy1V .navbar {
    height: 77px;
  }
  .cid-t8xHvgSy1V .navbar.opened {
    height: auto;
  }
  .cid-t8xHvgSy1V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8xHvhUlGG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-t8xHvhUlGG .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xHvhUlGG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8xHvhUlGG .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t8xHvhUlGG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8xHvhUlGG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t8xHvhUlGG .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-t8xHvhUlGG .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8xHvhUlGG .mbr-section-title {
  color: #fafafa;
}
.cid-t8xHvhUlGG .mbr-text,
.cid-t8xHvhUlGG .mbr-section-btn {
  color: #fafafa;
}
.cid-t8xHvisQJa {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8xHvisQJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xHvisQJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8xHvisQJa .item {
  padding-bottom: 2rem;
}
.cid-t8xHvisQJa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t8xHvisQJa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t8xHvisQJa .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8xHvisQJa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8xHvisQJa .carousel-control,
.cid-t8xHvisQJa .close {
  background: #1b1b1b;
}
.cid-t8xHvisQJa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8xHvisQJa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8xHvisQJa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8xHvisQJa .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8xHvisQJa .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-t8xHvisQJa .close::before {
  content: '\e91a';
}
.cid-t8xHvisQJa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8xHvisQJa .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-t8xHvisQJa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xHvisQJa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8xHvisQJa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8xHvisQJa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8xHvisQJa .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-t8xHvisQJa .carousel-indicators li.active,
.cid-t8xHvisQJa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8xHvisQJa .carousel-indicators li::after,
.cid-t8xHvisQJa .carousel-indicators li::before {
  content: none;
}
.cid-t8xHvisQJa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8xHvisQJa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8xHvisQJa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8xHvisQJa .carousel-indicators {
    display: none;
  }
}
.cid-t8xHvisQJa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8xHvisQJa .carousel-inner > .active {
  display: block;
}
.cid-t8xHvisQJa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xHvisQJa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8xHvisQJa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8xHvisQJa .carousel-control,
  .cid-t8xHvisQJa .carousel-indicators,
  .cid-t8xHvisQJa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8xHvisQJa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8xHvisQJa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8xHvisQJa .carousel-indicators .active,
.cid-t8xHvisQJa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8xHvisQJa .carousel-indicators .active {
  background: #fff;
}
.cid-t8xHvisQJa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8xHvisQJa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8xHvisQJa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8xHvisQJa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8xHvisQJa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8xHvisQJa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8xHvisQJa .carousel {
  width: 100%;
}
.cid-t8xHvisQJa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8xHvisQJa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8xHvisQJa .modal.fade .modal-dialog,
.cid-t8xHvisQJa .modal.in .modal-dialog {
  transform: none;
}
.cid-t8xHvisQJa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8xHvisQJa H6 {
  text-align: center;
}
.cid-t8xQtnRyWH {
  background-color: #ffffff;
}
.cid-t8xQtnRyWH .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xQtnRyWH .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-t8xQtnRyWH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8xQtnRyWH .row {
  flex-direction: row-reverse;
}
.cid-t8xQtnRyWH img {
  width: 100%;
}
.cid-t8xHvjKPZE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8xHvjKPZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xHvjKPZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8xHvjKPZE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8xHvjKPZE .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8xHvjKPZE .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t8xHvjKPZE .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t8xHvjKPZE .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8xHvjKPZE .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8xHvjKPZE .carousel-control,
.cid-t8xHvjKPZE .close {
  background: #1b1b1b;
}
.cid-t8xHvjKPZE .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8xHvjKPZE .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8xHvjKPZE .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8xHvjKPZE .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8xHvjKPZE .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-t8xHvjKPZE .close::before {
  content: '\e91a';
}
.cid-t8xHvjKPZE .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8xHvjKPZE .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-t8xHvjKPZE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xHvjKPZE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8xHvjKPZE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8xHvjKPZE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8xHvjKPZE .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-t8xHvjKPZE .carousel-indicators li.active,
.cid-t8xHvjKPZE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8xHvjKPZE .carousel-indicators li::after,
.cid-t8xHvjKPZE .carousel-indicators li::before {
  content: none;
}
.cid-t8xHvjKPZE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8xHvjKPZE .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8xHvjKPZE .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8xHvjKPZE .carousel-indicators {
    display: none;
  }
}
.cid-t8xHvjKPZE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8xHvjKPZE .carousel-inner > .active {
  display: block;
}
.cid-t8xHvjKPZE .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8xHvjKPZE .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8xHvjKPZE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8xHvjKPZE .carousel-control,
  .cid-t8xHvjKPZE .carousel-indicators,
  .cid-t8xHvjKPZE .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8xHvjKPZE .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8xHvjKPZE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8xHvjKPZE .carousel-indicators .active,
.cid-t8xHvjKPZE .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8xHvjKPZE .carousel-indicators .active {
  background: #fff;
}
.cid-t8xHvjKPZE .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8xHvjKPZE .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8xHvjKPZE .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8xHvjKPZE .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8xHvjKPZE .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8xHvjKPZE .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8xHvjKPZE .carousel {
  width: 100%;
}
.cid-t8xHvjKPZE .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8xHvjKPZE .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8xHvjKPZE .modal.fade .modal-dialog,
.cid-t8xHvjKPZE .modal.in .modal-dialog {
  transform: none;
}
.cid-t8xHvjKPZE .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8xHvjKPZE H6 {
  text-align: center;
}
.cid-t8xRBqfAEA {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t8xRBqfAEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8xRBqfAEA .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-t8xRBqfAEA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t8xRBqfAEA .row {
  flex-direction: row-reverse;
}
.cid-t8xRBqfAEA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8xRBqfAEA .text-wrapper {
    padding: 2rem;
  }
}
.cid-t8xHvkcqKC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-t8xHvkcqKC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8xHvkcqKC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8xHvkcqKC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8xHvkcqKC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8xHvkcqKC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8xHvkcqKC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8xHvkcqKC .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t8xHvkcqKC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8xHvkcqKC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8xHvkcqKC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8xHvkcqKC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8xHvkcqKC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8xHvkcqKC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8xHvkcqKC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t8NHPfmTBS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t8NHPfmTBS nav.navbar {
  position: fixed;
}
.cid-t8NHPfmTBS .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-t8NHPfmTBS .dropdown-menu {
  padding: 0;
}
.cid-t8NHPfmTBS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8NHPfmTBS .dropdown-item:hover,
.cid-t8NHPfmTBS .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-t8NHPfmTBS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8NHPfmTBS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8NHPfmTBS .nav-link {
  position: relative;
}
.cid-t8NHPfmTBS .container {
  display: flex;
  margin: auto;
}
.cid-t8NHPfmTBS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8NHPfmTBS .navbar-caption {
  padding-right: 4rem;
}
.cid-t8NHPfmTBS .dropdown-menu,
.cid-t8NHPfmTBS .navbar.opened {
  background: #ffffff !important;
}
.cid-t8NHPfmTBS .nav-item:focus,
.cid-t8NHPfmTBS .nav-link:focus {
  outline: none;
}
.cid-t8NHPfmTBS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8NHPfmTBS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8NHPfmTBS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8NHPfmTBS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8NHPfmTBS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8NHPfmTBS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8NHPfmTBS .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t8NHPfmTBS .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8NHPfmTBS .navbar.opened {
  transition: all .3s;
}
.cid-t8NHPfmTBS .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8NHPfmTBS .navbar .navbar-logo img {
  width: auto;
}
.cid-t8NHPfmTBS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8NHPfmTBS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8NHPfmTBS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8NHPfmTBS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8NHPfmTBS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8NHPfmTBS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8NHPfmTBS .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: 55%;
}
.cid-t8NHPfmTBS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8NHPfmTBS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8NHPfmTBS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8NHPfmTBS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8NHPfmTBS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8NHPfmTBS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8NHPfmTBS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8NHPfmTBS .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: 55%;
  }
  .cid-t8NHPfmTBS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8NHPfmTBS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8NHPfmTBS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8NHPfmTBS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8NHPfmTBS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8NHPfmTBS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8NHPfmTBS .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8NHPfmTBS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8NHPfmTBS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8NHPfmTBS .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8NHPfmTBS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8NHPfmTBS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8NHPfmTBS .dropdown-item.active,
.cid-t8NHPfmTBS .dropdown-item:active {
  background-color: transparent;
}
.cid-t8NHPfmTBS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8NHPfmTBS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8NHPfmTBS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8NHPfmTBS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8NHPfmTBS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8NHPfmTBS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8NHPfmTBS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8NHPfmTBS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8NHPfmTBS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8NHPfmTBS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8NHPfmTBS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8NHPfmTBS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8NHPfmTBS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8NHPfmTBS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8NHPfmTBS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8NHPfmTBS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8NHPfmTBS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8NHPfmTBS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8NHPfmTBS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t8NHPfmTBS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8NHPfmTBS .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-t8NHPfmTBS .navbar {
    height: 77px;
  }
  .cid-t8NHPfmTBS .navbar.opened {
    height: auto;
  }
  .cid-t8NHPfmTBS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8NHPgB3Ca {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-t8NHPgB3Ca .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8NHPgB3Ca .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8NHPgB3Ca .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t8NHPgB3Ca .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8NHPgB3Ca .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t8NHPgB3Ca .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-t8NHPgB3Ca .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8NHPgB3Ca .mbr-section-title {
  color: #fafafa;
}
.cid-t8NHPgB3Ca .mbr-text,
.cid-t8NHPgB3Ca .mbr-section-btn {
  color: #fafafa;
}
.cid-t8NHPhsY1L {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8NHPhsY1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8NHPhsY1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8NHPhsY1L .item {
  padding-bottom: 2rem;
}
.cid-t8NHPhsY1L .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t8NHPhsY1L .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t8NHPhsY1L .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8NHPhsY1L .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8NHPhsY1L .carousel-control,
.cid-t8NHPhsY1L .close {
  background: #1b1b1b;
}
.cid-t8NHPhsY1L .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8NHPhsY1L .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8NHPhsY1L .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8NHPhsY1L .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8NHPhsY1L .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-t8NHPhsY1L .close::before {
  content: '\e91a';
}
.cid-t8NHPhsY1L .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8NHPhsY1L .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-t8NHPhsY1L .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8NHPhsY1L .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8NHPhsY1L .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8NHPhsY1L .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8NHPhsY1L .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-t8NHPhsY1L .carousel-indicators li.active,
.cid-t8NHPhsY1L .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8NHPhsY1L .carousel-indicators li::after,
.cid-t8NHPhsY1L .carousel-indicators li::before {
  content: none;
}
.cid-t8NHPhsY1L .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8NHPhsY1L .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8NHPhsY1L .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8NHPhsY1L .carousel-indicators {
    display: none;
  }
}
.cid-t8NHPhsY1L .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8NHPhsY1L .carousel-inner > .active {
  display: block;
}
.cid-t8NHPhsY1L .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8NHPhsY1L .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8NHPhsY1L .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8NHPhsY1L .carousel-control,
  .cid-t8NHPhsY1L .carousel-indicators,
  .cid-t8NHPhsY1L .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8NHPhsY1L .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8NHPhsY1L .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8NHPhsY1L .carousel-indicators .active,
.cid-t8NHPhsY1L .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8NHPhsY1L .carousel-indicators .active {
  background: #fff;
}
.cid-t8NHPhsY1L .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8NHPhsY1L .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8NHPhsY1L .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8NHPhsY1L .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8NHPhsY1L .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8NHPhsY1L .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8NHPhsY1L .carousel {
  width: 100%;
}
.cid-t8NHPhsY1L .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8NHPhsY1L .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8NHPhsY1L .modal.fade .modal-dialog,
.cid-t8NHPhsY1L .modal.in .modal-dialog {
  transform: none;
}
.cid-t8NHPhsY1L .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8NHPhsY1L H6 {
  text-align: center;
}
.cid-t8NHPi9JM5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8NHPi9JM5 img,
.cid-t8NHPi9JM5 .item-img {
  width: 100%;
}
.cid-t8NHPi9JM5 .item:focus,
.cid-t8NHPi9JM5 span:focus {
  outline: none;
}
.cid-t8NHPi9JM5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8NHPi9JM5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8NHPi9JM5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8NHPi9JM5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8NHPi9JM5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8NHPi9JM5 .mbr-section-title {
  color: #232323;
}
.cid-t8NHPi9JM5 .mbr-text,
.cid-t8NHPi9JM5 .mbr-section-btn {
  text-align: left;
}
.cid-t8NHPi9JM5 .item-title {
  text-align: left;
}
.cid-t8NHPi9JM5 .item-subtitle {
  text-align: center;
}
.cid-t8NHPiByUC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-t8NHPiByUC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8NHPiByUC .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8NHPiByUC .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8NHPiByUC .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8NHPiByUC .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8NHPiByUC .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8NHPiByUC .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t8NHPiByUC .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8NHPiByUC .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8NHPiByUC .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8NHPiByUC .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8NHPiByUC .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8NHPiByUC .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8NHPiByUC .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t8lGOEKmCP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t8lGOEKmCP nav.navbar {
  position: fixed;
}
.cid-t8lGOEKmCP .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-t8lGOEKmCP .dropdown-menu {
  padding: 0;
}
.cid-t8lGOEKmCP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8lGOEKmCP .dropdown-item:hover,
.cid-t8lGOEKmCP .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-t8lGOEKmCP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8lGOEKmCP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8lGOEKmCP .nav-link {
  position: relative;
}
.cid-t8lGOEKmCP .container {
  display: flex;
  margin: auto;
}
.cid-t8lGOEKmCP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8lGOEKmCP .navbar-caption {
  padding-right: 4rem;
}
.cid-t8lGOEKmCP .dropdown-menu,
.cid-t8lGOEKmCP .navbar.opened {
  background: #ffffff !important;
}
.cid-t8lGOEKmCP .nav-item:focus,
.cid-t8lGOEKmCP .nav-link:focus {
  outline: none;
}
.cid-t8lGOEKmCP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8lGOEKmCP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8lGOEKmCP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8lGOEKmCP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8lGOEKmCP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8lGOEKmCP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8lGOEKmCP .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t8lGOEKmCP .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8lGOEKmCP .navbar.opened {
  transition: all .3s;
}
.cid-t8lGOEKmCP .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8lGOEKmCP .navbar .navbar-logo img {
  width: auto;
}
.cid-t8lGOEKmCP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8lGOEKmCP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8lGOEKmCP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8lGOEKmCP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8lGOEKmCP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8lGOEKmCP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8lGOEKmCP .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: 55%;
}
.cid-t8lGOEKmCP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8lGOEKmCP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8lGOEKmCP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8lGOEKmCP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8lGOEKmCP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8lGOEKmCP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8lGOEKmCP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8lGOEKmCP .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: 55%;
  }
  .cid-t8lGOEKmCP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8lGOEKmCP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8lGOEKmCP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8lGOEKmCP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8lGOEKmCP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8lGOEKmCP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8lGOEKmCP .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8lGOEKmCP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8lGOEKmCP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8lGOEKmCP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8lGOEKmCP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8lGOEKmCP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8lGOEKmCP .dropdown-item.active,
.cid-t8lGOEKmCP .dropdown-item:active {
  background-color: transparent;
}
.cid-t8lGOEKmCP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8lGOEKmCP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8lGOEKmCP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8lGOEKmCP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8lGOEKmCP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8lGOEKmCP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8lGOEKmCP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8lGOEKmCP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8lGOEKmCP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8lGOEKmCP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8lGOEKmCP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8lGOEKmCP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8lGOEKmCP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8lGOEKmCP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8lGOEKmCP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8lGOEKmCP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8lGOEKmCP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8lGOEKmCP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8lGOEKmCP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t8lGOEKmCP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8lGOEKmCP .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-t8lGOEKmCP .navbar {
    height: 77px;
  }
  .cid-t8lGOEKmCP .navbar.opened {
    height: auto;
  }
  .cid-t8lGOEKmCP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8lGP60EB0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-t8lGP60EB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8lGP60EB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8lGP60EB0 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t8lGP60EB0 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8lGP60EB0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t8lGP60EB0 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-t8lGP60EB0 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8lGP60EB0 .mbr-section-title {
  color: #fafafa;
}
.cid-t8lGP60EB0 .mbr-text,
.cid-t8lGP60EB0 .mbr-section-btn {
  color: #fafafa;
}
.cid-t8lGP6tvtX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8lGP6tvtX .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8lGP6tvtX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8lGP6tvtX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8lGP6tvtX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8lGP6tvtX .item-wrapper {
  position: relative;
}
.cid-t8lGP6tvtX .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8lGP6tvtX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8lGP6tvtX .carousel-control,
.cid-t8lGP6tvtX .close {
  background: #1b1b1b;
}
.cid-t8lGP6tvtX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8lGP6tvtX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8lGP6tvtX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8lGP6tvtX .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8lGP6tvtX .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-t8lGP6tvtX .close::before {
  content: '\e91a';
}
.cid-t8lGP6tvtX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8lGP6tvtX .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-t8lGP6tvtX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lGP6tvtX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8lGP6tvtX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8lGP6tvtX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8lGP6tvtX .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-t8lGP6tvtX .carousel-indicators li.active,
.cid-t8lGP6tvtX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8lGP6tvtX .carousel-indicators li::after,
.cid-t8lGP6tvtX .carousel-indicators li::before {
  content: none;
}
.cid-t8lGP6tvtX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8lGP6tvtX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8lGP6tvtX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8lGP6tvtX .carousel-indicators {
    display: none;
  }
}
.cid-t8lGP6tvtX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8lGP6tvtX .carousel-inner > .active {
  display: block;
}
.cid-t8lGP6tvtX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lGP6tvtX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8lGP6tvtX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8lGP6tvtX .carousel-control,
  .cid-t8lGP6tvtX .carousel-indicators,
  .cid-t8lGP6tvtX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8lGP6tvtX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8lGP6tvtX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8lGP6tvtX .carousel-indicators .active,
.cid-t8lGP6tvtX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8lGP6tvtX .carousel-indicators .active {
  background: #fff;
}
.cid-t8lGP6tvtX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8lGP6tvtX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8lGP6tvtX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8lGP6tvtX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8lGP6tvtX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8lGP6tvtX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8lGP6tvtX .carousel {
  width: 100%;
}
.cid-t8lGP6tvtX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8lGP6tvtX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8lGP6tvtX .modal.fade .modal-dialog,
.cid-t8lGP6tvtX .modal.in .modal-dialog {
  transform: none;
}
.cid-t8lGP6tvtX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8lGP6tvtX H6 {
  text-align: center;
}
.cid-t8lJIYyIuZ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8lJIYyIuZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8lJIYyIuZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8lJIYyIuZ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8lJIYyIuZ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8lJIYyIuZ .item-wrapper {
  position: relative;
}
.cid-t8lJIYyIuZ .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8lJIYyIuZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8lJIYyIuZ .carousel-control,
.cid-t8lJIYyIuZ .close {
  background: #1b1b1b;
}
.cid-t8lJIYyIuZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8lJIYyIuZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8lJIYyIuZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8lJIYyIuZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8lJIYyIuZ .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-t8lJIYyIuZ .close::before {
  content: '\e91a';
}
.cid-t8lJIYyIuZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8lJIYyIuZ .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-t8lJIYyIuZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lJIYyIuZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8lJIYyIuZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8lJIYyIuZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8lJIYyIuZ .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-t8lJIYyIuZ .carousel-indicators li.active,
.cid-t8lJIYyIuZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8lJIYyIuZ .carousel-indicators li::after,
.cid-t8lJIYyIuZ .carousel-indicators li::before {
  content: none;
}
.cid-t8lJIYyIuZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8lJIYyIuZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8lJIYyIuZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8lJIYyIuZ .carousel-indicators {
    display: none;
  }
}
.cid-t8lJIYyIuZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8lJIYyIuZ .carousel-inner > .active {
  display: block;
}
.cid-t8lJIYyIuZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lJIYyIuZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8lJIYyIuZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8lJIYyIuZ .carousel-control,
  .cid-t8lJIYyIuZ .carousel-indicators,
  .cid-t8lJIYyIuZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8lJIYyIuZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8lJIYyIuZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8lJIYyIuZ .carousel-indicators .active,
.cid-t8lJIYyIuZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8lJIYyIuZ .carousel-indicators .active {
  background: #fff;
}
.cid-t8lJIYyIuZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8lJIYyIuZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8lJIYyIuZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8lJIYyIuZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8lJIYyIuZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8lJIYyIuZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8lJIYyIuZ .carousel {
  width: 100%;
}
.cid-t8lJIYyIuZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8lJIYyIuZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8lJIYyIuZ .modal.fade .modal-dialog,
.cid-t8lJIYyIuZ .modal.in .modal-dialog {
  transform: none;
}
.cid-t8lJIYyIuZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8lJIYyIuZ H6 {
  text-align: center;
}
.cid-t8lKaiXB1H {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8lKaiXB1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8lKaiXB1H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8lKaiXB1H .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8lKaiXB1H .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8lKaiXB1H .item-wrapper {
  position: relative;
}
.cid-t8lKaiXB1H .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8lKaiXB1H .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8lKaiXB1H .carousel-control,
.cid-t8lKaiXB1H .close {
  background: #1b1b1b;
}
.cid-t8lKaiXB1H .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8lKaiXB1H .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8lKaiXB1H .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8lKaiXB1H .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8lKaiXB1H .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-t8lKaiXB1H .close::before {
  content: '\e91a';
}
.cid-t8lKaiXB1H .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8lKaiXB1H .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-t8lKaiXB1H .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lKaiXB1H .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8lKaiXB1H .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8lKaiXB1H .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8lKaiXB1H .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-t8lKaiXB1H .carousel-indicators li.active,
.cid-t8lKaiXB1H .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8lKaiXB1H .carousel-indicators li::after,
.cid-t8lKaiXB1H .carousel-indicators li::before {
  content: none;
}
.cid-t8lKaiXB1H .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8lKaiXB1H .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8lKaiXB1H .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8lKaiXB1H .carousel-indicators {
    display: none;
  }
}
.cid-t8lKaiXB1H .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8lKaiXB1H .carousel-inner > .active {
  display: block;
}
.cid-t8lKaiXB1H .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lKaiXB1H .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8lKaiXB1H .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8lKaiXB1H .carousel-control,
  .cid-t8lKaiXB1H .carousel-indicators,
  .cid-t8lKaiXB1H .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8lKaiXB1H .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8lKaiXB1H .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8lKaiXB1H .carousel-indicators .active,
.cid-t8lKaiXB1H .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8lKaiXB1H .carousel-indicators .active {
  background: #fff;
}
.cid-t8lKaiXB1H .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8lKaiXB1H .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8lKaiXB1H .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8lKaiXB1H .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8lKaiXB1H .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8lKaiXB1H .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8lKaiXB1H .carousel {
  width: 100%;
}
.cid-t8lKaiXB1H .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8lKaiXB1H .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8lKaiXB1H .modal.fade .modal-dialog,
.cid-t8lKaiXB1H .modal.in .modal-dialog {
  transform: none;
}
.cid-t8lKaiXB1H .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8lKaiXB1H H6 {
  text-align: center;
}
.cid-t8lGP7s5VB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-t8lGP7s5VB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8lGP7s5VB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8lGP7s5VB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8lGP7s5VB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8lGP7s5VB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8lGP7s5VB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8lGP7s5VB .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t8lGP7s5VB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8lGP7s5VB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8lGP7s5VB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8lGP7s5VB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8lGP7s5VB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8lGP7s5VB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8lGP7s5VB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #ffffff !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t857aCX6sw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-t857aCX6sw .mbr-fallback-image.disabled {
  display: none;
}
.cid-t857aCX6sw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t857aCX6sw .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t857aCX6sw .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t857aCX6sw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t857aCX6sw .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-t857aCX6sw .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t857aCX6sw .mbr-section-title {
  color: #fafafa;
}
.cid-t857aCX6sw .mbr-text,
.cid-t857aCX6sw .mbr-section-btn {
  color: #fafafa;
}
.cid-tePjTPLOhm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tePjTPLOhm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tePjTPLOhm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tePjTPLOhm .video-wrapper iframe {
  width: 100%;
}
.cid-tePjTPLOhm .mbr-section-title,
.cid-tePjTPLOhm .mbr-section-subtitle,
.cid-tePjTPLOhm .mbr-text {
  text-align: center;
}
.cid-t8lokLBNqb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8lokLBNqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8lokLBNqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8lokLBNqb .item {
  padding-bottom: 2rem;
}
.cid-t8lokLBNqb .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t8lokLBNqb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t8lokLBNqb .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8lokLBNqb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8lokLBNqb .carousel-control,
.cid-t8lokLBNqb .close {
  background: #1b1b1b;
}
.cid-t8lokLBNqb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8lokLBNqb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8lokLBNqb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8lokLBNqb .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8lokLBNqb .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-t8lokLBNqb .close::before {
  content: '\e91a';
}
.cid-t8lokLBNqb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8lokLBNqb .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-t8lokLBNqb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lokLBNqb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8lokLBNqb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8lokLBNqb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8lokLBNqb .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-t8lokLBNqb .carousel-indicators li.active,
.cid-t8lokLBNqb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8lokLBNqb .carousel-indicators li::after,
.cid-t8lokLBNqb .carousel-indicators li::before {
  content: none;
}
.cid-t8lokLBNqb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8lokLBNqb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8lokLBNqb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8lokLBNqb .carousel-indicators {
    display: none;
  }
}
.cid-t8lokLBNqb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8lokLBNqb .carousel-inner > .active {
  display: block;
}
.cid-t8lokLBNqb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8lokLBNqb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8lokLBNqb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8lokLBNqb .carousel-control,
  .cid-t8lokLBNqb .carousel-indicators,
  .cid-t8lokLBNqb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8lokLBNqb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8lokLBNqb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8lokLBNqb .carousel-indicators .active,
.cid-t8lokLBNqb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8lokLBNqb .carousel-indicators .active {
  background: #fff;
}
.cid-t8lokLBNqb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8lokLBNqb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8lokLBNqb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8lokLBNqb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8lokLBNqb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8lokLBNqb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8lokLBNqb .carousel {
  width: 100%;
}
.cid-t8lokLBNqb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8lokLBNqb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8lokLBNqb .modal.fade .modal-dialog,
.cid-t8lokLBNqb .modal.in .modal-dialog {
  transform: none;
}
.cid-t8lokLBNqb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8lokLBNqb H6 {
  text-align: center;
}
.cid-tcFL9AhppX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tcFL9AhppX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tcFL9AhppX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tcFL9AhppX .item {
  padding-bottom: 2rem;
}
.cid-tcFL9AhppX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tcFL9AhppX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tcFL9AhppX .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tcFL9AhppX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tcFL9AhppX .carousel-control,
.cid-tcFL9AhppX .close {
  background: #1b1b1b;
}
.cid-tcFL9AhppX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tcFL9AhppX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tcFL9AhppX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tcFL9AhppX .carousel-control-next span {
  margin-left: 5px;
}
.cid-tcFL9AhppX .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-tcFL9AhppX .close::before {
  content: '\e91a';
}
.cid-tcFL9AhppX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tcFL9AhppX .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-tcFL9AhppX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcFL9AhppX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tcFL9AhppX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tcFL9AhppX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tcFL9AhppX .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-tcFL9AhppX .carousel-indicators li.active,
.cid-tcFL9AhppX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tcFL9AhppX .carousel-indicators li::after,
.cid-tcFL9AhppX .carousel-indicators li::before {
  content: none;
}
.cid-tcFL9AhppX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tcFL9AhppX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tcFL9AhppX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tcFL9AhppX .carousel-indicators {
    display: none;
  }
}
.cid-tcFL9AhppX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tcFL9AhppX .carousel-inner > .active {
  display: block;
}
.cid-tcFL9AhppX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcFL9AhppX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcFL9AhppX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tcFL9AhppX .carousel-control,
  .cid-tcFL9AhppX .carousel-indicators,
  .cid-tcFL9AhppX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tcFL9AhppX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tcFL9AhppX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tcFL9AhppX .carousel-indicators .active,
.cid-tcFL9AhppX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tcFL9AhppX .carousel-indicators .active {
  background: #fff;
}
.cid-tcFL9AhppX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tcFL9AhppX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tcFL9AhppX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tcFL9AhppX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tcFL9AhppX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tcFL9AhppX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tcFL9AhppX .carousel {
  width: 100%;
}
.cid-tcFL9AhppX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tcFL9AhppX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tcFL9AhppX .modal.fade .modal-dialog,
.cid-tcFL9AhppX .modal.in .modal-dialog {
  transform: none;
}
.cid-tcFL9AhppX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tcFL9AhppX H6 {
  text-align: center;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tik8g5jweP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tik8g5jweP nav.navbar {
  position: fixed;
}
.cid-tik8g5jweP .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-tik8g5jweP .dropdown-menu {
  padding: 0;
}
.cid-tik8g5jweP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tik8g5jweP .dropdown-item:hover,
.cid-tik8g5jweP .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tik8g5jweP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tik8g5jweP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tik8g5jweP .nav-link {
  position: relative;
}
.cid-tik8g5jweP .container {
  display: flex;
  margin: auto;
}
.cid-tik8g5jweP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tik8g5jweP .navbar-caption {
  padding-right: 4rem;
}
.cid-tik8g5jweP .dropdown-menu,
.cid-tik8g5jweP .navbar.opened {
  background: #ffffff !important;
}
.cid-tik8g5jweP .nav-item:focus,
.cid-tik8g5jweP .nav-link:focus {
  outline: none;
}
.cid-tik8g5jweP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tik8g5jweP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tik8g5jweP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tik8g5jweP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tik8g5jweP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tik8g5jweP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tik8g5jweP .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tik8g5jweP .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tik8g5jweP .navbar.opened {
  transition: all .3s;
}
.cid-tik8g5jweP .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tik8g5jweP .navbar .navbar-logo img {
  width: auto;
}
.cid-tik8g5jweP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tik8g5jweP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tik8g5jweP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tik8g5jweP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tik8g5jweP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tik8g5jweP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tik8g5jweP .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: 55%;
}
.cid-tik8g5jweP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tik8g5jweP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tik8g5jweP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tik8g5jweP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tik8g5jweP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tik8g5jweP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tik8g5jweP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tik8g5jweP .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: 55%;
  }
  .cid-tik8g5jweP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tik8g5jweP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tik8g5jweP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tik8g5jweP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tik8g5jweP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tik8g5jweP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tik8g5jweP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tik8g5jweP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tik8g5jweP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tik8g5jweP .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tik8g5jweP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tik8g5jweP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tik8g5jweP .dropdown-item.active,
.cid-tik8g5jweP .dropdown-item:active {
  background-color: transparent;
}
.cid-tik8g5jweP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tik8g5jweP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tik8g5jweP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tik8g5jweP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tik8g5jweP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tik8g5jweP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tik8g5jweP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tik8g5jweP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tik8g5jweP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tik8g5jweP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tik8g5jweP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tik8g5jweP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tik8g5jweP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tik8g5jweP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tik8g5jweP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tik8g5jweP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tik8g5jweP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tik8g5jweP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tik8g5jweP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tik8g5jweP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tik8g5jweP .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-tik8g5jweP .navbar {
    height: 77px;
  }
  .cid-tik8g5jweP .navbar.opened {
    height: auto;
  }
  .cid-tik8g5jweP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tik8g5MVsk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tik8g5MVsk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tik8g5MVsk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tik8g5MVsk .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tik8g5MVsk .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tik8g5MVsk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tik8g5MVsk .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tik8g5MVsk .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tik8g5MVsk .mbr-section-title {
  color: #fafafa;
}
.cid-tik8g5MVsk .mbr-text,
.cid-tik8g5MVsk .mbr-section-btn {
  color: #fafafa;
}
.cid-tik8g6q49R {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tik8g6q49R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tik8g6q49R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tik8g6q49R .item {
  padding-bottom: 2rem;
}
.cid-tik8g6q49R .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tik8g6q49R .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tik8g6q49R .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tik8g6q49R .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tik8g6q49R .carousel-control,
.cid-tik8g6q49R .close {
  background: #1b1b1b;
}
.cid-tik8g6q49R .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tik8g6q49R .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tik8g6q49R .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tik8g6q49R .carousel-control-next span {
  margin-left: 5px;
}
.cid-tik8g6q49R .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-tik8g6q49R .close::before {
  content: '\e91a';
}
.cid-tik8g6q49R .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tik8g6q49R .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-tik8g6q49R .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tik8g6q49R .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tik8g6q49R .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tik8g6q49R .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tik8g6q49R .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-tik8g6q49R .carousel-indicators li.active,
.cid-tik8g6q49R .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tik8g6q49R .carousel-indicators li::after,
.cid-tik8g6q49R .carousel-indicators li::before {
  content: none;
}
.cid-tik8g6q49R .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tik8g6q49R .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tik8g6q49R .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tik8g6q49R .carousel-indicators {
    display: none;
  }
}
.cid-tik8g6q49R .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tik8g6q49R .carousel-inner > .active {
  display: block;
}
.cid-tik8g6q49R .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tik8g6q49R .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tik8g6q49R .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tik8g6q49R .carousel-control,
  .cid-tik8g6q49R .carousel-indicators,
  .cid-tik8g6q49R .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tik8g6q49R .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tik8g6q49R .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tik8g6q49R .carousel-indicators .active,
.cid-tik8g6q49R .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tik8g6q49R .carousel-indicators .active {
  background: #fff;
}
.cid-tik8g6q49R .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tik8g6q49R .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tik8g6q49R .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tik8g6q49R .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tik8g6q49R .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tik8g6q49R .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tik8g6q49R .carousel {
  width: 100%;
}
.cid-tik8g6q49R .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tik8g6q49R .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tik8g6q49R .modal.fade .modal-dialog,
.cid-tik8g6q49R .modal.in .modal-dialog {
  transform: none;
}
.cid-tik8g6q49R .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tik8g6q49R H6 {
  text-align: center;
}
.cid-tik8g6XCGa {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tik8g6XCGa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tik8g6XCGa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tik8g6XCGa .item {
  padding-bottom: 2rem;
}
.cid-tik8g6XCGa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tik8g6XCGa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tik8g6XCGa .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tik8g6XCGa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tik8g6XCGa .carousel-control,
.cid-tik8g6XCGa .close {
  background: #1b1b1b;
}
.cid-tik8g6XCGa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tik8g6XCGa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tik8g6XCGa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tik8g6XCGa .carousel-control-next span {
  margin-left: 5px;
}
.cid-tik8g6XCGa .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-tik8g6XCGa .close::before {
  content: '\e91a';
}
.cid-tik8g6XCGa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tik8g6XCGa .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-tik8g6XCGa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tik8g6XCGa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tik8g6XCGa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tik8g6XCGa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tik8g6XCGa .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-tik8g6XCGa .carousel-indicators li.active,
.cid-tik8g6XCGa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tik8g6XCGa .carousel-indicators li::after,
.cid-tik8g6XCGa .carousel-indicators li::before {
  content: none;
}
.cid-tik8g6XCGa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tik8g6XCGa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tik8g6XCGa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tik8g6XCGa .carousel-indicators {
    display: none;
  }
}
.cid-tik8g6XCGa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tik8g6XCGa .carousel-inner > .active {
  display: block;
}
.cid-tik8g6XCGa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tik8g6XCGa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tik8g6XCGa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tik8g6XCGa .carousel-control,
  .cid-tik8g6XCGa .carousel-indicators,
  .cid-tik8g6XCGa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tik8g6XCGa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tik8g6XCGa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tik8g6XCGa .carousel-indicators .active,
.cid-tik8g6XCGa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tik8g6XCGa .carousel-indicators .active {
  background: #fff;
}
.cid-tik8g6XCGa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tik8g6XCGa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tik8g6XCGa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tik8g6XCGa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tik8g6XCGa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tik8g6XCGa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tik8g6XCGa .carousel {
  width: 100%;
}
.cid-tik8g6XCGa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tik8g6XCGa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tik8g6XCGa .modal.fade .modal-dialog,
.cid-tik8g6XCGa .modal.in .modal-dialog {
  transform: none;
}
.cid-tik8g6XCGa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tik8g6XCGa H6 {
  text-align: center;
}
.cid-tik8g7pUL5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tik8g7pUL5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tik8g7pUL5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tik8g7pUL5 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tik8g7pUL5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tik8g7pUL5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tik8g7pUL5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tik8g7pUL5 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tik8g7pUL5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tik8g7pUL5 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tik8g7pUL5 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tik8g7pUL5 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tik8g7pUL5 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tik8g7pUL5 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tik8g7pUL5 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiUimcewAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tiUimcewAK nav.navbar {
  position: fixed;
}
.cid-tiUimcewAK .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-tiUimcewAK .dropdown-menu {
  padding: 0;
}
.cid-tiUimcewAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiUimcewAK .dropdown-item:hover,
.cid-tiUimcewAK .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tiUimcewAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tiUimcewAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiUimcewAK .nav-link {
  position: relative;
}
.cid-tiUimcewAK .container {
  display: flex;
  margin: auto;
}
.cid-tiUimcewAK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tiUimcewAK .navbar-caption {
  padding-right: 4rem;
}
.cid-tiUimcewAK .dropdown-menu,
.cid-tiUimcewAK .navbar.opened {
  background: #ffffff !important;
}
.cid-tiUimcewAK .nav-item:focus,
.cid-tiUimcewAK .nav-link:focus {
  outline: none;
}
.cid-tiUimcewAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiUimcewAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiUimcewAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tiUimcewAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiUimcewAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiUimcewAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiUimcewAK .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tiUimcewAK .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiUimcewAK .navbar.opened {
  transition: all .3s;
}
.cid-tiUimcewAK .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tiUimcewAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tiUimcewAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiUimcewAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiUimcewAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiUimcewAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tiUimcewAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiUimcewAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiUimcewAK .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: 55%;
}
.cid-tiUimcewAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiUimcewAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tiUimcewAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tiUimcewAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiUimcewAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiUimcewAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiUimcewAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiUimcewAK .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: 55%;
  }
  .cid-tiUimcewAK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tiUimcewAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiUimcewAK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiUimcewAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiUimcewAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiUimcewAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tiUimcewAK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiUimcewAK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tiUimcewAK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tiUimcewAK .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiUimcewAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiUimcewAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiUimcewAK .dropdown-item.active,
.cid-tiUimcewAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tiUimcewAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiUimcewAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiUimcewAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiUimcewAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tiUimcewAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiUimcewAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiUimcewAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiUimcewAK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiUimcewAK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tiUimcewAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tiUimcewAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tiUimcewAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tiUimcewAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tiUimcewAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tiUimcewAK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiUimcewAK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tiUimcewAK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tiUimcewAK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiUimcewAK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tiUimcewAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiUimcewAK .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-tiUimcewAK .navbar {
    height: 77px;
  }
  .cid-tiUimcewAK .navbar.opened {
    height: auto;
  }
  .cid-tiUimcewAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiUimdT74C {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tiUimdT74C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiUimdT74C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiUimdT74C .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tiUimdT74C .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tiUimdT74C .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tiUimdT74C .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tiUimdT74C .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tiUimdT74C .mbr-section-title {
  color: #fafafa;
}
.cid-tiUimdT74C .mbr-text,
.cid-tiUimdT74C .mbr-section-btn {
  color: #fafafa;
}
.cid-tiUimf6Fw3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tiUimf6Fw3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiUimf6Fw3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiUimf6Fw3 .item {
  padding-bottom: 2rem;
}
.cid-tiUimf6Fw3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tiUimf6Fw3 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tiUimf6Fw3 .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tiUimf6Fw3 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tiUimf6Fw3 .carousel-control,
.cid-tiUimf6Fw3 .close {
  background: #1b1b1b;
}
.cid-tiUimf6Fw3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tiUimf6Fw3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tiUimf6Fw3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tiUimf6Fw3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tiUimf6Fw3 .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-tiUimf6Fw3 .close::before {
  content: '\e91a';
}
.cid-tiUimf6Fw3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tiUimf6Fw3 .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-tiUimf6Fw3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiUimf6Fw3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tiUimf6Fw3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tiUimf6Fw3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tiUimf6Fw3 .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-tiUimf6Fw3 .carousel-indicators li.active,
.cid-tiUimf6Fw3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tiUimf6Fw3 .carousel-indicators li::after,
.cid-tiUimf6Fw3 .carousel-indicators li::before {
  content: none;
}
.cid-tiUimf6Fw3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tiUimf6Fw3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tiUimf6Fw3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tiUimf6Fw3 .carousel-indicators {
    display: none;
  }
}
.cid-tiUimf6Fw3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tiUimf6Fw3 .carousel-inner > .active {
  display: block;
}
.cid-tiUimf6Fw3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiUimf6Fw3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tiUimf6Fw3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tiUimf6Fw3 .carousel-control,
  .cid-tiUimf6Fw3 .carousel-indicators,
  .cid-tiUimf6Fw3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tiUimf6Fw3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tiUimf6Fw3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tiUimf6Fw3 .carousel-indicators .active,
.cid-tiUimf6Fw3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tiUimf6Fw3 .carousel-indicators .active {
  background: #fff;
}
.cid-tiUimf6Fw3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tiUimf6Fw3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tiUimf6Fw3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tiUimf6Fw3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tiUimf6Fw3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tiUimf6Fw3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tiUimf6Fw3 .carousel {
  width: 100%;
}
.cid-tiUimf6Fw3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tiUimf6Fw3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tiUimf6Fw3 .modal.fade .modal-dialog,
.cid-tiUimf6Fw3 .modal.in .modal-dialog {
  transform: none;
}
.cid-tiUimf6Fw3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tiUimf6Fw3 H6 {
  text-align: center;
}
.cid-tiUxT1Lg2c {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tiUxT1Lg2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiUxT1Lg2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiUxT1Lg2c .video-wrapper iframe {
  width: 100%;
}
.cid-tiUxT1Lg2c .mbr-section-title,
.cid-tiUxT1Lg2c .mbr-section-subtitle,
.cid-tiUxT1Lg2c .mbr-text {
  text-align: center;
}
.cid-tiUimg4TfX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tiUimg4TfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiUimg4TfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiUimg4TfX .item {
  padding-bottom: 2rem;
}
.cid-tiUimg4TfX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tiUimg4TfX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tiUimg4TfX .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tiUimg4TfX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tiUimg4TfX .carousel-control,
.cid-tiUimg4TfX .close {
  background: #1b1b1b;
}
.cid-tiUimg4TfX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tiUimg4TfX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tiUimg4TfX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tiUimg4TfX .carousel-control-next span {
  margin-left: 5px;
}
.cid-tiUimg4TfX .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-tiUimg4TfX .close::before {
  content: '\e91a';
}
.cid-tiUimg4TfX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tiUimg4TfX .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-tiUimg4TfX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiUimg4TfX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tiUimg4TfX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tiUimg4TfX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tiUimg4TfX .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-tiUimg4TfX .carousel-indicators li.active,
.cid-tiUimg4TfX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tiUimg4TfX .carousel-indicators li::after,
.cid-tiUimg4TfX .carousel-indicators li::before {
  content: none;
}
.cid-tiUimg4TfX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tiUimg4TfX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tiUimg4TfX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tiUimg4TfX .carousel-indicators {
    display: none;
  }
}
.cid-tiUimg4TfX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tiUimg4TfX .carousel-inner > .active {
  display: block;
}
.cid-tiUimg4TfX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiUimg4TfX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tiUimg4TfX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tiUimg4TfX .carousel-control,
  .cid-tiUimg4TfX .carousel-indicators,
  .cid-tiUimg4TfX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tiUimg4TfX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tiUimg4TfX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tiUimg4TfX .carousel-indicators .active,
.cid-tiUimg4TfX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tiUimg4TfX .carousel-indicators .active {
  background: #fff;
}
.cid-tiUimg4TfX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tiUimg4TfX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tiUimg4TfX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tiUimg4TfX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tiUimg4TfX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tiUimg4TfX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tiUimg4TfX .carousel {
  width: 100%;
}
.cid-tiUimg4TfX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tiUimg4TfX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tiUimg4TfX .modal.fade .modal-dialog,
.cid-tiUimg4TfX .modal.in .modal-dialog {
  transform: none;
}
.cid-tiUimg4TfX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tiUimg4TfX H6 {
  text-align: center;
}
.cid-tiUimgUMWr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiUimgUMWr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiUimgUMWr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiUimgUMWr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiUimgUMWr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiUimgUMWr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiUimgUMWr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiUimgUMWr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiUimgUMWr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiUimgUMWr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiUimgUMWr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiUimgUMWr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiUimgUMWr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiUimgUMWr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiUimgUMWr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tjzkOtOjRi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tjzkOtOjRi nav.navbar {
  position: fixed;
}
.cid-tjzkOtOjRi .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-tjzkOtOjRi .dropdown-menu {
  padding: 0;
}
.cid-tjzkOtOjRi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjzkOtOjRi .dropdown-item:hover,
.cid-tjzkOtOjRi .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tjzkOtOjRi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tjzkOtOjRi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjzkOtOjRi .nav-link {
  position: relative;
}
.cid-tjzkOtOjRi .container {
  display: flex;
  margin: auto;
}
.cid-tjzkOtOjRi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tjzkOtOjRi .navbar-caption {
  padding-right: 4rem;
}
.cid-tjzkOtOjRi .dropdown-menu,
.cid-tjzkOtOjRi .navbar.opened {
  background: #ffffff !important;
}
.cid-tjzkOtOjRi .nav-item:focus,
.cid-tjzkOtOjRi .nav-link:focus {
  outline: none;
}
.cid-tjzkOtOjRi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjzkOtOjRi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjzkOtOjRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjzkOtOjRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjzkOtOjRi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjzkOtOjRi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjzkOtOjRi .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tjzkOtOjRi .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjzkOtOjRi .navbar.opened {
  transition: all .3s;
}
.cid-tjzkOtOjRi .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tjzkOtOjRi .navbar .navbar-logo img {
  width: auto;
}
.cid-tjzkOtOjRi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjzkOtOjRi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjzkOtOjRi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjzkOtOjRi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tjzkOtOjRi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjzkOtOjRi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjzkOtOjRi .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: 55%;
}
.cid-tjzkOtOjRi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjzkOtOjRi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tjzkOtOjRi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tjzkOtOjRi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjzkOtOjRi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjzkOtOjRi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjzkOtOjRi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjzkOtOjRi .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: 55%;
  }
  .cid-tjzkOtOjRi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tjzkOtOjRi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjzkOtOjRi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjzkOtOjRi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjzkOtOjRi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjzkOtOjRi .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tjzkOtOjRi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjzkOtOjRi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjzkOtOjRi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjzkOtOjRi .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjzkOtOjRi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjzkOtOjRi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjzkOtOjRi .dropdown-item.active,
.cid-tjzkOtOjRi .dropdown-item:active {
  background-color: transparent;
}
.cid-tjzkOtOjRi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjzkOtOjRi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjzkOtOjRi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjzkOtOjRi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjzkOtOjRi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjzkOtOjRi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjzkOtOjRi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjzkOtOjRi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjzkOtOjRi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tjzkOtOjRi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tjzkOtOjRi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tjzkOtOjRi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tjzkOtOjRi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tjzkOtOjRi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tjzkOtOjRi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tjzkOtOjRi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tjzkOtOjRi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tjzkOtOjRi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tjzkOtOjRi .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tjzkOtOjRi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjzkOtOjRi .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-tjzkOtOjRi .navbar {
    height: 77px;
  }
  .cid-tjzkOtOjRi .navbar.opened {
    height: auto;
  }
  .cid-tjzkOtOjRi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjzkOuonIU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tjzkOuonIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjzkOuonIU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjzkOuonIU .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tjzkOuonIU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjzkOuonIU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tjzkOuonIU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tjzkOuonIU .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjzkOuonIU .mbr-section-title {
  color: #fafafa;
}
.cid-tjzkOuonIU .mbr-text,
.cid-tjzkOuonIU .mbr-section-btn {
  color: #fafafa;
}
.cid-tjzkOuGvPj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tjzkOuGvPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjzkOuGvPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjzkOuGvPj .item {
  padding-bottom: 2rem;
}
.cid-tjzkOuGvPj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjzkOuGvPj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjzkOuGvPj .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tjzkOuGvPj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjzkOuGvPj .carousel-control,
.cid-tjzkOuGvPj .close {
  background: #1b1b1b;
}
.cid-tjzkOuGvPj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjzkOuGvPj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjzkOuGvPj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjzkOuGvPj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjzkOuGvPj .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-tjzkOuGvPj .close::before {
  content: '\e91a';
}
.cid-tjzkOuGvPj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjzkOuGvPj .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-tjzkOuGvPj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzkOuGvPj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjzkOuGvPj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjzkOuGvPj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjzkOuGvPj .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-tjzkOuGvPj .carousel-indicators li.active,
.cid-tjzkOuGvPj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjzkOuGvPj .carousel-indicators li::after,
.cid-tjzkOuGvPj .carousel-indicators li::before {
  content: none;
}
.cid-tjzkOuGvPj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjzkOuGvPj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjzkOuGvPj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjzkOuGvPj .carousel-indicators {
    display: none;
  }
}
.cid-tjzkOuGvPj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjzkOuGvPj .carousel-inner > .active {
  display: block;
}
.cid-tjzkOuGvPj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzkOuGvPj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjzkOuGvPj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjzkOuGvPj .carousel-control,
  .cid-tjzkOuGvPj .carousel-indicators,
  .cid-tjzkOuGvPj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjzkOuGvPj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjzkOuGvPj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjzkOuGvPj .carousel-indicators .active,
.cid-tjzkOuGvPj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjzkOuGvPj .carousel-indicators .active {
  background: #fff;
}
.cid-tjzkOuGvPj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjzkOuGvPj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjzkOuGvPj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjzkOuGvPj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjzkOuGvPj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjzkOuGvPj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjzkOuGvPj .carousel {
  width: 100%;
}
.cid-tjzkOuGvPj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjzkOuGvPj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjzkOuGvPj .modal.fade .modal-dialog,
.cid-tjzkOuGvPj .modal.in .modal-dialog {
  transform: none;
}
.cid-tjzkOuGvPj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjzkOuGvPj H6 {
  text-align: center;
}
.cid-tjzkOvgKxf {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tjzkOvgKxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjzkOvgKxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjzkOvgKxf .item {
  padding-bottom: 2rem;
}
.cid-tjzkOvgKxf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjzkOvgKxf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjzkOvgKxf .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tjzkOvgKxf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjzkOvgKxf .carousel-control,
.cid-tjzkOvgKxf .close {
  background: #1b1b1b;
}
.cid-tjzkOvgKxf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjzkOvgKxf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjzkOvgKxf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjzkOvgKxf .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjzkOvgKxf .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-tjzkOvgKxf .close::before {
  content: '\e91a';
}
.cid-tjzkOvgKxf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjzkOvgKxf .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-tjzkOvgKxf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzkOvgKxf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjzkOvgKxf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjzkOvgKxf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjzkOvgKxf .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-tjzkOvgKxf .carousel-indicators li.active,
.cid-tjzkOvgKxf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjzkOvgKxf .carousel-indicators li::after,
.cid-tjzkOvgKxf .carousel-indicators li::before {
  content: none;
}
.cid-tjzkOvgKxf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjzkOvgKxf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjzkOvgKxf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjzkOvgKxf .carousel-indicators {
    display: none;
  }
}
.cid-tjzkOvgKxf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjzkOvgKxf .carousel-inner > .active {
  display: block;
}
.cid-tjzkOvgKxf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzkOvgKxf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjzkOvgKxf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjzkOvgKxf .carousel-control,
  .cid-tjzkOvgKxf .carousel-indicators,
  .cid-tjzkOvgKxf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjzkOvgKxf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjzkOvgKxf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjzkOvgKxf .carousel-indicators .active,
.cid-tjzkOvgKxf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjzkOvgKxf .carousel-indicators .active {
  background: #fff;
}
.cid-tjzkOvgKxf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjzkOvgKxf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjzkOvgKxf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjzkOvgKxf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjzkOvgKxf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjzkOvgKxf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjzkOvgKxf .carousel {
  width: 100%;
}
.cid-tjzkOvgKxf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjzkOvgKxf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjzkOvgKxf .modal.fade .modal-dialog,
.cid-tjzkOvgKxf .modal.in .modal-dialog {
  transform: none;
}
.cid-tjzkOvgKxf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjzkOvgKxf H6 {
  text-align: center;
}
.cid-tjzkOvEiaP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tjzkOvEiaP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tjzkOvEiaP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tjzkOvEiaP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tjzkOvEiaP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tjzkOvEiaP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tjzkOvEiaP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tjzkOvEiaP .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tjzkOvEiaP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tjzkOvEiaP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tjzkOvEiaP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tjzkOvEiaP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tjzkOvEiaP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tjzkOvEiaP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tjzkOvEiaP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tjzwnM3paF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tjzwnM3paF nav.navbar {
  position: fixed;
}
.cid-tjzwnM3paF .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-tjzwnM3paF .dropdown-menu {
  padding: 0;
}
.cid-tjzwnM3paF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjzwnM3paF .dropdown-item:hover,
.cid-tjzwnM3paF .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tjzwnM3paF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tjzwnM3paF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjzwnM3paF .nav-link {
  position: relative;
}
.cid-tjzwnM3paF .container {
  display: flex;
  margin: auto;
}
.cid-tjzwnM3paF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tjzwnM3paF .navbar-caption {
  padding-right: 4rem;
}
.cid-tjzwnM3paF .dropdown-menu,
.cid-tjzwnM3paF .navbar.opened {
  background: #ffffff !important;
}
.cid-tjzwnM3paF .nav-item:focus,
.cid-tjzwnM3paF .nav-link:focus {
  outline: none;
}
.cid-tjzwnM3paF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjzwnM3paF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjzwnM3paF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjzwnM3paF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjzwnM3paF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjzwnM3paF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjzwnM3paF .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tjzwnM3paF .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjzwnM3paF .navbar.opened {
  transition: all .3s;
}
.cid-tjzwnM3paF .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tjzwnM3paF .navbar .navbar-logo img {
  width: auto;
}
.cid-tjzwnM3paF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjzwnM3paF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjzwnM3paF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjzwnM3paF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tjzwnM3paF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjzwnM3paF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjzwnM3paF .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: 55%;
}
.cid-tjzwnM3paF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjzwnM3paF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tjzwnM3paF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tjzwnM3paF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjzwnM3paF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjzwnM3paF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjzwnM3paF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjzwnM3paF .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: 55%;
  }
  .cid-tjzwnM3paF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tjzwnM3paF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjzwnM3paF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjzwnM3paF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjzwnM3paF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjzwnM3paF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tjzwnM3paF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjzwnM3paF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjzwnM3paF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjzwnM3paF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjzwnM3paF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjzwnM3paF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjzwnM3paF .dropdown-item.active,
.cid-tjzwnM3paF .dropdown-item:active {
  background-color: transparent;
}
.cid-tjzwnM3paF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjzwnM3paF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjzwnM3paF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjzwnM3paF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjzwnM3paF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjzwnM3paF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjzwnM3paF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjzwnM3paF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjzwnM3paF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tjzwnM3paF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tjzwnM3paF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tjzwnM3paF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tjzwnM3paF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tjzwnM3paF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tjzwnM3paF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tjzwnM3paF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tjzwnM3paF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tjzwnM3paF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tjzwnM3paF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tjzwnM3paF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjzwnM3paF .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-tjzwnM3paF .navbar {
    height: 77px;
  }
  .cid-tjzwnM3paF .navbar.opened {
    height: auto;
  }
  .cid-tjzwnM3paF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjzwnNkq4V {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #cc7f59;
}
.cid-tjzwnNkq4V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjzwnNkq4V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjzwnNkq4V .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tjzwnNkq4V .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjzwnNkq4V .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tjzwnNkq4V .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tjzwnNkq4V .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjzwnNkq4V .mbr-section-title {
  color: #fafafa;
}
.cid-tjzwnNkq4V .mbr-text,
.cid-tjzwnNkq4V .mbr-section-btn {
  color: #fafafa;
}
.cid-tjzwnO2ytI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tjzwnO2ytI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjzwnO2ytI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjzwnO2ytI .item {
  padding-bottom: 2rem;
}
.cid-tjzwnO2ytI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjzwnO2ytI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjzwnO2ytI .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tjzwnO2ytI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjzwnO2ytI .carousel-control,
.cid-tjzwnO2ytI .close {
  background: #1b1b1b;
}
.cid-tjzwnO2ytI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjzwnO2ytI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjzwnO2ytI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjzwnO2ytI .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjzwnO2ytI .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-tjzwnO2ytI .close::before {
  content: '\e91a';
}
.cid-tjzwnO2ytI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjzwnO2ytI .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-tjzwnO2ytI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzwnO2ytI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjzwnO2ytI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjzwnO2ytI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjzwnO2ytI .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-tjzwnO2ytI .carousel-indicators li.active,
.cid-tjzwnO2ytI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjzwnO2ytI .carousel-indicators li::after,
.cid-tjzwnO2ytI .carousel-indicators li::before {
  content: none;
}
.cid-tjzwnO2ytI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjzwnO2ytI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjzwnO2ytI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjzwnO2ytI .carousel-indicators {
    display: none;
  }
}
.cid-tjzwnO2ytI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjzwnO2ytI .carousel-inner > .active {
  display: block;
}
.cid-tjzwnO2ytI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzwnO2ytI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjzwnO2ytI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjzwnO2ytI .carousel-control,
  .cid-tjzwnO2ytI .carousel-indicators,
  .cid-tjzwnO2ytI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjzwnO2ytI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjzwnO2ytI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjzwnO2ytI .carousel-indicators .active,
.cid-tjzwnO2ytI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjzwnO2ytI .carousel-indicators .active {
  background: #fff;
}
.cid-tjzwnO2ytI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjzwnO2ytI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjzwnO2ytI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjzwnO2ytI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjzwnO2ytI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjzwnO2ytI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjzwnO2ytI .carousel {
  width: 100%;
}
.cid-tjzwnO2ytI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjzwnO2ytI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjzwnO2ytI .modal.fade .modal-dialog,
.cid-tjzwnO2ytI .modal.in .modal-dialog {
  transform: none;
}
.cid-tjzwnO2ytI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjzwnO2ytI H6 {
  text-align: center;
}
.cid-tjzwnOQEey {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tjzwnOQEey .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjzwnOQEey .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjzwnOQEey .item {
  padding-bottom: 2rem;
}
.cid-tjzwnOQEey .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjzwnOQEey .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjzwnOQEey .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tjzwnOQEey .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjzwnOQEey .carousel-control,
.cid-tjzwnOQEey .close {
  background: #1b1b1b;
}
.cid-tjzwnOQEey .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjzwnOQEey .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjzwnOQEey .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjzwnOQEey .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjzwnOQEey .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-tjzwnOQEey .close::before {
  content: '\e91a';
}
.cid-tjzwnOQEey .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjzwnOQEey .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-tjzwnOQEey .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzwnOQEey .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjzwnOQEey .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjzwnOQEey .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjzwnOQEey .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-tjzwnOQEey .carousel-indicators li.active,
.cid-tjzwnOQEey .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjzwnOQEey .carousel-indicators li::after,
.cid-tjzwnOQEey .carousel-indicators li::before {
  content: none;
}
.cid-tjzwnOQEey .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjzwnOQEey .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjzwnOQEey .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjzwnOQEey .carousel-indicators {
    display: none;
  }
}
.cid-tjzwnOQEey .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjzwnOQEey .carousel-inner > .active {
  display: block;
}
.cid-tjzwnOQEey .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjzwnOQEey .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjzwnOQEey .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjzwnOQEey .carousel-control,
  .cid-tjzwnOQEey .carousel-indicators,
  .cid-tjzwnOQEey .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjzwnOQEey .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjzwnOQEey .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjzwnOQEey .carousel-indicators .active,
.cid-tjzwnOQEey .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjzwnOQEey .carousel-indicators .active {
  background: #fff;
}
.cid-tjzwnOQEey .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjzwnOQEey .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjzwnOQEey .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjzwnOQEey .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjzwnOQEey .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjzwnOQEey .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjzwnOQEey .carousel {
  width: 100%;
}
.cid-tjzwnOQEey .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjzwnOQEey .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjzwnOQEey .modal.fade .modal-dialog,
.cid-tjzwnOQEey .modal.in .modal-dialog {
  transform: none;
}
.cid-tjzwnOQEey .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjzwnOQEey H6 {
  text-align: center;
}
.cid-tjzwnPcaLq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tjzwnPcaLq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tjzwnPcaLq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tjzwnPcaLq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tjzwnPcaLq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tjzwnPcaLq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tjzwnPcaLq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tjzwnPcaLq .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tjzwnPcaLq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tjzwnPcaLq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tjzwnPcaLq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tjzwnPcaLq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tjzwnPcaLq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tjzwnPcaLq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tjzwnPcaLq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tjE8ZVH9yq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tjE8ZVH9yq nav.navbar {
  position: fixed;
}
.cid-tjE8ZVH9yq .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-tjE8ZVH9yq .dropdown-menu {
  padding: 0;
}
.cid-tjE8ZVH9yq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjE8ZVH9yq .dropdown-item:hover,
.cid-tjE8ZVH9yq .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tjE8ZVH9yq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tjE8ZVH9yq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjE8ZVH9yq .nav-link {
  position: relative;
}
.cid-tjE8ZVH9yq .container {
  display: flex;
  margin: auto;
}
.cid-tjE8ZVH9yq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tjE8ZVH9yq .navbar-caption {
  padding-right: 4rem;
}
.cid-tjE8ZVH9yq .dropdown-menu,
.cid-tjE8ZVH9yq .navbar.opened {
  background: #ffffff !important;
}
.cid-tjE8ZVH9yq .nav-item:focus,
.cid-tjE8ZVH9yq .nav-link:focus {
  outline: none;
}
.cid-tjE8ZVH9yq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjE8ZVH9yq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjE8ZVH9yq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjE8ZVH9yq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tjE8ZVH9yq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjE8ZVH9yq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjE8ZVH9yq .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tjE8ZVH9yq .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjE8ZVH9yq .navbar.opened {
  transition: all .3s;
}
.cid-tjE8ZVH9yq .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tjE8ZVH9yq .navbar .navbar-logo img {
  width: auto;
}
.cid-tjE8ZVH9yq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjE8ZVH9yq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjE8ZVH9yq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjE8ZVH9yq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tjE8ZVH9yq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjE8ZVH9yq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjE8ZVH9yq .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: 55%;
}
.cid-tjE8ZVH9yq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjE8ZVH9yq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tjE8ZVH9yq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tjE8ZVH9yq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjE8ZVH9yq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjE8ZVH9yq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjE8ZVH9yq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjE8ZVH9yq .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: 55%;
  }
  .cid-tjE8ZVH9yq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tjE8ZVH9yq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tjE8ZVH9yq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjE8ZVH9yq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjE8ZVH9yq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tjE8ZVH9yq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tjE8ZVH9yq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjE8ZVH9yq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjE8ZVH9yq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjE8ZVH9yq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjE8ZVH9yq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjE8ZVH9yq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjE8ZVH9yq .dropdown-item.active,
.cid-tjE8ZVH9yq .dropdown-item:active {
  background-color: transparent;
}
.cid-tjE8ZVH9yq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjE8ZVH9yq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjE8ZVH9yq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjE8ZVH9yq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjE8ZVH9yq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjE8ZVH9yq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjE8ZVH9yq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tjE8ZVH9yq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tjE8ZVH9yq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tjE8ZVH9yq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tjE8ZVH9yq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tjE8ZVH9yq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tjE8ZVH9yq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tjE8ZVH9yq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tjE8ZVH9yq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tjE8ZVH9yq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tjE8ZVH9yq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tjE8ZVH9yq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tjE8ZVH9yq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tjE8ZVH9yq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tjE8ZVH9yq .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-tjE8ZVH9yq .navbar {
    height: 77px;
  }
  .cid-tjE8ZVH9yq .navbar.opened {
    height: auto;
  }
  .cid-tjE8ZVH9yq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjE8ZXwwwm {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #cc7f59;
}
.cid-tjE8ZXwwwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjE8ZXwwwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjE8ZXwwwm .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tjE8ZXwwwm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjE8ZXwwwm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tjE8ZXwwwm .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tjE8ZXwwwm .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tjE8ZXwwwm .mbr-section-title {
  color: #fafafa;
}
.cid-tjE8ZXwwwm .mbr-text,
.cid-tjE8ZXwwwm .mbr-section-btn {
  color: #fafafa;
}
.cid-tjE8ZYfLVT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tjE8ZYfLVT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjE8ZYfLVT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjE8ZYfLVT .item {
  padding-bottom: 2rem;
}
.cid-tjE8ZYfLVT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjE8ZYfLVT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjE8ZYfLVT .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tjE8ZYfLVT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjE8ZYfLVT .carousel-control,
.cid-tjE8ZYfLVT .close {
  background: #1b1b1b;
}
.cid-tjE8ZYfLVT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjE8ZYfLVT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjE8ZYfLVT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjE8ZYfLVT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjE8ZYfLVT .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-tjE8ZYfLVT .close::before {
  content: '\e91a';
}
.cid-tjE8ZYfLVT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjE8ZYfLVT .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-tjE8ZYfLVT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjE8ZYfLVT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjE8ZYfLVT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjE8ZYfLVT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjE8ZYfLVT .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-tjE8ZYfLVT .carousel-indicators li.active,
.cid-tjE8ZYfLVT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjE8ZYfLVT .carousel-indicators li::after,
.cid-tjE8ZYfLVT .carousel-indicators li::before {
  content: none;
}
.cid-tjE8ZYfLVT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjE8ZYfLVT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjE8ZYfLVT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjE8ZYfLVT .carousel-indicators {
    display: none;
  }
}
.cid-tjE8ZYfLVT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjE8ZYfLVT .carousel-inner > .active {
  display: block;
}
.cid-tjE8ZYfLVT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjE8ZYfLVT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjE8ZYfLVT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjE8ZYfLVT .carousel-control,
  .cid-tjE8ZYfLVT .carousel-indicators,
  .cid-tjE8ZYfLVT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjE8ZYfLVT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjE8ZYfLVT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjE8ZYfLVT .carousel-indicators .active,
.cid-tjE8ZYfLVT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjE8ZYfLVT .carousel-indicators .active {
  background: #fff;
}
.cid-tjE8ZYfLVT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjE8ZYfLVT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjE8ZYfLVT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjE8ZYfLVT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjE8ZYfLVT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjE8ZYfLVT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjE8ZYfLVT .carousel {
  width: 100%;
}
.cid-tjE8ZYfLVT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjE8ZYfLVT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjE8ZYfLVT .modal.fade .modal-dialog,
.cid-tjE8ZYfLVT .modal.in .modal-dialog {
  transform: none;
}
.cid-tjE8ZYfLVT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjE8ZYfLVT H6 {
  text-align: center;
}
.cid-tjE8ZZaPdH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tjE8ZZaPdH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tjE8ZZaPdH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tjE8ZZaPdH .item {
  padding-bottom: 2rem;
}
.cid-tjE8ZZaPdH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tjE8ZZaPdH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tjE8ZZaPdH .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tjE8ZZaPdH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tjE8ZZaPdH .carousel-control,
.cid-tjE8ZZaPdH .close {
  background: #1b1b1b;
}
.cid-tjE8ZZaPdH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tjE8ZZaPdH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tjE8ZZaPdH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tjE8ZZaPdH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tjE8ZZaPdH .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-tjE8ZZaPdH .close::before {
  content: '\e91a';
}
.cid-tjE8ZZaPdH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tjE8ZZaPdH .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-tjE8ZZaPdH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjE8ZZaPdH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tjE8ZZaPdH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tjE8ZZaPdH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tjE8ZZaPdH .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-tjE8ZZaPdH .carousel-indicators li.active,
.cid-tjE8ZZaPdH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tjE8ZZaPdH .carousel-indicators li::after,
.cid-tjE8ZZaPdH .carousel-indicators li::before {
  content: none;
}
.cid-tjE8ZZaPdH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tjE8ZZaPdH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tjE8ZZaPdH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tjE8ZZaPdH .carousel-indicators {
    display: none;
  }
}
.cid-tjE8ZZaPdH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tjE8ZZaPdH .carousel-inner > .active {
  display: block;
}
.cid-tjE8ZZaPdH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjE8ZZaPdH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjE8ZZaPdH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tjE8ZZaPdH .carousel-control,
  .cid-tjE8ZZaPdH .carousel-indicators,
  .cid-tjE8ZZaPdH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tjE8ZZaPdH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tjE8ZZaPdH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tjE8ZZaPdH .carousel-indicators .active,
.cid-tjE8ZZaPdH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tjE8ZZaPdH .carousel-indicators .active {
  background: #fff;
}
.cid-tjE8ZZaPdH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tjE8ZZaPdH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tjE8ZZaPdH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tjE8ZZaPdH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tjE8ZZaPdH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tjE8ZZaPdH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tjE8ZZaPdH .carousel {
  width: 100%;
}
.cid-tjE8ZZaPdH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tjE8ZZaPdH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tjE8ZZaPdH .modal.fade .modal-dialog,
.cid-tjE8ZZaPdH .modal.in .modal-dialog {
  transform: none;
}
.cid-tjE8ZZaPdH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tjE8ZZaPdH H6 {
  text-align: center;
}
.cid-tjE8ZZz1Lz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tjE8ZZz1Lz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tjE8ZZz1Lz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tjE8ZZz1Lz .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tjE8ZZz1Lz .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tjE8ZZz1Lz .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tjE8ZZz1Lz .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tjE8ZZz1Lz .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tjE8ZZz1Lz .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tjE8ZZz1Lz .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tjE8ZZz1Lz .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tjE8ZZz1Lz .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tjE8ZZz1Lz .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tjE8ZZz1Lz .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tjE8ZZz1Lz .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tkpHWsiPLy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tkpHWsiPLy nav.navbar {
  position: fixed;
}
.cid-tkpHWsiPLy .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-tkpHWsiPLy .dropdown-menu {
  padding: 0;
}
.cid-tkpHWsiPLy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkpHWsiPLy .dropdown-item:hover,
.cid-tkpHWsiPLy .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tkpHWsiPLy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tkpHWsiPLy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkpHWsiPLy .nav-link {
  position: relative;
}
.cid-tkpHWsiPLy .container {
  display: flex;
  margin: auto;
}
.cid-tkpHWsiPLy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tkpHWsiPLy .navbar-caption {
  padding-right: 4rem;
}
.cid-tkpHWsiPLy .dropdown-menu,
.cid-tkpHWsiPLy .navbar.opened {
  background: #ffffff !important;
}
.cid-tkpHWsiPLy .nav-item:focus,
.cid-tkpHWsiPLy .nav-link:focus {
  outline: none;
}
.cid-tkpHWsiPLy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkpHWsiPLy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkpHWsiPLy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tkpHWsiPLy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkpHWsiPLy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkpHWsiPLy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkpHWsiPLy .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkpHWsiPLy .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkpHWsiPLy .navbar.opened {
  transition: all .3s;
}
.cid-tkpHWsiPLy .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tkpHWsiPLy .navbar .navbar-logo img {
  width: auto;
}
.cid-tkpHWsiPLy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkpHWsiPLy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkpHWsiPLy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkpHWsiPLy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tkpHWsiPLy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkpHWsiPLy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkpHWsiPLy .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: 55%;
}
.cid-tkpHWsiPLy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkpHWsiPLy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tkpHWsiPLy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tkpHWsiPLy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkpHWsiPLy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkpHWsiPLy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkpHWsiPLy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkpHWsiPLy .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: 55%;
  }
  .cid-tkpHWsiPLy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tkpHWsiPLy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkpHWsiPLy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkpHWsiPLy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkpHWsiPLy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkpHWsiPLy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tkpHWsiPLy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkpHWsiPLy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tkpHWsiPLy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tkpHWsiPLy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkpHWsiPLy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkpHWsiPLy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkpHWsiPLy .dropdown-item.active,
.cid-tkpHWsiPLy .dropdown-item:active {
  background-color: transparent;
}
.cid-tkpHWsiPLy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkpHWsiPLy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkpHWsiPLy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkpHWsiPLy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkpHWsiPLy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkpHWsiPLy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkpHWsiPLy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkpHWsiPLy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkpHWsiPLy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tkpHWsiPLy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tkpHWsiPLy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkpHWsiPLy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkpHWsiPLy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkpHWsiPLy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkpHWsiPLy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkpHWsiPLy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkpHWsiPLy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkpHWsiPLy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkpHWsiPLy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tkpHWsiPLy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkpHWsiPLy .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-tkpHWsiPLy .navbar {
    height: 77px;
  }
  .cid-tkpHWsiPLy .navbar.opened {
    height: auto;
  }
  .cid-tkpHWsiPLy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkpHWtcNBe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tkpHWtcNBe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkpHWtcNBe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkpHWtcNBe .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tkpHWtcNBe .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tkpHWtcNBe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tkpHWtcNBe .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tkpHWtcNBe .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tkpHWtcNBe .mbr-section-title {
  color: #fafafa;
}
.cid-tkpHWtcNBe .mbr-text,
.cid-tkpHWtcNBe .mbr-section-btn {
  color: #fafafa;
}
.cid-tkpHWtWHlF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tkpHWtWHlF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkpHWtWHlF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkpHWtWHlF .item {
  padding-bottom: 2rem;
}
.cid-tkpHWtWHlF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tkpHWtWHlF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tkpHWtWHlF .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tkpHWtWHlF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tkpHWtWHlF .carousel-control,
.cid-tkpHWtWHlF .close {
  background: #1b1b1b;
}
.cid-tkpHWtWHlF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tkpHWtWHlF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tkpHWtWHlF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tkpHWtWHlF .carousel-control-next span {
  margin-left: 5px;
}
.cid-tkpHWtWHlF .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-tkpHWtWHlF .close::before {
  content: '\e91a';
}
.cid-tkpHWtWHlF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tkpHWtWHlF .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-tkpHWtWHlF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkpHWtWHlF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkpHWtWHlF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tkpHWtWHlF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tkpHWtWHlF .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-tkpHWtWHlF .carousel-indicators li.active,
.cid-tkpHWtWHlF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tkpHWtWHlF .carousel-indicators li::after,
.cid-tkpHWtWHlF .carousel-indicators li::before {
  content: none;
}
.cid-tkpHWtWHlF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tkpHWtWHlF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tkpHWtWHlF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tkpHWtWHlF .carousel-indicators {
    display: none;
  }
}
.cid-tkpHWtWHlF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tkpHWtWHlF .carousel-inner > .active {
  display: block;
}
.cid-tkpHWtWHlF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkpHWtWHlF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tkpHWtWHlF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tkpHWtWHlF .carousel-control,
  .cid-tkpHWtWHlF .carousel-indicators,
  .cid-tkpHWtWHlF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tkpHWtWHlF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tkpHWtWHlF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tkpHWtWHlF .carousel-indicators .active,
.cid-tkpHWtWHlF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tkpHWtWHlF .carousel-indicators .active {
  background: #fff;
}
.cid-tkpHWtWHlF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tkpHWtWHlF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tkpHWtWHlF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tkpHWtWHlF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tkpHWtWHlF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tkpHWtWHlF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tkpHWtWHlF .carousel {
  width: 100%;
}
.cid-tkpHWtWHlF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tkpHWtWHlF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tkpHWtWHlF .modal.fade .modal-dialog,
.cid-tkpHWtWHlF .modal.in .modal-dialog {
  transform: none;
}
.cid-tkpHWtWHlF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tkpHWtWHlF H6 {
  text-align: center;
}
.cid-tkpHWuKIMj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tkpHWuKIMj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkpHWuKIMj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkpHWuKIMj .item {
  padding-bottom: 2rem;
}
.cid-tkpHWuKIMj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tkpHWuKIMj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tkpHWuKIMj .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tkpHWuKIMj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tkpHWuKIMj .carousel-control,
.cid-tkpHWuKIMj .close {
  background: #1b1b1b;
}
.cid-tkpHWuKIMj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tkpHWuKIMj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tkpHWuKIMj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tkpHWuKIMj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tkpHWuKIMj .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-tkpHWuKIMj .close::before {
  content: '\e91a';
}
.cid-tkpHWuKIMj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tkpHWuKIMj .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-tkpHWuKIMj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkpHWuKIMj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkpHWuKIMj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tkpHWuKIMj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tkpHWuKIMj .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-tkpHWuKIMj .carousel-indicators li.active,
.cid-tkpHWuKIMj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tkpHWuKIMj .carousel-indicators li::after,
.cid-tkpHWuKIMj .carousel-indicators li::before {
  content: none;
}
.cid-tkpHWuKIMj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tkpHWuKIMj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tkpHWuKIMj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tkpHWuKIMj .carousel-indicators {
    display: none;
  }
}
.cid-tkpHWuKIMj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tkpHWuKIMj .carousel-inner > .active {
  display: block;
}
.cid-tkpHWuKIMj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkpHWuKIMj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tkpHWuKIMj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tkpHWuKIMj .carousel-control,
  .cid-tkpHWuKIMj .carousel-indicators,
  .cid-tkpHWuKIMj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tkpHWuKIMj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tkpHWuKIMj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tkpHWuKIMj .carousel-indicators .active,
.cid-tkpHWuKIMj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tkpHWuKIMj .carousel-indicators .active {
  background: #fff;
}
.cid-tkpHWuKIMj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tkpHWuKIMj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tkpHWuKIMj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tkpHWuKIMj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tkpHWuKIMj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tkpHWuKIMj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tkpHWuKIMj .carousel {
  width: 100%;
}
.cid-tkpHWuKIMj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tkpHWuKIMj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tkpHWuKIMj .modal.fade .modal-dialog,
.cid-tkpHWuKIMj .modal.in .modal-dialog {
  transform: none;
}
.cid-tkpHWuKIMj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tkpHWuKIMj H6 {
  text-align: center;
}
.cid-tkpHWvxt5y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tkpHWvxt5y .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tkpHWvxt5y .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tkpHWvxt5y .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tkpHWvxt5y .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tkpHWvxt5y .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tkpHWvxt5y .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tkpHWvxt5y .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tkpHWvxt5y .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tkpHWvxt5y .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tkpHWvxt5y .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tkpHWvxt5y .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkpHWvxt5y .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tkpHWvxt5y .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tkpHWvxt5y .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tkcMksNzDq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tkcMksNzDq nav.navbar {
  position: fixed;
}
.cid-tkcMksNzDq .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-tkcMksNzDq .dropdown-menu {
  padding: 0;
}
.cid-tkcMksNzDq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkcMksNzDq .dropdown-item:hover,
.cid-tkcMksNzDq .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tkcMksNzDq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tkcMksNzDq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkcMksNzDq .nav-link {
  position: relative;
}
.cid-tkcMksNzDq .container {
  display: flex;
  margin: auto;
}
.cid-tkcMksNzDq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tkcMksNzDq .navbar-caption {
  padding-right: 4rem;
}
.cid-tkcMksNzDq .dropdown-menu,
.cid-tkcMksNzDq .navbar.opened {
  background: #ffffff !important;
}
.cid-tkcMksNzDq .nav-item:focus,
.cid-tkcMksNzDq .nav-link:focus {
  outline: none;
}
.cid-tkcMksNzDq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkcMksNzDq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkcMksNzDq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tkcMksNzDq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkcMksNzDq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkcMksNzDq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkcMksNzDq .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkcMksNzDq .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkcMksNzDq .navbar.opened {
  transition: all .3s;
}
.cid-tkcMksNzDq .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tkcMksNzDq .navbar .navbar-logo img {
  width: auto;
}
.cid-tkcMksNzDq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkcMksNzDq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkcMksNzDq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkcMksNzDq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tkcMksNzDq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkcMksNzDq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkcMksNzDq .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: 55%;
}
.cid-tkcMksNzDq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkcMksNzDq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tkcMksNzDq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tkcMksNzDq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkcMksNzDq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkcMksNzDq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkcMksNzDq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkcMksNzDq .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: 55%;
  }
  .cid-tkcMksNzDq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tkcMksNzDq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkcMksNzDq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkcMksNzDq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkcMksNzDq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkcMksNzDq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tkcMksNzDq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkcMksNzDq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tkcMksNzDq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tkcMksNzDq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkcMksNzDq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkcMksNzDq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkcMksNzDq .dropdown-item.active,
.cid-tkcMksNzDq .dropdown-item:active {
  background-color: transparent;
}
.cid-tkcMksNzDq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkcMksNzDq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkcMksNzDq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkcMksNzDq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkcMksNzDq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkcMksNzDq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkcMksNzDq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkcMksNzDq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkcMksNzDq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tkcMksNzDq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tkcMksNzDq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkcMksNzDq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkcMksNzDq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkcMksNzDq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkcMksNzDq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkcMksNzDq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkcMksNzDq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkcMksNzDq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkcMksNzDq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tkcMksNzDq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkcMksNzDq .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-tkcMksNzDq .navbar {
    height: 77px;
  }
  .cid-tkcMksNzDq .navbar.opened {
    height: auto;
  }
  .cid-tkcMksNzDq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkcMktlvJO {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-tkcMktlvJO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkcMktlvJO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkcMktlvJO .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tkcMktlvJO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tkcMktlvJO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tkcMktlvJO .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tkcMktlvJO .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tkcMktlvJO .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tkcMktlvJO .mbr-text,
.cid-tkcMktlvJO .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-tkcMktHTCv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tkcMktHTCv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkcMktHTCv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkcMktHTCv .item {
  padding-bottom: 2rem;
}
.cid-tkcMktHTCv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tkcMktHTCv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tkcMktHTCv .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tkcMktHTCv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tkcMktHTCv .carousel-control,
.cid-tkcMktHTCv .close {
  background: #1b1b1b;
}
.cid-tkcMktHTCv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tkcMktHTCv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tkcMktHTCv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tkcMktHTCv .carousel-control-next span {
  margin-left: 5px;
}
.cid-tkcMktHTCv .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-tkcMktHTCv .close::before {
  content: '\e91a';
}
.cid-tkcMktHTCv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tkcMktHTCv .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-tkcMktHTCv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkcMktHTCv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkcMktHTCv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tkcMktHTCv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tkcMktHTCv .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-tkcMktHTCv .carousel-indicators li.active,
.cid-tkcMktHTCv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tkcMktHTCv .carousel-indicators li::after,
.cid-tkcMktHTCv .carousel-indicators li::before {
  content: none;
}
.cid-tkcMktHTCv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tkcMktHTCv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tkcMktHTCv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tkcMktHTCv .carousel-indicators {
    display: none;
  }
}
.cid-tkcMktHTCv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tkcMktHTCv .carousel-inner > .active {
  display: block;
}
.cid-tkcMktHTCv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkcMktHTCv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tkcMktHTCv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tkcMktHTCv .carousel-control,
  .cid-tkcMktHTCv .carousel-indicators,
  .cid-tkcMktHTCv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tkcMktHTCv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tkcMktHTCv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tkcMktHTCv .carousel-indicators .active,
.cid-tkcMktHTCv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tkcMktHTCv .carousel-indicators .active {
  background: #fff;
}
.cid-tkcMktHTCv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tkcMktHTCv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tkcMktHTCv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tkcMktHTCv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tkcMktHTCv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tkcMktHTCv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tkcMktHTCv .carousel {
  width: 100%;
}
.cid-tkcMktHTCv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tkcMktHTCv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tkcMktHTCv .modal.fade .modal-dialog,
.cid-tkcMktHTCv .modal.in .modal-dialog {
  transform: none;
}
.cid-tkcMktHTCv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tkcMktHTCv H6 {
  text-align: center;
}
.cid-tkcMktHTCv H4 {
  text-align: center;
}
.cid-tkfbt7WxVB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tkfbt7WxVB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkfbt7WxVB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkfbt7WxVB .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tkfbt7WxVB .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tkfbt7WxVB .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tkfbt7WxVB .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tkfbt7WxVB .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tkfbt7WxVB .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tkfbt7WxVB .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tkfbt7WxVB .mbr-section-title {
  color: #FFFFFF;
  text-align: left;
}
.cid-tkfbt7WxVB .mbr-desc {
  color: #FFFFFF;
}
.cid-tkfbt7WxVB .mbr-text {
  color: #FFFFFF;
}
.cid-tkcMkuf9KO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tkcMkuf9KO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkcMkuf9KO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkcMkuf9KO .item {
  padding-bottom: 2rem;
}
.cid-tkcMkuf9KO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tkcMkuf9KO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tkcMkuf9KO .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tkcMkuf9KO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tkcMkuf9KO .carousel-control,
.cid-tkcMkuf9KO .close {
  background: #1b1b1b;
}
.cid-tkcMkuf9KO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tkcMkuf9KO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tkcMkuf9KO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tkcMkuf9KO .carousel-control-next span {
  margin-left: 5px;
}
.cid-tkcMkuf9KO .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-tkcMkuf9KO .close::before {
  content: '\e91a';
}
.cid-tkcMkuf9KO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tkcMkuf9KO .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-tkcMkuf9KO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkcMkuf9KO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkcMkuf9KO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tkcMkuf9KO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tkcMkuf9KO .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-tkcMkuf9KO .carousel-indicators li.active,
.cid-tkcMkuf9KO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tkcMkuf9KO .carousel-indicators li::after,
.cid-tkcMkuf9KO .carousel-indicators li::before {
  content: none;
}
.cid-tkcMkuf9KO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tkcMkuf9KO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tkcMkuf9KO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tkcMkuf9KO .carousel-indicators {
    display: none;
  }
}
.cid-tkcMkuf9KO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tkcMkuf9KO .carousel-inner > .active {
  display: block;
}
.cid-tkcMkuf9KO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkcMkuf9KO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tkcMkuf9KO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tkcMkuf9KO .carousel-control,
  .cid-tkcMkuf9KO .carousel-indicators,
  .cid-tkcMkuf9KO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tkcMkuf9KO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tkcMkuf9KO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tkcMkuf9KO .carousel-indicators .active,
.cid-tkcMkuf9KO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tkcMkuf9KO .carousel-indicators .active {
  background: #fff;
}
.cid-tkcMkuf9KO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tkcMkuf9KO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tkcMkuf9KO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tkcMkuf9KO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tkcMkuf9KO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tkcMkuf9KO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tkcMkuf9KO .carousel {
  width: 100%;
}
.cid-tkcMkuf9KO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tkcMkuf9KO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tkcMkuf9KO .modal.fade .modal-dialog,
.cid-tkcMkuf9KO .modal.in .modal-dialog {
  transform: none;
}
.cid-tkcMkuf9KO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tkcMkuf9KO H6 {
  text-align: center;
}
.cid-tkfhCpy08O {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkfhCpy08O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tkfhCpy08O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tkfhCpy08O .item {
  padding-bottom: 2rem;
}
.cid-tkfhCpy08O .item-wrapper {
  position: relative;
}
.cid-tkfhCpy08O .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tkfhCpy08O .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tkfhCpy08O .carousel-control,
.cid-tkfhCpy08O .close {
  background: #1b1b1b;
}
.cid-tkfhCpy08O .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tkfhCpy08O .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tkfhCpy08O .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tkfhCpy08O .carousel-control-next span {
  margin-left: 5px;
}
.cid-tkfhCpy08O .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-tkfhCpy08O .close::before {
  content: '\e91a';
}
.cid-tkfhCpy08O .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tkfhCpy08O .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-tkfhCpy08O .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkfhCpy08O .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tkfhCpy08O .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tkfhCpy08O .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tkfhCpy08O .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-tkfhCpy08O .carousel-indicators li.active,
.cid-tkfhCpy08O .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tkfhCpy08O .carousel-indicators li::after,
.cid-tkfhCpy08O .carousel-indicators li::before {
  content: none;
}
.cid-tkfhCpy08O .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tkfhCpy08O .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tkfhCpy08O .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tkfhCpy08O .carousel-indicators {
    display: none;
  }
}
.cid-tkfhCpy08O .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tkfhCpy08O .carousel-inner > .active {
  display: block;
}
.cid-tkfhCpy08O .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkfhCpy08O .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tkfhCpy08O .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tkfhCpy08O .carousel-control,
  .cid-tkfhCpy08O .carousel-indicators,
  .cid-tkfhCpy08O .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tkfhCpy08O .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tkfhCpy08O .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tkfhCpy08O .carousel-indicators .active,
.cid-tkfhCpy08O .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tkfhCpy08O .carousel-indicators .active {
  background: #fff;
}
.cid-tkfhCpy08O .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tkfhCpy08O .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tkfhCpy08O .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tkfhCpy08O .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tkfhCpy08O .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tkfhCpy08O .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tkfhCpy08O .carousel {
  width: 100%;
}
.cid-tkfhCpy08O .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tkfhCpy08O .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tkfhCpy08O .modal.fade .modal-dialog,
.cid-tkfhCpy08O .modal.in .modal-dialog {
  transform: none;
}
.cid-tkfhCpy08O .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tkfhCpy08O H6 {
  text-align: center;
}
.cid-tkcMkuH4QN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tkcMkuH4QN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tkcMkuH4QN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tkcMkuH4QN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tkcMkuH4QN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tkcMkuH4QN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tkcMkuH4QN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tkcMkuH4QN .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tkcMkuH4QN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tkcMkuH4QN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tkcMkuH4QN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tkcMkuH4QN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tkcMkuH4QN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tkcMkuH4QN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tkcMkuH4QN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnkSGV0lWv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tnkSGV0lWv nav.navbar {
  position: fixed;
}
.cid-tnkSGV0lWv .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-tnkSGV0lWv .dropdown-menu {
  padding: 0;
}
.cid-tnkSGV0lWv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tnkSGV0lWv .dropdown-item:hover,
.cid-tnkSGV0lWv .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tnkSGV0lWv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tnkSGV0lWv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tnkSGV0lWv .nav-link {
  position: relative;
}
.cid-tnkSGV0lWv .container {
  display: flex;
  margin: auto;
}
.cid-tnkSGV0lWv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnkSGV0lWv .navbar-caption {
  padding-right: 4rem;
}
.cid-tnkSGV0lWv .dropdown-menu,
.cid-tnkSGV0lWv .navbar.opened {
  background: #ffffff !important;
}
.cid-tnkSGV0lWv .nav-item:focus,
.cid-tnkSGV0lWv .nav-link:focus {
  outline: none;
}
.cid-tnkSGV0lWv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tnkSGV0lWv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnkSGV0lWv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnkSGV0lWv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tnkSGV0lWv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnkSGV0lWv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnkSGV0lWv .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tnkSGV0lWv .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tnkSGV0lWv .navbar.opened {
  transition: all .3s;
}
.cid-tnkSGV0lWv .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tnkSGV0lWv .navbar .navbar-logo img {
  width: auto;
}
.cid-tnkSGV0lWv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnkSGV0lWv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnkSGV0lWv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tnkSGV0lWv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tnkSGV0lWv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnkSGV0lWv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnkSGV0lWv .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: 55%;
}
.cid-tnkSGV0lWv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tnkSGV0lWv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tnkSGV0lWv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tnkSGV0lWv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnkSGV0lWv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnkSGV0lWv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnkSGV0lWv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnkSGV0lWv .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: 55%;
  }
  .cid-tnkSGV0lWv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnkSGV0lWv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnkSGV0lWv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tnkSGV0lWv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tnkSGV0lWv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tnkSGV0lWv .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tnkSGV0lWv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tnkSGV0lWv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnkSGV0lWv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tnkSGV0lWv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnkSGV0lWv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnkSGV0lWv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnkSGV0lWv .dropdown-item.active,
.cid-tnkSGV0lWv .dropdown-item:active {
  background-color: transparent;
}
.cid-tnkSGV0lWv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnkSGV0lWv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnkSGV0lWv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnkSGV0lWv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tnkSGV0lWv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnkSGV0lWv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tnkSGV0lWv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tnkSGV0lWv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tnkSGV0lWv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tnkSGV0lWv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tnkSGV0lWv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnkSGV0lWv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnkSGV0lWv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnkSGV0lWv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnkSGV0lWv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnkSGV0lWv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnkSGV0lWv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnkSGV0lWv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnkSGV0lWv .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tnkSGV0lWv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tnkSGV0lWv .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-tnkSGV0lWv .navbar {
    height: 77px;
  }
  .cid-tnkSGV0lWv .navbar.opened {
    height: auto;
  }
  .cid-tnkSGV0lWv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnkSGX5GIK {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-tnkSGX5GIK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnkSGX5GIK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnkSGX5GIK .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tnkSGX5GIK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnkSGX5GIK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tnkSGX5GIK .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tnkSGX5GIK .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnkSGX5GIK .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tnkSGX5GIK .mbr-text,
.cid-tnkSGX5GIK .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-tnkSGXRnPr {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tnkSGXRnPr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnkSGXRnPr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnkSGXRnPr .item {
  padding-bottom: 2rem;
}
.cid-tnkSGXRnPr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnkSGXRnPr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tnkSGXRnPr .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tnkSGXRnPr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tnkSGXRnPr .carousel-control,
.cid-tnkSGXRnPr .close {
  background: #1b1b1b;
}
.cid-tnkSGXRnPr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tnkSGXRnPr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tnkSGXRnPr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tnkSGXRnPr .carousel-control-next span {
  margin-left: 5px;
}
.cid-tnkSGXRnPr .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-tnkSGXRnPr .close::before {
  content: '\e91a';
}
.cid-tnkSGXRnPr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tnkSGXRnPr .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-tnkSGXRnPr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnkSGXRnPr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnkSGXRnPr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnkSGXRnPr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tnkSGXRnPr .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-tnkSGXRnPr .carousel-indicators li.active,
.cid-tnkSGXRnPr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnkSGXRnPr .carousel-indicators li::after,
.cid-tnkSGXRnPr .carousel-indicators li::before {
  content: none;
}
.cid-tnkSGXRnPr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnkSGXRnPr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tnkSGXRnPr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tnkSGXRnPr .carousel-indicators {
    display: none;
  }
}
.cid-tnkSGXRnPr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnkSGXRnPr .carousel-inner > .active {
  display: block;
}
.cid-tnkSGXRnPr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnkSGXRnPr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnkSGXRnPr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tnkSGXRnPr .carousel-control,
  .cid-tnkSGXRnPr .carousel-indicators,
  .cid-tnkSGXRnPr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tnkSGXRnPr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tnkSGXRnPr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tnkSGXRnPr .carousel-indicators .active,
.cid-tnkSGXRnPr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tnkSGXRnPr .carousel-indicators .active {
  background: #fff;
}
.cid-tnkSGXRnPr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tnkSGXRnPr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tnkSGXRnPr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tnkSGXRnPr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tnkSGXRnPr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tnkSGXRnPr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tnkSGXRnPr .carousel {
  width: 100%;
}
.cid-tnkSGXRnPr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tnkSGXRnPr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tnkSGXRnPr .modal.fade .modal-dialog,
.cid-tnkSGXRnPr .modal.in .modal-dialog {
  transform: none;
}
.cid-tnkSGXRnPr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tnkSGXRnPr H6 {
  text-align: center;
}
.cid-tnkSGXRnPr H4 {
  text-align: center;
}
.cid-tnkSGZUHK6 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnkSGZUHK6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnkSGZUHK6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnkSGZUHK6 .item {
  padding-bottom: 2rem;
}
.cid-tnkSGZUHK6 .item-wrapper {
  position: relative;
}
.cid-tnkSGZUHK6 .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tnkSGZUHK6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tnkSGZUHK6 .carousel-control,
.cid-tnkSGZUHK6 .close {
  background: #1b1b1b;
}
.cid-tnkSGZUHK6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tnkSGZUHK6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tnkSGZUHK6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tnkSGZUHK6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tnkSGZUHK6 .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-tnkSGZUHK6 .close::before {
  content: '\e91a';
}
.cid-tnkSGZUHK6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tnkSGZUHK6 .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-tnkSGZUHK6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnkSGZUHK6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnkSGZUHK6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnkSGZUHK6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tnkSGZUHK6 .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-tnkSGZUHK6 .carousel-indicators li.active,
.cid-tnkSGZUHK6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnkSGZUHK6 .carousel-indicators li::after,
.cid-tnkSGZUHK6 .carousel-indicators li::before {
  content: none;
}
.cid-tnkSGZUHK6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnkSGZUHK6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tnkSGZUHK6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tnkSGZUHK6 .carousel-indicators {
    display: none;
  }
}
.cid-tnkSGZUHK6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnkSGZUHK6 .carousel-inner > .active {
  display: block;
}
.cid-tnkSGZUHK6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnkSGZUHK6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnkSGZUHK6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tnkSGZUHK6 .carousel-control,
  .cid-tnkSGZUHK6 .carousel-indicators,
  .cid-tnkSGZUHK6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tnkSGZUHK6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tnkSGZUHK6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tnkSGZUHK6 .carousel-indicators .active,
.cid-tnkSGZUHK6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tnkSGZUHK6 .carousel-indicators .active {
  background: #fff;
}
.cid-tnkSGZUHK6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tnkSGZUHK6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tnkSGZUHK6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tnkSGZUHK6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tnkSGZUHK6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tnkSGZUHK6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tnkSGZUHK6 .carousel {
  width: 100%;
}
.cid-tnkSGZUHK6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tnkSGZUHK6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tnkSGZUHK6 .modal.fade .modal-dialog,
.cid-tnkSGZUHK6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tnkSGZUHK6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tnkSGZUHK6 H6 {
  text-align: center;
}
.cid-tnkSH0D9Z5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tnkSH0D9Z5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tnkSH0D9Z5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tnkSH0D9Z5 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tnkSH0D9Z5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tnkSH0D9Z5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tnkSH0D9Z5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tnkSH0D9Z5 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tnkSH0D9Z5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tnkSH0D9Z5 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnkSH0D9Z5 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tnkSH0D9Z5 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnkSH0D9Z5 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tnkSH0D9Z5 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tnkSH0D9Z5 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t8Emg0MT4k {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t8Emg0MT4k nav.navbar {
  position: fixed;
}
.cid-t8Emg0MT4k .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-t8Emg0MT4k .dropdown-menu {
  padding: 0;
}
.cid-t8Emg0MT4k .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8Emg0MT4k .dropdown-item:hover,
.cid-t8Emg0MT4k .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-t8Emg0MT4k .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-t8Emg0MT4k .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t8Emg0MT4k .nav-link {
  position: relative;
}
.cid-t8Emg0MT4k .container {
  display: flex;
  margin: auto;
}
.cid-t8Emg0MT4k .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t8Emg0MT4k .navbar-caption {
  padding-right: 4rem;
}
.cid-t8Emg0MT4k .dropdown-menu,
.cid-t8Emg0MT4k .navbar.opened {
  background: #ffffff !important;
}
.cid-t8Emg0MT4k .nav-item:focus,
.cid-t8Emg0MT4k .nav-link:focus {
  outline: none;
}
.cid-t8Emg0MT4k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t8Emg0MT4k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8Emg0MT4k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t8Emg0MT4k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t8Emg0MT4k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t8Emg0MT4k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t8Emg0MT4k .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t8Emg0MT4k .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t8Emg0MT4k .navbar.opened {
  transition: all .3s;
}
.cid-t8Emg0MT4k .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-t8Emg0MT4k .navbar .navbar-logo img {
  width: auto;
}
.cid-t8Emg0MT4k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t8Emg0MT4k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t8Emg0MT4k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t8Emg0MT4k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8Emg0MT4k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t8Emg0MT4k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t8Emg0MT4k .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: 55%;
}
.cid-t8Emg0MT4k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t8Emg0MT4k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t8Emg0MT4k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t8Emg0MT4k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t8Emg0MT4k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t8Emg0MT4k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t8Emg0MT4k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t8Emg0MT4k .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: 55%;
  }
  .cid-t8Emg0MT4k .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t8Emg0MT4k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t8Emg0MT4k .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t8Emg0MT4k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t8Emg0MT4k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t8Emg0MT4k .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t8Emg0MT4k .navbar.navbar-short {
  min-height: 60px;
}
.cid-t8Emg0MT4k .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t8Emg0MT4k .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t8Emg0MT4k .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t8Emg0MT4k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t8Emg0MT4k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t8Emg0MT4k .dropdown-item.active,
.cid-t8Emg0MT4k .dropdown-item:active {
  background-color: transparent;
}
.cid-t8Emg0MT4k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t8Emg0MT4k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t8Emg0MT4k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t8Emg0MT4k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t8Emg0MT4k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t8Emg0MT4k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8Emg0MT4k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t8Emg0MT4k .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t8Emg0MT4k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t8Emg0MT4k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-t8Emg0MT4k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8Emg0MT4k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8Emg0MT4k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8Emg0MT4k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8Emg0MT4k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8Emg0MT4k nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8Emg0MT4k nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8Emg0MT4k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8Emg0MT4k .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t8Emg0MT4k a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t8Emg0MT4k .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-t8Emg0MT4k .navbar {
    height: 77px;
  }
  .cid-t8Emg0MT4k .navbar.opened {
    height: auto;
  }
  .cid-t8Emg0MT4k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8Emg1vWG8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-t8Emg1vWG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8Emg1vWG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8Emg1vWG8 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-t8Emg1vWG8 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8Emg1vWG8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t8Emg1vWG8 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-t8Emg1vWG8 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8Emg1vWG8 .mbr-section-title {
  color: #fafafa;
}
.cid-t8Emg1vWG8 .mbr-text,
.cid-t8Emg1vWG8 .mbr-section-btn {
  color: #fafafa;
}
.cid-t8Emg1UxzV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-t8Emg1UxzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-t8Emg1UxzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t8Emg1UxzV .item {
  padding-bottom: 2rem;
}
.cid-t8Emg1UxzV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t8Emg1UxzV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t8Emg1UxzV .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t8Emg1UxzV .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t8Emg1UxzV .carousel-control,
.cid-t8Emg1UxzV .close {
  background: #1b1b1b;
}
.cid-t8Emg1UxzV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8Emg1UxzV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t8Emg1UxzV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8Emg1UxzV .carousel-control-next span {
  margin-left: 5px;
}
.cid-t8Emg1UxzV .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-t8Emg1UxzV .close::before {
  content: '\e91a';
}
.cid-t8Emg1UxzV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8Emg1UxzV .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-t8Emg1UxzV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8Emg1UxzV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t8Emg1UxzV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8Emg1UxzV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t8Emg1UxzV .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-t8Emg1UxzV .carousel-indicators li.active,
.cid-t8Emg1UxzV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8Emg1UxzV .carousel-indicators li::after,
.cid-t8Emg1UxzV .carousel-indicators li::before {
  content: none;
}
.cid-t8Emg1UxzV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8Emg1UxzV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t8Emg1UxzV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8Emg1UxzV .carousel-indicators {
    display: none;
  }
}
.cid-t8Emg1UxzV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t8Emg1UxzV .carousel-inner > .active {
  display: block;
}
.cid-t8Emg1UxzV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8Emg1UxzV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8Emg1UxzV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8Emg1UxzV .carousel-control,
  .cid-t8Emg1UxzV .carousel-indicators,
  .cid-t8Emg1UxzV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8Emg1UxzV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8Emg1UxzV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8Emg1UxzV .carousel-indicators .active,
.cid-t8Emg1UxzV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t8Emg1UxzV .carousel-indicators .active {
  background: #fff;
}
.cid-t8Emg1UxzV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8Emg1UxzV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8Emg1UxzV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8Emg1UxzV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8Emg1UxzV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8Emg1UxzV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t8Emg1UxzV .carousel {
  width: 100%;
}
.cid-t8Emg1UxzV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t8Emg1UxzV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t8Emg1UxzV .modal.fade .modal-dialog,
.cid-t8Emg1UxzV .modal.in .modal-dialog {
  transform: none;
}
.cid-t8Emg1UxzV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t8Emg1UxzV H6 {
  text-align: center;
}
.cid-tvJUnci7E0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvJUnci7E0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvJUnci7E0 .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-tvJUnci7E0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvJUnci7E0 .row {
  flex-direction: row-reverse;
}
.cid-tvJUnci7E0 img {
  width: 100%;
}
.cid-t8EpEwUbhq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8EpEwUbhq img,
.cid-t8EpEwUbhq .item-img {
  width: 100%;
}
.cid-t8EpEwUbhq .item:focus,
.cid-t8EpEwUbhq span:focus {
  outline: none;
}
.cid-t8EpEwUbhq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t8EpEwUbhq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t8EpEwUbhq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t8EpEwUbhq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-t8EpEwUbhq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8EpEwUbhq .mbr-section-title {
  color: #232323;
}
.cid-t8EpEwUbhq .mbr-text,
.cid-t8EpEwUbhq .mbr-section-btn {
  text-align: left;
}
.cid-t8EpEwUbhq .item-title {
  text-align: left;
}
.cid-t8EpEwUbhq .item-subtitle {
  text-align: center;
}
.cid-tvJV7Mgnwb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tvJV7Mgnwb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvJV7Mgnwb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvJV7Mgnwb .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvJV7Mgnwb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tvJV7Mgnwb .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-t8Emg2UNij {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-t8Emg2UNij .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8Emg2UNij .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8Emg2UNij .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8Emg2UNij .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8Emg2UNij .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8Emg2UNij .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8Emg2UNij .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t8Emg2UNij .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8Emg2UNij .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8Emg2UNij .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8Emg2UNij .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8Emg2UNij .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8Emg2UNij .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8Emg2UNij .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tyJR6lHLEW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tyJR6lHLEW nav.navbar {
  position: fixed;
}
.cid-tyJR6lHLEW .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-tyJR6lHLEW .dropdown-menu {
  padding: 0;
}
.cid-tyJR6lHLEW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tyJR6lHLEW .dropdown-item:hover,
.cid-tyJR6lHLEW .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tyJR6lHLEW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tyJR6lHLEW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tyJR6lHLEW .nav-link {
  position: relative;
}
.cid-tyJR6lHLEW .container {
  display: flex;
  margin: auto;
}
.cid-tyJR6lHLEW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tyJR6lHLEW .navbar-caption {
  padding-right: 4rem;
}
.cid-tyJR6lHLEW .dropdown-menu,
.cid-tyJR6lHLEW .navbar.opened {
  background: #ffffff !important;
}
.cid-tyJR6lHLEW .nav-item:focus,
.cid-tyJR6lHLEW .nav-link:focus {
  outline: none;
}
.cid-tyJR6lHLEW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tyJR6lHLEW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tyJR6lHLEW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tyJR6lHLEW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tyJR6lHLEW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tyJR6lHLEW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tyJR6lHLEW .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tyJR6lHLEW .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tyJR6lHLEW .navbar.opened {
  transition: all .3s;
}
.cid-tyJR6lHLEW .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tyJR6lHLEW .navbar .navbar-logo img {
  width: auto;
}
.cid-tyJR6lHLEW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tyJR6lHLEW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tyJR6lHLEW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyJR6lHLEW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tyJR6lHLEW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tyJR6lHLEW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tyJR6lHLEW .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: 55%;
}
.cid-tyJR6lHLEW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tyJR6lHLEW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tyJR6lHLEW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tyJR6lHLEW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tyJR6lHLEW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tyJR6lHLEW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tyJR6lHLEW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tyJR6lHLEW .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: 55%;
  }
  .cid-tyJR6lHLEW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tyJR6lHLEW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tyJR6lHLEW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tyJR6lHLEW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tyJR6lHLEW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tyJR6lHLEW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tyJR6lHLEW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tyJR6lHLEW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tyJR6lHLEW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tyJR6lHLEW .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tyJR6lHLEW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tyJR6lHLEW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tyJR6lHLEW .dropdown-item.active,
.cid-tyJR6lHLEW .dropdown-item:active {
  background-color: transparent;
}
.cid-tyJR6lHLEW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tyJR6lHLEW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tyJR6lHLEW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tyJR6lHLEW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tyJR6lHLEW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tyJR6lHLEW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tyJR6lHLEW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tyJR6lHLEW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tyJR6lHLEW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tyJR6lHLEW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tyJR6lHLEW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tyJR6lHLEW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tyJR6lHLEW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tyJR6lHLEW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tyJR6lHLEW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyJR6lHLEW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tyJR6lHLEW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tyJR6lHLEW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tyJR6lHLEW .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tyJR6lHLEW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tyJR6lHLEW .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-tyJR6lHLEW .navbar {
    height: 77px;
  }
  .cid-tyJR6lHLEW .navbar.opened {
    height: auto;
  }
  .cid-tyJR6lHLEW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyJR6mmHoL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tyJR6mmHoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyJR6mmHoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyJR6mmHoL .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tyJR6mmHoL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyJR6mmHoL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tyJR6mmHoL .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tyJR6mmHoL .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyJR6mmHoL .mbr-section-title {
  color: #fafafa;
}
.cid-tyJR6mmHoL .mbr-text,
.cid-tyJR6mmHoL .mbr-section-btn {
  color: #fafafa;
}
.cid-tyJR6mHOzM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tyJR6mHOzM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyJR6mHOzM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyJR6mHOzM .item {
  padding-bottom: 2rem;
}
.cid-tyJR6mHOzM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tyJR6mHOzM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tyJR6mHOzM .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tyJR6mHOzM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tyJR6mHOzM .carousel-control,
.cid-tyJR6mHOzM .close {
  background: #1b1b1b;
}
.cid-tyJR6mHOzM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tyJR6mHOzM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tyJR6mHOzM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tyJR6mHOzM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tyJR6mHOzM .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-tyJR6mHOzM .close::before {
  content: '\e91a';
}
.cid-tyJR6mHOzM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyJR6mHOzM .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-tyJR6mHOzM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyJR6mHOzM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tyJR6mHOzM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tyJR6mHOzM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tyJR6mHOzM .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-tyJR6mHOzM .carousel-indicators li.active,
.cid-tyJR6mHOzM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tyJR6mHOzM .carousel-indicators li::after,
.cid-tyJR6mHOzM .carousel-indicators li::before {
  content: none;
}
.cid-tyJR6mHOzM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tyJR6mHOzM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tyJR6mHOzM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tyJR6mHOzM .carousel-indicators {
    display: none;
  }
}
.cid-tyJR6mHOzM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tyJR6mHOzM .carousel-inner > .active {
  display: block;
}
.cid-tyJR6mHOzM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyJR6mHOzM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyJR6mHOzM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tyJR6mHOzM .carousel-control,
  .cid-tyJR6mHOzM .carousel-indicators,
  .cid-tyJR6mHOzM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tyJR6mHOzM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tyJR6mHOzM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tyJR6mHOzM .carousel-indicators .active,
.cid-tyJR6mHOzM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tyJR6mHOzM .carousel-indicators .active {
  background: #fff;
}
.cid-tyJR6mHOzM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tyJR6mHOzM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tyJR6mHOzM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tyJR6mHOzM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tyJR6mHOzM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tyJR6mHOzM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tyJR6mHOzM .carousel {
  width: 100%;
}
.cid-tyJR6mHOzM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tyJR6mHOzM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tyJR6mHOzM .modal.fade .modal-dialog,
.cid-tyJR6mHOzM .modal.in .modal-dialog {
  transform: none;
}
.cid-tyJR6mHOzM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tyJR6mHOzM H6 {
  text-align: center;
}
.cid-tyJR6nqaAY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tyJR6nqaAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyJR6nqaAY .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-tyJR6nqaAY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tyJR6nqaAY .row {
  flex-direction: row-reverse;
}
.cid-tyJR6nqaAY img {
  width: 100%;
}
.cid-tyJR6nMICH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyJR6nMICH img,
.cid-tyJR6nMICH .item-img {
  width: 100%;
}
.cid-tyJR6nMICH .item:focus,
.cid-tyJR6nMICH span:focus {
  outline: none;
}
.cid-tyJR6nMICH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tyJR6nMICH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tyJR6nMICH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tyJR6nMICH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tyJR6nMICH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tyJR6nMICH .mbr-section-title {
  color: #232323;
}
.cid-tyJR6nMICH .mbr-text,
.cid-tyJR6nMICH .mbr-section-btn {
  text-align: left;
}
.cid-tyJR6nMICH .item-title {
  text-align: left;
}
.cid-tyJR6nMICH .item-subtitle {
  text-align: center;
}
.cid-tyJR6oq2Eu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tyJR6oq2Eu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyJR6oq2Eu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tyJR6oq2Eu .text-wrapper {
    padding: 2rem;
  }
}
.cid-tyJR6oq2Eu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tyJR6oq2Eu .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tyJR6oUlKS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tyJR6oUlKS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tyJR6oUlKS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tyJR6oUlKS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tyJR6oUlKS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tyJR6oUlKS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tyJR6oUlKS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tyJR6oUlKS .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tyJR6oUlKS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tyJR6oUlKS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyJR6oUlKS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tyJR6oUlKS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyJR6oUlKS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tyJR6oUlKS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tyJR6oUlKS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tiJHtHre55 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tiJHtHre55 nav.navbar {
  position: fixed;
}
.cid-tiJHtHre55 .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-tiJHtHre55 .dropdown-menu {
  padding: 0;
}
.cid-tiJHtHre55 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiJHtHre55 .dropdown-item:hover,
.cid-tiJHtHre55 .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tiJHtHre55 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tiJHtHre55 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tiJHtHre55 .nav-link {
  position: relative;
}
.cid-tiJHtHre55 .container {
  display: flex;
  margin: auto;
}
.cid-tiJHtHre55 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tiJHtHre55 .navbar-caption {
  padding-right: 4rem;
}
.cid-tiJHtHre55 .dropdown-menu,
.cid-tiJHtHre55 .navbar.opened {
  background: #ffffff !important;
}
.cid-tiJHtHre55 .nav-item:focus,
.cid-tiJHtHre55 .nav-link:focus {
  outline: none;
}
.cid-tiJHtHre55 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tiJHtHre55 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiJHtHre55 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tiJHtHre55 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tiJHtHre55 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tiJHtHre55 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tiJHtHre55 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tiJHtHre55 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tiJHtHre55 .navbar.opened {
  transition: all .3s;
}
.cid-tiJHtHre55 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tiJHtHre55 .navbar .navbar-logo img {
  width: auto;
}
.cid-tiJHtHre55 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tiJHtHre55 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tiJHtHre55 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tiJHtHre55 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tiJHtHre55 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tiJHtHre55 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tiJHtHre55 .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: 55%;
}
.cid-tiJHtHre55 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tiJHtHre55 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tiJHtHre55 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tiJHtHre55 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tiJHtHre55 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tiJHtHre55 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tiJHtHre55 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tiJHtHre55 .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: 55%;
  }
  .cid-tiJHtHre55 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tiJHtHre55 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tiJHtHre55 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tiJHtHre55 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tiJHtHre55 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tiJHtHre55 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tiJHtHre55 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tiJHtHre55 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tiJHtHre55 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tiJHtHre55 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tiJHtHre55 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tiJHtHre55 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tiJHtHre55 .dropdown-item.active,
.cid-tiJHtHre55 .dropdown-item:active {
  background-color: transparent;
}
.cid-tiJHtHre55 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tiJHtHre55 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tiJHtHre55 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tiJHtHre55 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tiJHtHre55 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tiJHtHre55 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiJHtHre55 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tiJHtHre55 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tiJHtHre55 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tiJHtHre55 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tiJHtHre55 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tiJHtHre55 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tiJHtHre55 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tiJHtHre55 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tiJHtHre55 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiJHtHre55 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tiJHtHre55 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tiJHtHre55 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiJHtHre55 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tiJHtHre55 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tiJHtHre55 .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-tiJHtHre55 .navbar {
    height: 77px;
  }
  .cid-tiJHtHre55 .navbar.opened {
    height: auto;
  }
  .cid-tiJHtHre55 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tiJHtJ4wiX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tiJHtJ4wiX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiJHtJ4wiX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiJHtJ4wiX .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tiJHtJ4wiX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tiJHtJ4wiX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tiJHtJ4wiX .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tiJHtJ4wiX .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tiJHtJ4wiX .mbr-section-title {
  color: #fafafa;
}
.cid-tiJHtJ4wiX .mbr-text,
.cid-tiJHtJ4wiX .mbr-section-btn {
  color: #fafafa;
}
.cid-tiJHtJM7cH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tiJHtJM7cH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiJHtJM7cH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiJHtJM7cH .item {
  padding-bottom: 2rem;
}
.cid-tiJHtJM7cH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tiJHtJM7cH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tiJHtJM7cH .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tiJHtJM7cH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tiJHtJM7cH .carousel-control,
.cid-tiJHtJM7cH .close {
  background: #1b1b1b;
}
.cid-tiJHtJM7cH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tiJHtJM7cH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tiJHtJM7cH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tiJHtJM7cH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tiJHtJM7cH .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-tiJHtJM7cH .close::before {
  content: '\e91a';
}
.cid-tiJHtJM7cH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tiJHtJM7cH .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-tiJHtJM7cH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiJHtJM7cH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tiJHtJM7cH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tiJHtJM7cH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tiJHtJM7cH .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-tiJHtJM7cH .carousel-indicators li.active,
.cid-tiJHtJM7cH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tiJHtJM7cH .carousel-indicators li::after,
.cid-tiJHtJM7cH .carousel-indicators li::before {
  content: none;
}
.cid-tiJHtJM7cH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tiJHtJM7cH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tiJHtJM7cH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tiJHtJM7cH .carousel-indicators {
    display: none;
  }
}
.cid-tiJHtJM7cH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tiJHtJM7cH .carousel-inner > .active {
  display: block;
}
.cid-tiJHtJM7cH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiJHtJM7cH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tiJHtJM7cH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tiJHtJM7cH .carousel-control,
  .cid-tiJHtJM7cH .carousel-indicators,
  .cid-tiJHtJM7cH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tiJHtJM7cH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tiJHtJM7cH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tiJHtJM7cH .carousel-indicators .active,
.cid-tiJHtJM7cH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tiJHtJM7cH .carousel-indicators .active {
  background: #fff;
}
.cid-tiJHtJM7cH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tiJHtJM7cH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tiJHtJM7cH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tiJHtJM7cH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tiJHtJM7cH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tiJHtJM7cH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tiJHtJM7cH .carousel {
  width: 100%;
}
.cid-tiJHtJM7cH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tiJHtJM7cH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tiJHtJM7cH .modal.fade .modal-dialog,
.cid-tiJHtJM7cH .modal.in .modal-dialog {
  transform: none;
}
.cid-tiJHtJM7cH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tiJHtJM7cH H6 {
  text-align: center;
}
.cid-tiJHtKO8Dq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tiJHtKO8Dq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tiJHtKO8Dq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tiJHtKO8Dq .item {
  padding-bottom: 2rem;
}
.cid-tiJHtKO8Dq .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tiJHtKO8Dq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tiJHtKO8Dq .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tiJHtKO8Dq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tiJHtKO8Dq .carousel-control,
.cid-tiJHtKO8Dq .close {
  background: #1b1b1b;
}
.cid-tiJHtKO8Dq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tiJHtKO8Dq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tiJHtKO8Dq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tiJHtKO8Dq .carousel-control-next span {
  margin-left: 5px;
}
.cid-tiJHtKO8Dq .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-tiJHtKO8Dq .close::before {
  content: '\e91a';
}
.cid-tiJHtKO8Dq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tiJHtKO8Dq .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-tiJHtKO8Dq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiJHtKO8Dq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tiJHtKO8Dq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tiJHtKO8Dq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tiJHtKO8Dq .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-tiJHtKO8Dq .carousel-indicators li.active,
.cid-tiJHtKO8Dq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tiJHtKO8Dq .carousel-indicators li::after,
.cid-tiJHtKO8Dq .carousel-indicators li::before {
  content: none;
}
.cid-tiJHtKO8Dq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tiJHtKO8Dq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tiJHtKO8Dq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tiJHtKO8Dq .carousel-indicators {
    display: none;
  }
}
.cid-tiJHtKO8Dq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tiJHtKO8Dq .carousel-inner > .active {
  display: block;
}
.cid-tiJHtKO8Dq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiJHtKO8Dq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tiJHtKO8Dq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tiJHtKO8Dq .carousel-control,
  .cid-tiJHtKO8Dq .carousel-indicators,
  .cid-tiJHtKO8Dq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tiJHtKO8Dq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tiJHtKO8Dq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tiJHtKO8Dq .carousel-indicators .active,
.cid-tiJHtKO8Dq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tiJHtKO8Dq .carousel-indicators .active {
  background: #fff;
}
.cid-tiJHtKO8Dq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tiJHtKO8Dq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tiJHtKO8Dq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tiJHtKO8Dq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tiJHtKO8Dq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tiJHtKO8Dq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tiJHtKO8Dq .carousel {
  width: 100%;
}
.cid-tiJHtKO8Dq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tiJHtKO8Dq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tiJHtKO8Dq .modal.fade .modal-dialog,
.cid-tiJHtKO8Dq .modal.in .modal-dialog {
  transform: none;
}
.cid-tiJHtKO8Dq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tiJHtKO8Dq H6 {
  text-align: center;
}
.cid-tiJHtLvfbh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tiJHtLvfbh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tiJHtLvfbh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tiJHtLvfbh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tiJHtLvfbh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tiJHtLvfbh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tiJHtLvfbh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tiJHtLvfbh .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tiJHtLvfbh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tiJHtLvfbh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tiJHtLvfbh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tiJHtLvfbh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tiJHtLvfbh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tiJHtLvfbh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tiJHtLvfbh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tzLXeebEF9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tzLXeebEF9 nav.navbar {
  position: fixed;
}
.cid-tzLXeebEF9 .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-tzLXeebEF9 .dropdown-menu {
  padding: 0;
}
.cid-tzLXeebEF9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzLXeebEF9 .dropdown-item:hover,
.cid-tzLXeebEF9 .dropdown-item:focus {
  background: #4116ea !important;
  color: white !important;
}
.cid-tzLXeebEF9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tzLXeebEF9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tzLXeebEF9 .nav-link {
  position: relative;
}
.cid-tzLXeebEF9 .container {
  display: flex;
  margin: auto;
}
.cid-tzLXeebEF9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tzLXeebEF9 .navbar-caption {
  padding-right: 4rem;
}
.cid-tzLXeebEF9 .dropdown-menu,
.cid-tzLXeebEF9 .navbar.opened {
  background: #ffffff !important;
}
.cid-tzLXeebEF9 .nav-item:focus,
.cid-tzLXeebEF9 .nav-link:focus {
  outline: none;
}
.cid-tzLXeebEF9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tzLXeebEF9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzLXeebEF9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tzLXeebEF9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tzLXeebEF9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tzLXeebEF9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tzLXeebEF9 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tzLXeebEF9 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tzLXeebEF9 .navbar.opened {
  transition: all .3s;
}
.cid-tzLXeebEF9 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tzLXeebEF9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tzLXeebEF9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tzLXeebEF9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tzLXeebEF9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tzLXeebEF9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tzLXeebEF9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tzLXeebEF9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tzLXeebEF9 .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: 55%;
}
.cid-tzLXeebEF9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tzLXeebEF9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tzLXeebEF9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tzLXeebEF9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tzLXeebEF9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tzLXeebEF9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tzLXeebEF9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tzLXeebEF9 .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: 55%;
  }
  .cid-tzLXeebEF9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tzLXeebEF9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tzLXeebEF9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tzLXeebEF9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tzLXeebEF9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tzLXeebEF9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tzLXeebEF9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tzLXeebEF9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tzLXeebEF9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tzLXeebEF9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tzLXeebEF9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tzLXeebEF9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tzLXeebEF9 .dropdown-item.active,
.cid-tzLXeebEF9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tzLXeebEF9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tzLXeebEF9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tzLXeebEF9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tzLXeebEF9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tzLXeebEF9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tzLXeebEF9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzLXeebEF9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tzLXeebEF9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tzLXeebEF9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tzLXeebEF9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-tzLXeebEF9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzLXeebEF9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzLXeebEF9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzLXeebEF9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzLXeebEF9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzLXeebEF9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzLXeebEF9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzLXeebEF9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzLXeebEF9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tzLXeebEF9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tzLXeebEF9 .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-tzLXeebEF9 .navbar {
    height: 77px;
  }
  .cid-tzLXeebEF9 .navbar.opened {
    height: auto;
  }
  .cid-tzLXeebEF9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzLXeexIWc {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tzLXeexIWc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzLXeexIWc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzLXeexIWc .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tzLXeexIWc .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tzLXeexIWc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tzLXeexIWc .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tzLXeexIWc .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tzLXeexIWc .mbr-section-title {
  color: #fafafa;
}
.cid-tzLXeexIWc .mbr-text,
.cid-tzLXeexIWc .mbr-section-btn {
  color: #fafafa;
}
.cid-tzLXeePlOP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tzLXeePlOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzLXeePlOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzLXeePlOP .item {
  padding-bottom: 2rem;
}
.cid-tzLXeePlOP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tzLXeePlOP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tzLXeePlOP .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tzLXeePlOP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tzLXeePlOP .carousel-control,
.cid-tzLXeePlOP .close {
  background: #1b1b1b;
}
.cid-tzLXeePlOP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tzLXeePlOP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tzLXeePlOP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tzLXeePlOP .carousel-control-next span {
  margin-left: 5px;
}
.cid-tzLXeePlOP .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-tzLXeePlOP .close::before {
  content: '\e91a';
}
.cid-tzLXeePlOP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tzLXeePlOP .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-tzLXeePlOP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzLXeePlOP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzLXeePlOP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tzLXeePlOP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tzLXeePlOP .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-tzLXeePlOP .carousel-indicators li.active,
.cid-tzLXeePlOP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tzLXeePlOP .carousel-indicators li::after,
.cid-tzLXeePlOP .carousel-indicators li::before {
  content: none;
}
.cid-tzLXeePlOP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tzLXeePlOP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tzLXeePlOP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tzLXeePlOP .carousel-indicators {
    display: none;
  }
}
.cid-tzLXeePlOP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tzLXeePlOP .carousel-inner > .active {
  display: block;
}
.cid-tzLXeePlOP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzLXeePlOP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tzLXeePlOP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tzLXeePlOP .carousel-control,
  .cid-tzLXeePlOP .carousel-indicators,
  .cid-tzLXeePlOP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tzLXeePlOP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tzLXeePlOP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tzLXeePlOP .carousel-indicators .active,
.cid-tzLXeePlOP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tzLXeePlOP .carousel-indicators .active {
  background: #fff;
}
.cid-tzLXeePlOP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tzLXeePlOP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tzLXeePlOP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tzLXeePlOP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tzLXeePlOP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tzLXeePlOP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tzLXeePlOP .carousel {
  width: 100%;
}
.cid-tzLXeePlOP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tzLXeePlOP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tzLXeePlOP .modal.fade .modal-dialog,
.cid-tzLXeePlOP .modal.in .modal-dialog {
  transform: none;
}
.cid-tzLXeePlOP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tzLXeePlOP H6 {
  text-align: center;
}
.cid-tzLXefKrdo {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpeg");
}
.cid-tzLXefKrdo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzLXefKrdo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzLXefKrdo .item {
  padding-bottom: 2rem;
}
.cid-tzLXefKrdo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tzLXefKrdo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tzLXefKrdo .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 #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tzLXefKrdo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tzLXefKrdo .carousel-control,
.cid-tzLXefKrdo .close {
  background: #1b1b1b;
}
.cid-tzLXefKrdo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tzLXefKrdo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tzLXefKrdo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tzLXefKrdo .carousel-control-next span {
  margin-left: 5px;
}
.cid-tzLXefKrdo .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-tzLXefKrdo .close::before {
  content: '\e91a';
}
.cid-tzLXefKrdo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tzLXefKrdo .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-tzLXefKrdo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzLXefKrdo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tzLXefKrdo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tzLXefKrdo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tzLXefKrdo .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-tzLXefKrdo .carousel-indicators li.active,
.cid-tzLXefKrdo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tzLXefKrdo .carousel-indicators li::after,
.cid-tzLXefKrdo .carousel-indicators li::before {
  content: none;
}
.cid-tzLXefKrdo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tzLXefKrdo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tzLXefKrdo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tzLXefKrdo .carousel-indicators {
    display: none;
  }
}
.cid-tzLXefKrdo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tzLXefKrdo .carousel-inner > .active {
  display: block;
}
.cid-tzLXefKrdo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzLXefKrdo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tzLXefKrdo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tzLXefKrdo .carousel-control,
  .cid-tzLXefKrdo .carousel-indicators,
  .cid-tzLXefKrdo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tzLXefKrdo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tzLXefKrdo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tzLXefKrdo .carousel-indicators .active,
.cid-tzLXefKrdo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tzLXefKrdo .carousel-indicators .active {
  background: #fff;
}
.cid-tzLXefKrdo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tzLXefKrdo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tzLXefKrdo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tzLXefKrdo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tzLXefKrdo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tzLXefKrdo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tzLXefKrdo .carousel {
  width: 100%;
}
.cid-tzLXefKrdo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tzLXefKrdo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tzLXefKrdo .modal.fade .modal-dialog,
.cid-tzLXefKrdo .modal.in .modal-dialog {
  transform: none;
}
.cid-tzLXefKrdo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tzLXefKrdo H6 {
  text-align: center;
}
.cid-tzLXegbDA4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tzLXegbDA4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tzLXegbDA4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tzLXegbDA4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tzLXegbDA4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tzLXegbDA4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tzLXegbDA4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tzLXegbDA4 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tzLXegbDA4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tzLXegbDA4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tzLXegbDA4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tzLXegbDA4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tzLXegbDA4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tzLXegbDA4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tzLXegbDA4 .media-container-row .row-copirayt p {
  width: 100%;
}
