body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.4rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0b566f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #149dcc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #149dcc !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='%23149dcc' %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;
}
.cid-sL1d089hlq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sL1d089hlq .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sL1d089hlq .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sL1d089hlq .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sL1d089hlq .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sL1d089hlq .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sL1d089hlq .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sL1d089hlq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-collapse.show,
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sL1d089hlq .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sL1d089hlq .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sL1d089hlq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sL1d089hlq .navbar {
    flex-wrap: nowrap;
  }
  .cid-sL1d089hlq .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sL1d089hlq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sL1d089hlq .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sL1d089hlq .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sL1d089hlq .navbar.opened .navbar-collapse.show,
  .cid-sL1d089hlq .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sL1d089hlq .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sL1d089hlq .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sL1d089hlq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sL1d089hlq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sL1d089hlq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sL1d089hlq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sL1d089hlq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sL1d089hlq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sL1d089hlq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sL1d089hlq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sL1d089hlq .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sL1d089hlq .dropdown-item.active,
.cid-sL1d089hlq .dropdown-item:active {
  background-color: transparent;
}
.cid-sL1d089hlq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sL1d089hlq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sL1d089hlq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sL1d089hlq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sL1d089hlq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sL1d089hlq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL1d089hlq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL1d089hlq .navbar-buttons {
  text-align: center;
}
.cid-sL1d089hlq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1d089hlq .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sL1d089hlq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sL1d089hlq a.nav-link:focus {
  outline: none;
}
.cid-sL1d089hlq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sL1d089hlq .nav-link:hover,
.cid-sL1d089hlq .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sL1d089hlq .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sL1d089hlq .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rymwtkmLgB {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/ac-122-2000x1333.jpeg");
}
.cid-rymwtkmLgB h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-rymwtkmLgB h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymwtkmLgB h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1fk2z6z0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-sL1fk2z6z0 .container {
    padding: 1rem;
  }
}
.cid-sL1fk2z6z0 .card-box {
  padding: 0 2rem;
}
.cid-sL1fk2z6z0 .card {
  padding: 0 !important;
}
.cid-sL1fk2z6z0 .mbr-section-btn {
  padding-top: 2rem;
}
.cid-sL1fk2z6z0 .container-fluid {
  padding: 0;
}
.cid-sL1fk2z6z0 .card1 {
  background-image: url("../../../assets/images/c-10-2000x1333.jpeg");
}
.cid-sL1fk2z6z0 .card2 {
  background-image: url("../../../assets/images/bbw-58-2000x3000.jpg");
}
.cid-sL1fk2z6z0 .card3 {
  background-image: url("../../../assets/images/t-68-2000x1333.jpeg");
}
.cid-sL1fk2z6z0 .card4 {
  background-image: url("../../../assets/images/m1-2-2000x1333.jpeg");
}
.cid-sL1fk2z6z0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sL1fk2z6z0 p {
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-sL1fk2z6z0 .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-sL1fk2z6z0 .btn {
  margin: 0 !important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-sL1fk2z6z0 .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-sL1m8RhZgI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/gallery-1885x704.png");
}
.cid-sL1m8RhZgI .btn {
  margin: 0.2rem !important;
}
.cid-sL1m8RhZgI .row {
  justify-content: flex-end;
}
.cid-sL1m8RhZgI .mbr-text,
.cid-sL1m8RhZgI .mbr-section-btn {
  color: #cccccc;
}
.cid-sL1m8RhZgI H3 {
  color: #cccccc;
}
.cid-sL1m5MpYN1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1m5MpYN1 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL1m5MpYN1 .mbr-author-desc {
  display: block;
}
.cid-sL1m5MpYN1 .testimonial-photo {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-sL1m5MpYN1 .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sL1m5MpYN1 .card-footer {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.cid-sL1m5MpYN1 .panel-item {
  z-index: 3;
  position: relative;
}
.cid-sL1m5MpYN1 .name {
  padding-left: 1rem;
  margin: auto 0;
}
.cid-sL1m5MpYN1 .mbr-testimonial {
  background-image: url("../../../assets/images/merge-2000x774.jpg");
  background-size: cover;
  padding: 8rem;
}
.cid-sL1m5MpYN1 .mbr-testimonial:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: white;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}
.cid-sL1m5MpYN1 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-sL1m5MpYN1 .mbr-testimonial .card-footer {
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 767px) {
  .cid-sL1m5MpYN1 .mbr-testimonial {
    padding: 2rem;
  }
  .cid-sL1m5MpYN1 .card-footer {
    flex-direction: column;
  }
  .cid-sL1m5MpYN1 .name {
    padding-left: 0rem;
  }
  .cid-sL1m5MpYN1 .testimonial-photo {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-rymwwwoGgw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rymwwwoGgw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rymwwwoGgw .btn-black {
  background: black!important;
  border-radius: 6px;
}
.cid-rymwwwoGgw .btn-black:hover {
  background: gray!important;
  border-color: gray!important;
}
.cid-rymwwwoGgw .media-content {
  padding-left: 2rem;
}
.cid-rymwwwoGgw textarea {
  min-height: 150px;
}
.cid-rymwwwoGgw .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #767676;
  top: 1rem;
  font-size: 1.2rem;
}
.cid-rymwwwoGgw .form-control,
.cid-rymwwwoGgw .field-input {
  padding: 1rem;
  background-color: #ffffff;
  border: none;
  border-bottom: 1px solid #767676;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-rymwwwoGgw .form-control input::-webkit-input-placeholder,
.cid-rymwwwoGgw .field-input input::-webkit-input-placeholder,
.cid-rymwwwoGgw .form-control textarea::-webkit-input-placeholder,
.cid-rymwwwoGgw .field-input textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-rymwwwoGgw .form-control input:-moz-placeholder,
.cid-rymwwwoGgw .field-input input:-moz-placeholder,
.cid-rymwwwoGgw .form-control textarea:-moz-placeholder,
.cid-rymwwwoGgw .field-input textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-rymwwwoGgw .form-control:hover,
.cid-rymwwwoGgw .field-input:hover,
.cid-rymwwwoGgw .form-control:focus,
.cid-rymwwwoGgw .field-input:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rymwwwoGgw .form-control:hover input::-webkit-input-placeholder,
.cid-rymwwwoGgw .field-input:hover input::-webkit-input-placeholder,
.cid-rymwwwoGgw .form-control:focus input::-webkit-input-placeholder,
.cid-rymwwwoGgw .field-input:focus input::-webkit-input-placeholder,
.cid-rymwwwoGgw .form-control:hover textarea::-webkit-input-placeholder,
.cid-rymwwwoGgw .field-input:hover textarea::-webkit-input-placeholder,
.cid-rymwwwoGgw .form-control:focus textarea::-webkit-input-placeholder,
.cid-rymwwwoGgw .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-rymwwwoGgw .form-control:hover input:-moz-placeholder,
.cid-rymwwwoGgw .field-input:hover input:-moz-placeholder,
.cid-rymwwwoGgw .form-control:focus input:-moz-placeholder,
.cid-rymwwwoGgw .field-input:focus input:-moz-placeholder,
.cid-rymwwwoGgw .form-control:hover textarea:-moz-placeholder,
.cid-rymwwwoGgw .field-input:hover textarea:-moz-placeholder,
.cid-rymwwwoGgw .form-control:focus textarea:-moz-placeholder,
.cid-rymwwwoGgw .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-rymwwwoGgw .jq-number__spin:hover,
.cid-rymwwwoGgw .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #767676;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rymwwwoGgw .jq-number__spin {
  background-color: #ffffff;
  border-color: #767676;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rymwwwoGgw .jq-selectbox li,
.cid-rymwwwoGgw .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rymwwwoGgw .jq-selectbox li:hover,
.cid-rymwwwoGgw .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-rymwwwoGgw .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rymwwwoGgw .jq-number__spin.minus:hover:after,
.cid-rymwwwoGgw .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rymwwwoGgw .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rymwwwoGgw .jq-number__spin.minus:after,
.cid-rymwwwoGgw .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rymwwwoGgw input::-webkit-clear-button {
  display: none;
}
.cid-rymwwwoGgw input::-webkit-inner-spin-button {
  display: none;
}
.cid-rymwwwoGgw input::-webkit-outer-spin-button {
  display: none;
}
.cid-rymwwwoGgw input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rymwwwoGgw .mbr-text,
.cid-rymwwwoGgw .mbr-section-btn {
  color: #767676;
}
.cid-rymwwwoGgw .text2,
.cid-rymwwwoGgw .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-rymwwwoGgw .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
}
.cid-sL134qGjGa {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-sL134qGjGa .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sL134qGjGa h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-sL134qGjGa h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL134qGjGa h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL134qGjGa .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #767676;
  margin: 15px 0.5rem;
  display: block;
}
.cid-sL134qGjGa .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-sL134qGjGa .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-sL134qGjGa .mbr-iconfont-social:hover:before {
  background: #767676;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-sL134qGjGa .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-sL134qGjGa .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-sL134qGjGa .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-sL134qGjGa .mbr-section-title,
.cid-sL134qGjGa .social-list {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-sL134qGjGa h2:before,
  .cid-sL134qGjGa h2:after {
    display: none;
  }
}
.cid-rymwxiDonX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-sL1d089hlq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sL1d089hlq .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sL1d089hlq .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sL1d089hlq .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sL1d089hlq .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sL1d089hlq .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sL1d089hlq .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sL1d089hlq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-collapse.show,
.cid-sL1d089hlq .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sL1d089hlq .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sL1d089hlq .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sL1d089hlq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sL1d089hlq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sL1d089hlq .navbar {
    flex-wrap: nowrap;
  }
  .cid-sL1d089hlq .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sL1d089hlq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sL1d089hlq .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sL1d089hlq .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sL1d089hlq .navbar.opened .navbar-collapse.show,
  .cid-sL1d089hlq .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sL1d089hlq .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sL1d089hlq .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sL1d089hlq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sL1d089hlq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sL1d089hlq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sL1d089hlq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sL1d089hlq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sL1d089hlq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sL1d089hlq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sL1d089hlq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sL1d089hlq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sL1d089hlq .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sL1d089hlq .dropdown-item.active,
.cid-sL1d089hlq .dropdown-item:active {
  background-color: transparent;
}
.cid-sL1d089hlq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sL1d089hlq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sL1d089hlq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sL1d089hlq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sL1d089hlq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sL1d089hlq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL1d089hlq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL1d089hlq .navbar-buttons {
  text-align: center;
}
.cid-sL1d089hlq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1d089hlq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL1d089hlq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1d089hlq .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sL1d089hlq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sL1d089hlq a.nav-link:focus {
  outline: none;
}
.cid-sL1d089hlq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sL1d089hlq .nav-link:hover,
.cid-sL1d089hlq .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sL1d089hlq .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sL1d089hlq .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sL1sFiUnG4 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sL1sFiUnG4 .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-sL1sFiUnG4 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sL1sFiUnG4 .image-block:hover:before {
  opacity: 0.4;
}
.cid-sL1sFiUnG4 .image-block:hover .wrap {
  opacity: 1;
}
.cid-sL1sFiUnG4 .image-block:hover img {
  transform: scale(1.05);
}
.cid-sL1sFiUnG4 .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-sL1sFiUnG4 h4 {
  letter-spacing: 2px;
}
.cid-sL1sFiUnG4 figcaption {
  position: relative;
}
.cid-sL1sFiUnG4 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sL1sFiUnG4 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sL1sFiUnG4 .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-sL1sFiUnG4 .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-sL1sFiUnG4 .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-sL1sFiUnG4 .image-block:before {
    opacity: 0.4;
  }
  .cid-sL1sFiUnG4 .image-block .wrap {
    opacity: 1;
  }
}
.cid-sL1vHmott9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1vHmott9 .mbr-text {
  color: #767676;
}
.cid-sL1vHmott9 .mbr-iconfont {
  color: #0f7699 !important;
  font-size: 3.5rem !important;
}
.cid-sL1vHmott9 .link {
  margin: 0;
}
.cid-sL1vHmott9 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sL1vHmott9 .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-sL1vHmott9 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sL1vHmott9 .card {
    margin-bottom: 3rem;
  }
}
.cid-sL1wmDDcuz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sL1wmDDcuz h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sL1wmDDcuz h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1wmDDcuz h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1wmDDcuz .mbr-text,
.cid-sL1wmDDcuz .mbr-section-btn {
  color: #767676;
  text-align: left;
}
@media (max-width: 768px) {
  .cid-sL1wmDDcuz h3:before,
  .cid-sL1wmDDcuz h3:after {
    display: none;
  }
}
.cid-sL1wgcaNrS {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1wgcaNrS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sL1wgcaNrS .btn-black {
  background: black !important;
  border-radius: 6px;
}
.cid-sL1wgcaNrS .btn-black:hover {
  background: gray !important;
  border-color: gray !important;
}
.cid-sL1wgcaNrS textarea {
  min-height: 150px;
}
.cid-sL1wgcaNrS .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #0f7699;
  top: 1rem;
  font-size: 1.2rem;
}
.cid-sL1wgcaNrS .form-control,
.cid-sL1wgcaNrS .field-input {
  padding: 1rem;
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-sL1wgcaNrS .form-control:hover,
.cid-sL1wgcaNrS .field-input:hover,
.cid-sL1wgcaNrS .form-control:focus,
.cid-sL1wgcaNrS .field-input:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000 !important;
  box-shadow: none;
  outline: none;
}
.cid-sL1wgcaNrS .form-control:hover input::-webkit-input-placeholder,
.cid-sL1wgcaNrS .field-input:hover input::-webkit-input-placeholder,
.cid-sL1wgcaNrS .form-control:focus input::-webkit-input-placeholder,
.cid-sL1wgcaNrS .field-input:focus input::-webkit-input-placeholder,
.cid-sL1wgcaNrS .form-control:hover textarea::-webkit-input-placeholder,
.cid-sL1wgcaNrS .field-input:hover textarea::-webkit-input-placeholder,
.cid-sL1wgcaNrS .form-control:focus textarea::-webkit-input-placeholder,
.cid-sL1wgcaNrS .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-sL1wgcaNrS .form-control:hover input:-moz-placeholder,
.cid-sL1wgcaNrS .field-input:hover input:-moz-placeholder,
.cid-sL1wgcaNrS .form-control:focus input:-moz-placeholder,
.cid-sL1wgcaNrS .field-input:focus input:-moz-placeholder,
.cid-sL1wgcaNrS .form-control:hover textarea:-moz-placeholder,
.cid-sL1wgcaNrS .field-input:hover textarea:-moz-placeholder,
.cid-sL1wgcaNrS .form-control:focus textarea:-moz-placeholder,
.cid-sL1wgcaNrS .field-input:focus textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-sL1wgcaNrS input::-webkit-input-placeholder,
.cid-sL1wgcaNrS textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-sL1wgcaNrS input:-moz-placeholder,
.cid-sL1wgcaNrS textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-sL1wgcaNrS .jq-number__spin:hover,
.cid-sL1wgcaNrS .jq-number__spin:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sL1wgcaNrS .jq-number__spin {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sL1wgcaNrS .jq-selectbox li,
.cid-sL1wgcaNrS .jq-selectbox li {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1wgcaNrS .jq-selectbox li:hover,
.cid-sL1wgcaNrS .jq-selectbox li.selected {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1wgcaNrS .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sL1wgcaNrS .jq-number__spin.minus:hover:after,
.cid-sL1wgcaNrS .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1wgcaNrS .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sL1wgcaNrS .jq-number__spin.minus:after,
.cid-sL1wgcaNrS .jq-number__spin.plus:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1wgcaNrS input::-webkit-clear-button {
  display: none;
}
.cid-sL1wgcaNrS input::-webkit-inner-spin-button {
  display: none;
}
.cid-sL1wgcaNrS input::-webkit-outer-spin-button {
  display: none;
}
.cid-sL1wgcaNrS input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rymwxiDonX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-sL1KdfMJhq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sL1KdfMJhq .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sL1KdfMJhq .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sL1KdfMJhq .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sL1KdfMJhq .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sL1KdfMJhq .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sL1KdfMJhq .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sL1KdfMJhq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sL1KdfMJhq .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sL1KdfMJhq .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sL1KdfMJhq .navbar.collapsed.opened .navbar-collapse.show,
.cid-sL1KdfMJhq .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sL1KdfMJhq .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sL1KdfMJhq .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sL1KdfMJhq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sL1KdfMJhq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sL1KdfMJhq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sL1KdfMJhq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sL1KdfMJhq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sL1KdfMJhq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sL1KdfMJhq .navbar {
    flex-wrap: nowrap;
  }
  .cid-sL1KdfMJhq .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sL1KdfMJhq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sL1KdfMJhq .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sL1KdfMJhq .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sL1KdfMJhq .navbar.opened .navbar-collapse.show,
  .cid-sL1KdfMJhq .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sL1KdfMJhq .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sL1KdfMJhq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sL1KdfMJhq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sL1KdfMJhq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sL1KdfMJhq .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sL1KdfMJhq .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sL1KdfMJhq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sL1KdfMJhq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sL1KdfMJhq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sL1KdfMJhq .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sL1KdfMJhq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sL1KdfMJhq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sL1KdfMJhq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sL1KdfMJhq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sL1KdfMJhq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sL1KdfMJhq .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sL1KdfMJhq .dropdown-item.active,
.cid-sL1KdfMJhq .dropdown-item:active {
  background-color: transparent;
}
.cid-sL1KdfMJhq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sL1KdfMJhq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sL1KdfMJhq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sL1KdfMJhq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sL1KdfMJhq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sL1KdfMJhq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL1KdfMJhq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL1KdfMJhq .navbar-buttons {
  text-align: center;
}
.cid-sL1KdfMJhq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL1KdfMJhq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL1KdfMJhq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL1KdfMJhq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1KdfMJhq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1KdfMJhq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL1KdfMJhq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1KdfMJhq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL1KdfMJhq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL1KdfMJhq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1KdfMJhq .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sL1KdfMJhq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sL1KdfMJhq a.nav-link:focus {
  outline: none;
}
.cid-sL1KdfMJhq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sL1KdfMJhq .nav-link:hover,
.cid-sL1KdfMJhq .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sL1KdfMJhq .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sL1KdfMJhq .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sL1Kdg1HIY {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sL1Kdg1HIY .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-sL1Kdg1HIY .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sL1Kdg1HIY .image-block:hover:before {
  opacity: 0.4;
}
.cid-sL1Kdg1HIY .image-block:hover .wrap {
  opacity: 1;
}
.cid-sL1Kdg1HIY .image-block:hover img {
  transform: scale(1.05);
}
.cid-sL1Kdg1HIY .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-sL1Kdg1HIY h4 {
  letter-spacing: 2px;
}
.cid-sL1Kdg1HIY figcaption {
  position: relative;
}
.cid-sL1Kdg1HIY figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sL1Kdg1HIY img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sL1Kdg1HIY .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-sL1Kdg1HIY .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-sL1Kdg1HIY .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-sL1Kdg1HIY .image-block:before {
    opacity: 0.4;
  }
  .cid-sL1Kdg1HIY .image-block .wrap {
    opacity: 1;
  }
}
.cid-sL1KdghSS5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1KdghSS5 .mbr-text {
  color: #767676;
}
.cid-sL1KdghSS5 .mbr-iconfont {
  color: #0f7699 !important;
  font-size: 3.5rem !important;
}
.cid-sL1KdghSS5 .link {
  margin: 0;
}
.cid-sL1KdghSS5 .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sL1KdghSS5 .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-sL1KdghSS5 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sL1KdghSS5 .card {
    margin-bottom: 3rem;
  }
}
.cid-sL1KdgEPzV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sL1KdgEPzV h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sL1KdgEPzV h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1KdgEPzV h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1KdgEPzV .mbr-text,
.cid-sL1KdgEPzV .mbr-section-btn {
  color: #767676;
  text-align: left;
}
@media (max-width: 768px) {
  .cid-sL1KdgEPzV h3:before,
  .cid-sL1KdgEPzV h3:after {
    display: none;
  }
}
.cid-sL1KdgRWNB {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1KdgRWNB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sL1KdgRWNB .btn-black {
  background: black !important;
  border-radius: 6px;
}
.cid-sL1KdgRWNB .btn-black:hover {
  background: gray !important;
  border-color: gray !important;
}
.cid-sL1KdgRWNB textarea {
  min-height: 150px;
}
.cid-sL1KdgRWNB .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #0f7699;
  top: 1rem;
  font-size: 1.2rem;
}
.cid-sL1KdgRWNB .form-control,
.cid-sL1KdgRWNB .field-input {
  padding: 1rem;
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-sL1KdgRWNB .form-control:hover,
.cid-sL1KdgRWNB .field-input:hover,
.cid-sL1KdgRWNB .form-control:focus,
.cid-sL1KdgRWNB .field-input:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000 !important;
  box-shadow: none;
  outline: none;
}
.cid-sL1KdgRWNB .form-control:hover input::-webkit-input-placeholder,
.cid-sL1KdgRWNB .field-input:hover input::-webkit-input-placeholder,
.cid-sL1KdgRWNB .form-control:focus input::-webkit-input-placeholder,
.cid-sL1KdgRWNB .field-input:focus input::-webkit-input-placeholder,
.cid-sL1KdgRWNB .form-control:hover textarea::-webkit-input-placeholder,
.cid-sL1KdgRWNB .field-input:hover textarea::-webkit-input-placeholder,
.cid-sL1KdgRWNB .form-control:focus textarea::-webkit-input-placeholder,
.cid-sL1KdgRWNB .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-sL1KdgRWNB .form-control:hover input:-moz-placeholder,
.cid-sL1KdgRWNB .field-input:hover input:-moz-placeholder,
.cid-sL1KdgRWNB .form-control:focus input:-moz-placeholder,
.cid-sL1KdgRWNB .field-input:focus input:-moz-placeholder,
.cid-sL1KdgRWNB .form-control:hover textarea:-moz-placeholder,
.cid-sL1KdgRWNB .field-input:hover textarea:-moz-placeholder,
.cid-sL1KdgRWNB .form-control:focus textarea:-moz-placeholder,
.cid-sL1KdgRWNB .field-input:focus textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-sL1KdgRWNB input::-webkit-input-placeholder,
.cid-sL1KdgRWNB textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-sL1KdgRWNB input:-moz-placeholder,
.cid-sL1KdgRWNB textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-sL1KdgRWNB .jq-number__spin:hover,
.cid-sL1KdgRWNB .jq-number__spin:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sL1KdgRWNB .jq-number__spin {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sL1KdgRWNB .jq-selectbox li,
.cid-sL1KdgRWNB .jq-selectbox li {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1KdgRWNB .jq-selectbox li:hover,
.cid-sL1KdgRWNB .jq-selectbox li.selected {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1KdgRWNB .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sL1KdgRWNB .jq-number__spin.minus:hover:after,
.cid-sL1KdgRWNB .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1KdgRWNB .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sL1KdgRWNB .jq-number__spin.minus:after,
.cid-sL1KdgRWNB .jq-number__spin.plus:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1KdgRWNB input::-webkit-clear-button {
  display: none;
}
.cid-sL1KdgRWNB input::-webkit-inner-spin-button {
  display: none;
}
.cid-sL1KdgRWNB input::-webkit-outer-spin-button {
  display: none;
}
.cid-sL1KdgRWNB input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sL1KdhaA6Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-sL1QmxVLWY .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sL1QmxVLWY .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sL1QmxVLWY .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sL1QmxVLWY .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sL1QmxVLWY .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sL1QmxVLWY .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sL1QmxVLWY .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sL1QmxVLWY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sL1QmxVLWY .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sL1QmxVLWY .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sL1QmxVLWY .navbar.collapsed.opened .navbar-collapse.show,
.cid-sL1QmxVLWY .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sL1QmxVLWY .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sL1QmxVLWY .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sL1QmxVLWY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sL1QmxVLWY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sL1QmxVLWY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sL1QmxVLWY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sL1QmxVLWY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sL1QmxVLWY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sL1QmxVLWY .navbar {
    flex-wrap: nowrap;
  }
  .cid-sL1QmxVLWY .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sL1QmxVLWY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sL1QmxVLWY .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sL1QmxVLWY .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sL1QmxVLWY .navbar.opened .navbar-collapse.show,
  .cid-sL1QmxVLWY .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sL1QmxVLWY .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sL1QmxVLWY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sL1QmxVLWY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sL1QmxVLWY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sL1QmxVLWY .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sL1QmxVLWY .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sL1QmxVLWY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sL1QmxVLWY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sL1QmxVLWY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sL1QmxVLWY .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sL1QmxVLWY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sL1QmxVLWY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sL1QmxVLWY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sL1QmxVLWY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sL1QmxVLWY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sL1QmxVLWY .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sL1QmxVLWY .dropdown-item.active,
.cid-sL1QmxVLWY .dropdown-item:active {
  background-color: transparent;
}
.cid-sL1QmxVLWY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sL1QmxVLWY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sL1QmxVLWY .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sL1QmxVLWY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sL1QmxVLWY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sL1QmxVLWY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL1QmxVLWY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL1QmxVLWY .navbar-buttons {
  text-align: center;
}
.cid-sL1QmxVLWY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL1QmxVLWY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL1QmxVLWY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL1QmxVLWY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1QmxVLWY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1QmxVLWY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL1QmxVLWY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1QmxVLWY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL1QmxVLWY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL1QmxVLWY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1QmxVLWY .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sL1QmxVLWY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sL1QmxVLWY a.nav-link:focus {
  outline: none;
}
.cid-sL1QmxVLWY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sL1QmxVLWY .nav-link:hover,
.cid-sL1QmxVLWY .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sL1QmxVLWY .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sL1QmxVLWY .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sL1QmyoE9s {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sL1QmyoE9s .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-sL1QmyoE9s .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sL1QmyoE9s .image-block:hover:before {
  opacity: 0.4;
}
.cid-sL1QmyoE9s .image-block:hover .wrap {
  opacity: 1;
}
.cid-sL1QmyoE9s .image-block:hover img {
  transform: scale(1.05);
}
.cid-sL1QmyoE9s .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-sL1QmyoE9s h4 {
  letter-spacing: 2px;
}
.cid-sL1QmyoE9s figcaption {
  position: relative;
}
.cid-sL1QmyoE9s figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sL1QmyoE9s img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sL1QmyoE9s .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-sL1QmyoE9s .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-sL1QmyoE9s .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-sL1QmyoE9s .image-block:before {
    opacity: 0.4;
  }
  .cid-sL1QmyoE9s .image-block .wrap {
    opacity: 1;
  }
}
.cid-sL1QmyFOEw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1QmyFOEw .mbr-text {
  color: #767676;
}
.cid-sL1QmyFOEw .mbr-iconfont {
  color: #0f7699 !important;
  font-size: 3.5rem !important;
}
.cid-sL1QmyFOEw .link {
  margin: 0;
}
.cid-sL1QmyFOEw .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sL1QmyFOEw .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-sL1QmyFOEw .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sL1QmyFOEw .card {
    margin-bottom: 3rem;
  }
}
.cid-sL1Qmze4ST {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sL1Qmze4ST h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sL1Qmze4ST h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1Qmze4ST h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1Qmze4ST .mbr-text,
.cid-sL1Qmze4ST .mbr-section-btn {
  color: #767676;
  text-align: left;
}
@media (max-width: 768px) {
  .cid-sL1Qmze4ST h3:before,
  .cid-sL1Qmze4ST h3:after {
    display: none;
  }
}
.cid-sL1Qmzt8tX {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1Qmzt8tX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sL1Qmzt8tX .btn-black {
  background: black !important;
  border-radius: 6px;
}
.cid-sL1Qmzt8tX .btn-black:hover {
  background: gray !important;
  border-color: gray !important;
}
.cid-sL1Qmzt8tX textarea {
  min-height: 150px;
}
.cid-sL1Qmzt8tX .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #0f7699;
  top: 1rem;
  font-size: 1.2rem;
}
.cid-sL1Qmzt8tX .form-control,
.cid-sL1Qmzt8tX .field-input {
  padding: 1rem;
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-sL1Qmzt8tX .form-control:hover,
.cid-sL1Qmzt8tX .field-input:hover,
.cid-sL1Qmzt8tX .form-control:focus,
.cid-sL1Qmzt8tX .field-input:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000 !important;
  box-shadow: none;
  outline: none;
}
.cid-sL1Qmzt8tX .form-control:hover input::-webkit-input-placeholder,
.cid-sL1Qmzt8tX .field-input:hover input::-webkit-input-placeholder,
.cid-sL1Qmzt8tX .form-control:focus input::-webkit-input-placeholder,
.cid-sL1Qmzt8tX .field-input:focus input::-webkit-input-placeholder,
.cid-sL1Qmzt8tX .form-control:hover textarea::-webkit-input-placeholder,
.cid-sL1Qmzt8tX .field-input:hover textarea::-webkit-input-placeholder,
.cid-sL1Qmzt8tX .form-control:focus textarea::-webkit-input-placeholder,
.cid-sL1Qmzt8tX .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-sL1Qmzt8tX .form-control:hover input:-moz-placeholder,
.cid-sL1Qmzt8tX .field-input:hover input:-moz-placeholder,
.cid-sL1Qmzt8tX .form-control:focus input:-moz-placeholder,
.cid-sL1Qmzt8tX .field-input:focus input:-moz-placeholder,
.cid-sL1Qmzt8tX .form-control:hover textarea:-moz-placeholder,
.cid-sL1Qmzt8tX .field-input:hover textarea:-moz-placeholder,
.cid-sL1Qmzt8tX .form-control:focus textarea:-moz-placeholder,
.cid-sL1Qmzt8tX .field-input:focus textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-sL1Qmzt8tX input::-webkit-input-placeholder,
.cid-sL1Qmzt8tX textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-sL1Qmzt8tX input:-moz-placeholder,
.cid-sL1Qmzt8tX textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-sL1Qmzt8tX .jq-number__spin:hover,
.cid-sL1Qmzt8tX .jq-number__spin:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sL1Qmzt8tX .jq-number__spin {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sL1Qmzt8tX .jq-selectbox li,
.cid-sL1Qmzt8tX .jq-selectbox li {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1Qmzt8tX .jq-selectbox li:hover,
.cid-sL1Qmzt8tX .jq-selectbox li.selected {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1Qmzt8tX .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sL1Qmzt8tX .jq-number__spin.minus:hover:after,
.cid-sL1Qmzt8tX .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1Qmzt8tX .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sL1Qmzt8tX .jq-number__spin.minus:after,
.cid-sL1Qmzt8tX .jq-number__spin.plus:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1Qmzt8tX input::-webkit-clear-button {
  display: none;
}
.cid-sL1Qmzt8tX input::-webkit-inner-spin-button {
  display: none;
}
.cid-sL1Qmzt8tX input::-webkit-outer-spin-button {
  display: none;
}
.cid-sL1Qmzt8tX input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sL1QmzNGY8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
.cid-sL1V2x9Ivd .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sL1V2x9Ivd .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sL1V2x9Ivd .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sL1V2x9Ivd .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sL1V2x9Ivd .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sL1V2x9Ivd .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sL1V2x9Ivd .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sL1V2x9Ivd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sL1V2x9Ivd .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sL1V2x9Ivd .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sL1V2x9Ivd .navbar.collapsed.opened .navbar-collapse.show,
.cid-sL1V2x9Ivd .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sL1V2x9Ivd .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sL1V2x9Ivd .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sL1V2x9Ivd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sL1V2x9Ivd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sL1V2x9Ivd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sL1V2x9Ivd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sL1V2x9Ivd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sL1V2x9Ivd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sL1V2x9Ivd .navbar {
    flex-wrap: nowrap;
  }
  .cid-sL1V2x9Ivd .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sL1V2x9Ivd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sL1V2x9Ivd .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sL1V2x9Ivd .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sL1V2x9Ivd .navbar.opened .navbar-collapse.show,
  .cid-sL1V2x9Ivd .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sL1V2x9Ivd .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sL1V2x9Ivd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sL1V2x9Ivd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sL1V2x9Ivd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sL1V2x9Ivd .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sL1V2x9Ivd .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sL1V2x9Ivd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sL1V2x9Ivd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sL1V2x9Ivd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sL1V2x9Ivd .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sL1V2x9Ivd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sL1V2x9Ivd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sL1V2x9Ivd .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sL1V2x9Ivd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sL1V2x9Ivd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sL1V2x9Ivd .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sL1V2x9Ivd .dropdown-item.active,
.cid-sL1V2x9Ivd .dropdown-item:active {
  background-color: transparent;
}
.cid-sL1V2x9Ivd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sL1V2x9Ivd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sL1V2x9Ivd .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sL1V2x9Ivd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sL1V2x9Ivd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sL1V2x9Ivd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL1V2x9Ivd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL1V2x9Ivd .navbar-buttons {
  text-align: center;
}
.cid-sL1V2x9Ivd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL1V2x9Ivd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL1V2x9Ivd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL1V2x9Ivd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1V2x9Ivd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL1V2x9Ivd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL1V2x9Ivd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1V2x9Ivd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL1V2x9Ivd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL1V2x9Ivd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL1V2x9Ivd .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sL1V2x9Ivd a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sL1V2x9Ivd a.nav-link:focus {
  outline: none;
}
.cid-sL1V2x9Ivd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sL1V2x9Ivd .nav-link:hover,
.cid-sL1V2x9Ivd .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sL1V2x9Ivd .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sL1V2x9Ivd .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sL1V2xEtnA {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sL1V2xEtnA .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-sL1V2xEtnA .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sL1V2xEtnA .image-block:hover:before {
  opacity: 0.4;
}
.cid-sL1V2xEtnA .image-block:hover .wrap {
  opacity: 1;
}
.cid-sL1V2xEtnA .image-block:hover img {
  transform: scale(1.05);
}
.cid-sL1V2xEtnA .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-sL1V2xEtnA h4 {
  letter-spacing: 2px;
}
.cid-sL1V2xEtnA figcaption {
  position: relative;
}
.cid-sL1V2xEtnA figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sL1V2xEtnA img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-sL1V2xEtnA .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-sL1V2xEtnA .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-sL1V2xEtnA .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-sL1V2xEtnA .image-block:before {
    opacity: 0.4;
  }
  .cid-sL1V2xEtnA .image-block .wrap {
    opacity: 1;
  }
}
.cid-sL1V2xTMzE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1V2xTMzE .mbr-text {
  color: #767676;
}
.cid-sL1V2xTMzE .mbr-iconfont {
  color: #0f7699 !important;
  font-size: 3.5rem !important;
}
.cid-sL1V2xTMzE .link {
  margin: 0;
}
.cid-sL1V2xTMzE .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sL1V2xTMzE .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-sL1V2xTMzE .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sL1V2xTMzE .card {
    margin-bottom: 3rem;
  }
}
.cid-sL1V2yskys {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sL1V2yskys h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sL1V2yskys h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1V2yskys h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sL1V2yskys .mbr-text,
.cid-sL1V2yskys .mbr-section-btn {
  color: #767676;
  text-align: left;
}
@media (max-width: 768px) {
  .cid-sL1V2yskys h3:before,
  .cid-sL1V2yskys h3:after {
    display: none;
  }
}
.cid-sL1V2yHiyZ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sL1V2yHiyZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sL1V2yHiyZ .btn-black {
  background: black !important;
  border-radius: 6px;
}
.cid-sL1V2yHiyZ .btn-black:hover {
  background: gray !important;
  border-color: gray !important;
}
.cid-sL1V2yHiyZ textarea {
  min-height: 150px;
}
.cid-sL1V2yHiyZ .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #0f7699;
  top: 1rem;
  font-size: 1.2rem;
}
.cid-sL1V2yHiyZ .form-control,
.cid-sL1V2yHiyZ .field-input {
  padding: 1rem;
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676 !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-sL1V2yHiyZ .form-control:hover,
.cid-sL1V2yHiyZ .field-input:hover,
.cid-sL1V2yHiyZ .form-control:focus,
.cid-sL1V2yHiyZ .field-input:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000 !important;
  box-shadow: none;
  outline: none;
}
.cid-sL1V2yHiyZ .form-control:hover input::-webkit-input-placeholder,
.cid-sL1V2yHiyZ .field-input:hover input::-webkit-input-placeholder,
.cid-sL1V2yHiyZ .form-control:focus input::-webkit-input-placeholder,
.cid-sL1V2yHiyZ .field-input:focus input::-webkit-input-placeholder,
.cid-sL1V2yHiyZ .form-control:hover textarea::-webkit-input-placeholder,
.cid-sL1V2yHiyZ .field-input:hover textarea::-webkit-input-placeholder,
.cid-sL1V2yHiyZ .form-control:focus textarea::-webkit-input-placeholder,
.cid-sL1V2yHiyZ .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff !important;
}
.cid-sL1V2yHiyZ .form-control:hover input:-moz-placeholder,
.cid-sL1V2yHiyZ .field-input:hover input:-moz-placeholder,
.cid-sL1V2yHiyZ .form-control:focus input:-moz-placeholder,
.cid-sL1V2yHiyZ .field-input:focus input:-moz-placeholder,
.cid-sL1V2yHiyZ .form-control:hover textarea:-moz-placeholder,
.cid-sL1V2yHiyZ .field-input:hover textarea:-moz-placeholder,
.cid-sL1V2yHiyZ .form-control:focus textarea:-moz-placeholder,
.cid-sL1V2yHiyZ .field-input:focus textarea:-moz-placeholder {
  color: #ffffff !important;
}
.cid-sL1V2yHiyZ input::-webkit-input-placeholder,
.cid-sL1V2yHiyZ textarea::-webkit-input-placeholder {
  color: #767676 !important;
}
.cid-sL1V2yHiyZ input:-moz-placeholder,
.cid-sL1V2yHiyZ textarea:-moz-placeholder {
  color: #767676 !important;
}
.cid-sL1V2yHiyZ .jq-number__spin:hover,
.cid-sL1V2yHiyZ .jq-number__spin:focus {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sL1V2yHiyZ .jq-number__spin {
  background-color: #ffffff !important;
  border-color: #767676 !important;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sL1V2yHiyZ .jq-selectbox li,
.cid-sL1V2yHiyZ .jq-selectbox li {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1V2yHiyZ .jq-selectbox li:hover,
.cid-sL1V2yHiyZ .jq-selectbox li.selected {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-sL1V2yHiyZ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sL1V2yHiyZ .jq-number__spin.minus:hover:after,
.cid-sL1V2yHiyZ .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1V2yHiyZ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sL1V2yHiyZ .jq-number__spin.minus:after,
.cid-sL1V2yHiyZ .jq-number__spin.plus:after {
  border-top-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}
.cid-sL1V2yHiyZ input::-webkit-clear-button {
  display: none;
}
.cid-sL1V2yHiyZ input::-webkit-inner-spin-button {
  display: none;
}
.cid-sL1V2yHiyZ input::-webkit-outer-spin-button {
  display: none;
}
.cid-sL1V2yHiyZ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sL1V2z2mvK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #767676;
}
