.btn {
  border-width: 2px;
}
body {
  font-family: 'Outfit', sans-serif;
}
.display-1 {
  font-family: 'Outfit', sans-serif;
  font-size: 6rem;
  line-height: 0.9;
}
.display-1 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-2 {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 4.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.2rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #bbbbbb !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #353535 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.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;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.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;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.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;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.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: #bbbbbb;
  color: #bbbbbb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #353535;
  color: #353535;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  border-color: #0a0a0a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !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: #bbbbbb !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #353535 !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: #bbbbbb !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: #020202 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bbbbbb;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #353535;
}
.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: #bbbbbb;
  border-color: #bbbbbb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bbbbbb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbfbfb;
}
.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: #a8a8a8;
}
.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: 'Outfit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bbbbbb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #bbbbbb;
}
/* 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: #bbbbbb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bbbbbb;
}
.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: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bbbbbb !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='%23bbbbbb' %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-t0pQmq4nMM .navbar-dropdown {
  position: relative !important;
}
.cid-t0pQmq4nMM .show .link,
.cid-t0pQmq4nMM .show .mbr-iconfont,
.cid-t0pQmq4nMM .show .phone {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-t0pQmq4nMM .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-t0pQmq4nMM .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .dropdown-menu {
  padding: 1rem 0;
}
.cid-t0pQmq4nMM .dropdown-item {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item span {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item:hover,
.cid-t0pQmq4nMM .dropdown-item:focus {
  color: #bbbbbb !important;
}
.cid-t0pQmq4nMM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0pQmq4nMM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0pQmq4nMM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0pQmq4nMM .nav-link {
  position: relative;
}
.cid-t0pQmq4nMM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .container {
    flex-wrap: nowrap;
  }
}
.cid-t0pQmq4nMM .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown-menu,
.cid-t0pQmq4nMM .navbar.opened {
  background: #000000 !important;
}
.cid-t0pQmq4nMM .nav-item:focus,
.cid-t0pQmq4nMM .nav-link:focus {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0pQmq4nMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0pQmq4nMM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.opened {
  transition: all 0.3s;
}
.cid-t0pQmq4nMM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0pQmq4nMM .navbar .navbar-logo img {
  width: auto;
}
.cid-t0pQmq4nMM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar.collapsed {
  justify-content: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0pQmq4nMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t0pQmq4nMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0pQmq4nMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0pQmq4nMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t0pQmq4nMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0pQmq4nMM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0pQmq4nMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0pQmq4nMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0pQmq4nMM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0pQmq4nMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0pQmq4nMM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown-item.active,
.cid-t0pQmq4nMM .dropdown-item:active {
  background-color: transparent;
}
.cid-t0pQmq4nMM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0pQmq4nMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0pQmq4nMM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0pQmq4nMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0pQmq4nMM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t0pQmq4nMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar {
    height: 70px;
  }
  .cid-t0pQmq4nMM .navbar.opened {
    height: auto;
  }
  .cid-t0pQmq4nMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0pQm4J6tO {
  padding-top: 34rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pexels-jeshootscom-834892-2000x1333.jpg");
}
@media (max-width: 767px) {
  .cid-t0pQm4J6tO {
    padding-top: 30.6rem;
  }
}
.cid-t0pQm4J6tO .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-t0pQm4J6tO .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-t0pQm4J6tO .d-flex {
    justify-content: center;
  }
}
.cid-t0pQm4J6tO .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-t0pQm4J6tO .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-t0pQm4J6tO .link-wrapper {
    justify-content: center;
  }
}
.cid-t0pQm4J6tO .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-t0pQm4J6tO .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-t0pQm4J6tO .mbr-section-subtitle:hover {
  background: #bbbbbb;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-t0pQm4J6tO .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-t0pQm4J6tO .link,
.cid-t0pQm4J6tO .link-icon {
  color: #000000;
}
.cid-t0pQpaMdPP {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t0pQpaMdPP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-t0pQpaMdPP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t0pQpaMdPP h3 {
  max-width: 600px;
  margin-right: auto;
  margin-left: 0;
}
.cid-t0pQpaMdPP h4,
.cid-t0pQpaMdPP .mbr-section-btn {
  max-width: 800px;
  margin-right: 0;
  margin-left: auto;
}
.cid-t0pQpaMdPP .mbr-section-subtitle,
.cid-t0pQpaMdPP .mbr-section-btn {
  text-align: center;
}
.cid-uqFAv8RLdg {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-uqFAv8RLdg img {
  transition: all 0.3s;
  height: 400px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uqFAv8RLdg img {
    height: 300px;
  }
}
.cid-uqFAv8RLdg .item-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  background: #bbbbbb;
  padding: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
  .cid-uqFAv8RLdg .item-content {
    bottom: 0;
  }
}
.cid-uqFAv8RLdg .slide-content {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uqFAv8RLdg .slide-content:hover img {
  transform: scale(1.15) rotate(-5deg);
}
.cid-uqFAv8RLdg .slide-content:hover .item-content {
  bottom: 0;
}
.cid-uqFAv8RLdg .img-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  padding: 1rem 0rem;
  color: #000000;
  width: 100%;
}
.cid-uqFAv8RLdg .img-link span {
  font-size: 2rem;
  color: currentColor;
}
.cid-uqFAv8RLdg .item:focus,
.cid-uqFAv8RLdg span:focus {
  outline: none;
}
.cid-uqFAv8RLdg .item-wrapper {
  position: relative;
}
.cid-uqFAv8RLdg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uqFAv8RLdg .mbr-section-title {
  color: #ffffff;
}
.cid-uqFAv8RLdg .mbr-text,
.cid-uqFAv8RLdg .mbr-section-btn {
  text-align: left;
}
.cid-uqFAv8RLdg .item-title {
  text-align: left;
}
.cid-uqFAv8RLdg .item-subtitle {
  text-align: left;
}
.cid-uqFAv8RLdg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uqFAv8RLdg .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uqFAv8RLdg .embla__button--next,
.cid-uqFAv8RLdg .embla__button--prev {
  display: flex;
}
.cid-uqFAv8RLdg .embla__button--prev span {
  padding-right: 7px;
}
.cid-uqFAv8RLdg .embla__button--next span {
  padding-left: 3px;
}
.cid-uqFAv8RLdg .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  color: black;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uqFAv8RLdg .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uqFAv8RLdg .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uqFAv8RLdg .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 1400px) {
  .cid-uqFAv8RLdg .embla__button {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: black;
  }
}
@media (max-width: 767px) {
  .cid-uqFAv8RLdg .embla__button {
    top: auto;
    margin-top: 1rem;
  }
}
.cid-uqFAv8RLdg .embla {
  position: relative;
  width: 100%;
}
.cid-uqFAv8RLdg .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uqFAv8RLdg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uqFAv8RLdg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uqFAv8RLdg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uqFAv8RLdg .img-link,
.cid-uqFAv8RLdg .link-icon {
  color: #000000;
}
.cid-uqFAv8RLdg .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ttoQoZsYgX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ttoQoZsYgX .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-ttoQoZsYgX img {
  width: 100%;
}
.cid-ttoQoZsYgX .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bbbbbb;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-ttoQoZsYgX .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ttoQoZsYgX .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ttoQoZsYgX .contents {
  margin-top: 36px;
}
.cid-ttoQoZsYgX .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-ttoQoZsYgX .mbr-section-btn {
  margin-top: 8px;
}
.cid-ttoQoZsYgX .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-ttoQoZsYgX .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ttoQoZsYgX .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ttoQoZsYgX .contents .mbr-text,
.cid-ttoQoZsYgX .mbr-section-btn {
  color: #ffffff;
}
.cid-ttoQoZsYgX .main-title {
  color: #ffffff;
  text-align: center;
}
.cid-ttoQoZsYgX .mbr-text,
.cid-ttoQoZsYgX .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ttozG7LvmV {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ttozG7LvmV img {
  width: 100%;
}
.cid-ttozG7LvmV .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #bbbbbb;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-ttozG7LvmV .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ttozG7LvmV .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ttozG7LvmV .contents {
  margin-top: 36px;
}
.cid-ttozG7LvmV .contents .content-text {
  color: #606060;
  font-weight: 300;
}
.cid-ttozG7LvmV .mbr-section-btn {
  margin-top: 8px;
}
.cid-ttozG7LvmV .mbr-section-btn .btn {
  padding: 18px 26px;
}
.cid-ttozG7LvmV .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ttozG7LvmV .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ttozG7LvmV .main-title {
  color: #ffffff;
  text-align: center;
}
.cid-ttozG7LvmV .contents .mbr-text,
.cid-ttozG7LvmV .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-tPkPsdaNMC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tPkPsdaNMC .mbr-section-title {
  color: #ffffff;
}
.cid-tPkPsdaNMC .line {
  width: 100%;
  height: 2px;
  background: currentColor;
  margin-bottom: 8rem;
}
.cid-tPkPsdaNMC .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tPkPsdaNMC .d-flex {
    justify-content: center;
  }
}
.cid-tPkPsdaNMC .col-lg-4 {
  display: flex;
  align-items: flex-end;
}
.cid-tPkPsdaNMC .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tPkPsdaNMC .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tPkPsdaNMC .link-wrapper {
    justify-content: center;
  }
}
.cid-tPkPsdaNMC .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tPkPsdaNMC .link,
.cid-tPkPsdaNMC .link-icon {
  color: #ffffff;
}
.cid-tPkPsdaNMC .mbr-text,
.cid-tPkPsdaNMC .line {
  color: #ffffff;
}
.cid-tPkPsdaNMC .mbr-section-title,
.cid-tPkPsdaNMC .line {
  color: #ffffff;
}
.cid-tPkPsdaNMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPkPsdaNMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPkISqjd4h {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tPkISqjd4h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPkISqjd4h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPkISqjd4h .container-fluid {
  margin: 0;
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tPkISqjd4h .container-fluid {
    padding: 0 12px;
  }
}
.cid-tPkISqjd4h .container-fluid .row {
  padding: 0;
}
.cid-tPkISqjd4h .image-wrap {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tPkISqjd4h .image-wrapper {
    margin-bottom: 70px;
  }
}
.cid-tPkISqjd4h .image-wrapper img {
  height: 520px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tPkISqjd4h .image-wrapper img {
    height: 400px;
    margin-bottom: 100px;
  }
}
.cid-tPkISqjd4h .cards-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 174px 0 60px;
}
@media (min-width: 1500px) {
  .cid-tPkISqjd4h .cards-wrap {
    padding: 0 285px 0 60px;
  }
}
@media (max-width: 1200px) {
  .cid-tPkISqjd4h .cards-wrap {
    padding: 0 100px 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-tPkISqjd4h .cards-wrap {
    padding: 0 25px;
  }
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card {
  margin-bottom: 25px;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header {
  border: none;
  padding: 2px 0 9px;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-90deg);
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title:not(.collapsed) .panel-title-edit::before {
  opacity: .8;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title:hover .panel-title-edit::before {
  opacity: .8;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title .panel-number {
  min-width: 25px;
  margin-right: 25px;
  margin-bottom: 0;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  position: relative;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title .panel-title-edit::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(99deg, #000000 0, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .card-header .panel-title .mbr-iconfont {
  margin-left: 25px;
  transform: rotate(90deg);
  transition: all 0.3s ease-out;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .panel-collapse .panel-body {
  padding: 18px 0 0 50px;
  border-top: 1px solid #282828;
}
.cid-tPkISqjd4h .cards-wrap .tab-content .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tPkISqjd4h .panel-number {
  color: #b6b6b6;
}
.cid-tPkISqjd4h .panel-title-edit,
.cid-tPkISqjd4h .mbr-iconfont {
  color: #ffffff;
}
.cid-tPkISqjd4h .panel-text {
  color: #b6b6b6;
}
.cid-uqFDRSdKOh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uqFDRSdKOh img {
  width: 150px;
  margin: auto;
  transition: all 0.3s;
}
.cid-uqFDRSdKOh .card {
  transition: all 0.3s;
  height: 200px;
  padding: 1rem 0;
  margin: 1rem;
  background: #bbbbbb;
  width: 200px;
  border-radius: 50%;
}
.cid-uqFDRSdKOh .card:hover {
  background: #ff8a8a;
}
.cid-uqFDRSdKOh .card:hover img {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .cid-uqFDRSdKOh .card {
    max-width: 20%;
  }
}
.cid-uqFDRSdKOh .mbr-section-title {
  color: #ffffff;
}
.cid-uqFDRSdKOh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqFDRSdKOh .mbr-text {
  color: #ffffff;
}
.cid-uqKG5pzMux {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uqKG5pzMux img {
  width: 150px;
  margin: auto;
  transition: all 0.3s;
}
.cid-uqKG5pzMux .card {
  transition: all 0.3s;
  height: 200px;
  padding: 1rem 0;
  margin: 1rem;
  background: #bbbbbb;
  width: 200px;
  border-radius: 50%;
}
.cid-uqKG5pzMux .card:hover {
  background: #ff8a8a;
}
.cid-uqKG5pzMux .card:hover img {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .cid-uqKG5pzMux .card {
    max-width: 20%;
  }
}
.cid-uqKG5pzMux .mbr-section-title {
  color: #ffffff;
}
.cid-uqKG5pzMux .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqKG5pzMux .mbr-text {
  color: #ffffff;
}
.cid-tPkQYfK6TL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-tPkQYfK6TL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPkQYfK6TL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPkQYfK6TL .card-row {
  align-items: stretch;
}
.cid-tPkQYfK6TL .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #000000, -10px -10px 19px #000000;
}
.cid-tPkQYfK6TL .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #232323;
}
@media (max-width: 1199px) {
  .cid-tPkQYfK6TL .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-tPkQYfK6TL .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #232323;
  }
}
.cid-tPkQYfK6TL .image-wrapper {
  margin-right: 30px;
}
.cid-tPkQYfK6TL .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-tPkQYfK6TL .image-wrapper {
    margin-right: 0;
  }
}
.cid-tPkQYfK6TL .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-tPkQYfK6TL .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tPkQYfK6TL .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-tPkQYfK6TL .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-tPkQYfK6TL .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-tPkQYfK6TL .social-container {
    padding-top: 25px;
  }
}
.cid-tPkQYfK6TL .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-tPkQYfK6TL .social-title {
    text-align: center !important;
  }
}
.cid-tPkQYfK6TL .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-tPkQYfK6TL .social-list {
    justify-content: center !important;
  }
}
.cid-tPkQYfK6TL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-tPkQYfK6TL .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-tPkQYfK6TL .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-tPkQYfK6TL .soc-item:hover {
  transform: translateY(-3px);
}
.cid-tPkQYfK6TL .soc-item:hover:before {
  opacity: 1;
}
.cid-tPkQYfK6TL .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tPkQYfK6TL .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-tPkQYfK6TL .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-tPkQYfK6TL .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-tPkQYfK6TL .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPkQYfK6TL .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-tPkQYfK6TL .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-tPkQYfK6TL .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tPkQYfK6TL .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-tPkQYfK6TL .contact-item {
  padding: 10px 0 20px;
}
.cid-tPkQYfK6TL .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-tPkQYfK6TL .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-tugz2NHpOl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tugz2NHpOl .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-tugz2NHpOl .mbr-text,
.cid-tugz2NHpOl .line {
  color: #ffffff;
}
.cid-ttjqyeWZ2u {
  padding-top: 34rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pexels-jeshootscom-834892-2000x1333.jpg");
}
@media (max-width: 767px) {
  .cid-ttjqyeWZ2u {
    padding-top: 30.6rem;
  }
}
.cid-ttjqyeWZ2u .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ttjqyeWZ2u .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-ttjqyeWZ2u .d-flex {
    justify-content: center;
  }
}
.cid-ttjqyeWZ2u .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-ttjqyeWZ2u .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-ttjqyeWZ2u .link-wrapper {
    justify-content: center;
  }
}
.cid-ttjqyeWZ2u .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-ttjqyeWZ2u .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-ttjqyeWZ2u .mbr-section-subtitle:hover {
  background: #bbbbbb;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-ttjqyeWZ2u .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-ttjqyeWZ2u .link,
.cid-ttjqyeWZ2u .link-icon {
  color: #000000;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  position: relative !important;
}
.cid-t0pQmq4nMM .show .link,
.cid-t0pQmq4nMM .show .mbr-iconfont,
.cid-t0pQmq4nMM .show .phone {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-t0pQmq4nMM .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-t0pQmq4nMM .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .dropdown-menu {
  padding: 1rem 0;
}
.cid-t0pQmq4nMM .dropdown-item {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item span {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item:hover,
.cid-t0pQmq4nMM .dropdown-item:focus {
  color: #bbbbbb !important;
}
.cid-t0pQmq4nMM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0pQmq4nMM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0pQmq4nMM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0pQmq4nMM .nav-link {
  position: relative;
}
.cid-t0pQmq4nMM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .container {
    flex-wrap: nowrap;
  }
}
.cid-t0pQmq4nMM .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown-menu,
.cid-t0pQmq4nMM .navbar.opened {
  background: #000000 !important;
}
.cid-t0pQmq4nMM .nav-item:focus,
.cid-t0pQmq4nMM .nav-link:focus {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0pQmq4nMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0pQmq4nMM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.opened {
  transition: all 0.3s;
}
.cid-t0pQmq4nMM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0pQmq4nMM .navbar .navbar-logo img {
  width: auto;
}
.cid-t0pQmq4nMM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar.collapsed {
  justify-content: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0pQmq4nMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t0pQmq4nMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0pQmq4nMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0pQmq4nMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t0pQmq4nMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0pQmq4nMM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0pQmq4nMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0pQmq4nMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0pQmq4nMM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0pQmq4nMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0pQmq4nMM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown-item.active,
.cid-t0pQmq4nMM .dropdown-item:active {
  background-color: transparent;
}
.cid-t0pQmq4nMM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0pQmq4nMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0pQmq4nMM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0pQmq4nMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0pQmq4nMM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t0pQmq4nMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar {
    height: 70px;
  }
  .cid-t0pQmq4nMM .navbar.opened {
    height: auto;
  }
  .cid-t0pQmq4nMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjsiEuDx9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ttjsiEuDx9 .card-heading {
  margin-top: 15px;
  color: #808080;
  text-align: center;
}
.cid-ttjsiEuDx9 .p {
  padding-top: 30px;
  color: #ffffff;
  text-align: center;
}
.cid-ttjsiEuDx9 .row {
  justify-content: center;
}
.cid-ttjsiEuDx9 .line {
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  margin-top: 30px;
}
.cid-ttjsiEuDx9 .card-heading1 {
  text-align: center;
  color: #ffffff;
}
.cid-t0pWjG0Nek {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-t0pWjG0Nek .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-t0pWjG0Nek .mbr-text,
.cid-t0pWjG0Nek .line {
  color: #ffffff;
}
.cid-ttjRav5Ar5 {
  padding-top: 34rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pexels-jeshootscom-834892-2000x1333.jpg");
}
@media (max-width: 767px) {
  .cid-ttjRav5Ar5 {
    padding-top: 30.6rem;
  }
}
.cid-ttjRav5Ar5 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ttjRav5Ar5 .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-ttjRav5Ar5 .d-flex {
    justify-content: center;
  }
}
.cid-ttjRav5Ar5 .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-ttjRav5Ar5 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-ttjRav5Ar5 .link-wrapper {
    justify-content: center;
  }
}
.cid-ttjRav5Ar5 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-ttjRav5Ar5 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-ttjRav5Ar5 .mbr-section-subtitle:hover {
  background: #bbbbbb;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-ttjRav5Ar5 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-ttjRav5Ar5 .link,
.cid-ttjRav5Ar5 .link-icon {
  color: #000000;
}
.cid-ttjRksdqO2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ttjRksdqO2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttjRksdqO2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjRksdqO2 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-ttjRksdqO2 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #232323;
}
@media (max-width: 991px) {
  .cid-ttjRksdqO2 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttjRksdqO2 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-ttjRksdqO2 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-ttjRksdqO2 P {
  color: #bbbbbb;
}
.cid-ttjRksdqO2 .mbr-section-title {
  color: #ffffff;
}
.cid-ttjRksdqO2 .card-title {
  color: #ffffff;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  position: relative !important;
}
.cid-t0pQmq4nMM .show .link,
.cid-t0pQmq4nMM .show .mbr-iconfont,
.cid-t0pQmq4nMM .show .phone {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-t0pQmq4nMM .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-t0pQmq4nMM .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .dropdown-menu {
  padding: 1rem 0;
}
.cid-t0pQmq4nMM .dropdown-item {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item span {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item:hover,
.cid-t0pQmq4nMM .dropdown-item:focus {
  color: #bbbbbb !important;
}
.cid-t0pQmq4nMM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0pQmq4nMM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0pQmq4nMM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0pQmq4nMM .nav-link {
  position: relative;
}
.cid-t0pQmq4nMM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .container {
    flex-wrap: nowrap;
  }
}
.cid-t0pQmq4nMM .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown-menu,
.cid-t0pQmq4nMM .navbar.opened {
  background: #000000 !important;
}
.cid-t0pQmq4nMM .nav-item:focus,
.cid-t0pQmq4nMM .nav-link:focus {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0pQmq4nMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0pQmq4nMM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.opened {
  transition: all 0.3s;
}
.cid-t0pQmq4nMM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0pQmq4nMM .navbar .navbar-logo img {
  width: auto;
}
.cid-t0pQmq4nMM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar.collapsed {
  justify-content: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0pQmq4nMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t0pQmq4nMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0pQmq4nMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0pQmq4nMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t0pQmq4nMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0pQmq4nMM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0pQmq4nMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0pQmq4nMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0pQmq4nMM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0pQmq4nMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0pQmq4nMM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown-item.active,
.cid-t0pQmq4nMM .dropdown-item:active {
  background-color: transparent;
}
.cid-t0pQmq4nMM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0pQmq4nMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0pQmq4nMM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0pQmq4nMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0pQmq4nMM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t0pQmq4nMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar {
    height: 70px;
  }
  .cid-t0pQmq4nMM .navbar.opened {
    height: auto;
  }
  .cid-t0pQmq4nMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0pWjG0Nek {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-t0pWjG0Nek .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-t0pWjG0Nek .mbr-text,
.cid-t0pWjG0Nek .line {
  color: #ffffff;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  position: relative !important;
}
.cid-t0pQmq4nMM .show .link,
.cid-t0pQmq4nMM .show .mbr-iconfont,
.cid-t0pQmq4nMM .show .phone {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-t0pQmq4nMM .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-t0pQmq4nMM .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .dropdown-menu {
  padding: 1rem 0;
}
.cid-t0pQmq4nMM .dropdown-item {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item span {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item:hover,
.cid-t0pQmq4nMM .dropdown-item:focus {
  color: #bbbbbb !important;
}
.cid-t0pQmq4nMM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0pQmq4nMM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0pQmq4nMM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0pQmq4nMM .nav-link {
  position: relative;
}
.cid-t0pQmq4nMM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .container {
    flex-wrap: nowrap;
  }
}
.cid-t0pQmq4nMM .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown-menu,
.cid-t0pQmq4nMM .navbar.opened {
  background: #000000 !important;
}
.cid-t0pQmq4nMM .nav-item:focus,
.cid-t0pQmq4nMM .nav-link:focus {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0pQmq4nMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0pQmq4nMM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.opened {
  transition: all 0.3s;
}
.cid-t0pQmq4nMM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0pQmq4nMM .navbar .navbar-logo img {
  width: auto;
}
.cid-t0pQmq4nMM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar.collapsed {
  justify-content: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0pQmq4nMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t0pQmq4nMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0pQmq4nMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0pQmq4nMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t0pQmq4nMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0pQmq4nMM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0pQmq4nMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0pQmq4nMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0pQmq4nMM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0pQmq4nMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0pQmq4nMM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown-item.active,
.cid-t0pQmq4nMM .dropdown-item:active {
  background-color: transparent;
}
.cid-t0pQmq4nMM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0pQmq4nMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0pQmq4nMM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0pQmq4nMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0pQmq4nMM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t0pQmq4nMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar {
    height: 70px;
  }
  .cid-t0pQmq4nMM .navbar.opened {
    height: auto;
  }
  .cid-t0pQmq4nMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttj1i8FMRV {
  padding-top: 34rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pexels-jeshootscom-834892-2000x1333.jpg");
}
@media (max-width: 767px) {
  .cid-ttj1i8FMRV {
    padding-top: 30.6rem;
  }
}
.cid-ttj1i8FMRV .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ttj1i8FMRV .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-ttj1i8FMRV .d-flex {
    justify-content: center;
  }
}
.cid-ttj1i8FMRV .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-ttj1i8FMRV .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-ttj1i8FMRV .link-wrapper {
    justify-content: center;
  }
}
.cid-ttj1i8FMRV .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-ttj1i8FMRV .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-ttj1i8FMRV .mbr-section-subtitle:hover {
  background: #bbbbbb;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-ttj1i8FMRV .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-ttj1i8FMRV .link,
.cid-ttj1i8FMRV .link-icon {
  color: #000000;
}
.cid-ttj1DbPVJU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ttj1DbPVJU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ttj1DbPVJU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttj1DbPVJU h3 {
  max-width: 600px;
  margin-right: auto;
  margin-left: 0;
}
.cid-ttj1DbPVJU h4,
.cid-ttj1DbPVJU .mbr-section-btn {
  max-width: 800px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ttj1DbPVJU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttj1DbPVJU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjfSeM1XW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ttjfSeM1XW .card {
  background-color: #f8f5fa;
  border-width: 1px;
  border-style: dashed;
  border-color: #cd8ad1;
  border-radius: 30px;
  padding: 2rem 4rem;
}
@media (max-width: 767px) {
  .cid-ttjfSeM1XW .card {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-t0pWjG0Nek {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-t0pWjG0Nek .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-t0pWjG0Nek .mbr-text,
.cid-t0pWjG0Nek .line {
  color: #ffffff;
}
.cid-ttjlBI206x .navbar-dropdown {
  position: relative !important;
}
.cid-ttjlBI206x .show .link,
.cid-ttjlBI206x .show .mbr-iconfont,
.cid-ttjlBI206x .show .phone {
  color: #ffffff !important;
}
.cid-ttjlBI206x .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-ttjlBI206x .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-ttjlBI206x .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-ttjlBI206x .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-ttjlBI206x .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-ttjlBI206x .dropdown-menu {
  padding: 1rem 0;
}
.cid-ttjlBI206x .dropdown-item {
  color: #ffffff !important;
}
.cid-ttjlBI206x .dropdown-item span {
  color: #ffffff !important;
}
.cid-ttjlBI206x .dropdown-item:hover,
.cid-ttjlBI206x .dropdown-item:focus {
  color: #bbbbbb !important;
}
.cid-ttjlBI206x .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttjlBI206x .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttjlBI206x .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjlBI206x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjlBI206x .nav-link {
  position: relative;
}
.cid-ttjlBI206x .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjlBI206x .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjlBI206x .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttjlBI206x .dropdown-menu,
.cid-ttjlBI206x .navbar.opened {
  background: #000000 !important;
}
.cid-ttjlBI206x .nav-item:focus,
.cid-ttjlBI206x .nav-link:focus {
  outline: none;
}
.cid-ttjlBI206x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjlBI206x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjlBI206x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjlBI206x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjlBI206x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjlBI206x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjlBI206x .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ttjlBI206x .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjlBI206x .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjlBI206x .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjlBI206x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjlBI206x .navbar.collapsed {
  justify-content: center;
}
.cid-ttjlBI206x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjlBI206x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjlBI206x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-ttjlBI206x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjlBI206x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjlBI206x .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ttjlBI206x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjlBI206x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjlBI206x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjlBI206x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjlBI206x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjlBI206x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjlBI206x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjlBI206x .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ttjlBI206x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjlBI206x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjlBI206x .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjlBI206x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjlBI206x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjlBI206x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ttjlBI206x .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttjlBI206x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttjlBI206x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttjlBI206x .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjlBI206x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjlBI206x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjlBI206x .dropdown-item.active,
.cid-ttjlBI206x .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjlBI206x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjlBI206x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjlBI206x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjlBI206x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjlBI206x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjlBI206x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjlBI206x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjlBI206x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttjlBI206x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttjlBI206x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ttjlBI206x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttjlBI206x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttjlBI206x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttjlBI206x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttjlBI206x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttjlBI206x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttjlBI206x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttjlBI206x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttjlBI206x .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjlBI206x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjlBI206x .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-ttjlBI206x .navbar {
    height: 70px;
  }
  .cid-ttjlBI206x .navbar.opened {
    height: auto;
  }
  .cid-ttjlBI206x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjlBINURr {
  padding-top: 34rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/pexels-jeshootscom-834892-2000x1333.jpg");
}
@media (max-width: 767px) {
  .cid-ttjlBINURr {
    padding-top: 30.6rem;
  }
}
.cid-ttjlBINURr .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ttjlBINURr .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-ttjlBINURr .d-flex {
    justify-content: center;
  }
}
.cid-ttjlBINURr .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-ttjlBINURr .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-ttjlBINURr .link-wrapper {
    justify-content: center;
  }
}
.cid-ttjlBINURr .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-ttjlBINURr .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-ttjlBINURr .mbr-section-subtitle:hover {
  background: #bbbbbb;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-ttjlBINURr .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-ttjlBINURr .link,
.cid-ttjlBINURr .link-icon {
  color: #000000;
}
.cid-ttjlBJfwdG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ttjlBJfwdG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ttjlBJfwdG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttjlBJfwdG h3 {
  max-width: 600px;
  margin-right: auto;
  margin-left: 0;
}
.cid-ttjlBJfwdG h4,
.cid-ttjlBJfwdG .mbr-section-btn {
  max-width: 800px;
  margin-right: 0;
  margin-left: auto;
}
.cid-ttjlBJfwdG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttjlBJfwdG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjlBJCDtK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-ttjlBJCDtK .card {
  background-color: #f8f5fa;
  border-width: 1px;
  border-style: dashed;
  border-color: #cd8ad1;
  border-radius: 30px;
  padding: 2rem 4rem;
}
@media (max-width: 767px) {
  .cid-ttjlBJCDtK .card {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-ttjlBKQh9i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-ttjlBKQh9i .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-ttjlBKQh9i .mbr-text,
.cid-ttjlBKQh9i .line {
  color: #ffffff;
}
