@import url(https://fonts.googleapis.com/css?family=Metal+Mania:400&display=swap);
@import url(https://fonts.googleapis.com/css?family=Amarante:400&display=swap);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Metal Mania', display;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-2 {
  font-family: 'Amarante', display;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 2.24rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #9ccd7e !important;
}
.bg-info {
  background-color: #999999 !important;
}
.bg-warning {
  background-color: #ffb000 !important;
}
.bg-danger {
  background-color: #7f0000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #7f0000 !important;
  border-color: #7f0000 !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #330000 !important;
  border-color: #330000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-success,
.btn-success:active {
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #72b747 !important;
  border-color: #72b747 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffb000 !important;
  border-color: #ffb000 !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b37b00 !important;
  border-color: #b37b00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #7f0000 !important;
  border-color: #7f0000 !important;
  color: #ffffff !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #330000 !important;
  border-color: #330000 !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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.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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #7f0000;
  color: #7f0000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #7f0000;
  border-color: #7f0000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7f0000 !important;
  border-color: #7f0000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #9ccd7e;
  color: #9ccd7e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #9ccd7e;
  border-color: #9ccd7e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #ffb000;
  color: #ffb000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #ffb000;
  border-color: #ffb000;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb000 !important;
  border-color: #ffb000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7f0000;
  color: #7f0000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #7f0000;
  border-color: #7f0000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #7f0000 !important;
  border-color: #7f0000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.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: #000000 !important;
}
.text-secondary {
  color: #7f0000 !important;
}
.text-success {
  color: #9ccd7e !important;
}
.text-info {
  color: #999999 !important;
}
.text-warning {
  color: #ffb000 !important;
}
.text-danger {
  color: #7f0000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #333333 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e50000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d4e9c8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #ffd066 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #e50000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #999999;
}
.alert-warning {
  background-color: #ffb000;
}
.alert-danger {
  background-color: #7f0000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: #d9d9d9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffefcc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ff0000;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 2.24rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #7f0000 !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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sfXO3Zzjz6 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfXO3Zzjz6 .mbr-section-title {
  color: #404040;
}
.cid-sfXO3Zzjz6 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfXO3Zzjz6 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sfXO3Zzjz6 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfXO3Zzjz6 .mbr-section-title,
.cid-sfXO3Zzjz6 .icon-wrap,
.cid-sfXO3Zzjz6 .mbr-section-btn {
  color: #ffffff;
}
.cid-sfzycz8uLR {
  padding-top: 60px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfzycz8uLR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sfzycz8uLR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sfzycz8uLR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sfzycz8uLR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sfzycz8uLR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sfzycz8uLR .icon-focus {
  display: none;
}
.cid-sfzycz8uLR .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sfzycz8uLR ul {
  font-size: 0;
}
.cid-sfzycz8uLR .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #7f0000 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sfzycz8uLR .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-sfzycz8uLR .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #000000, #7f0000);
}
.cid-sfzycz8uLR .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-sfzycz8uLR .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-sfzycz8uLR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sfzycz8uLR .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-sfzycz8uLR .btn:hover {
  background: transparent !important;
}
.cid-sfzycz8uLR .btn:hover:before {
  background: transparent !important;
}
.cid-sfzycz8uLR .btn:before {
  background-color: transparent !important;
}
.cid-sfzycz8uLR .btn:focus {
  box-shadow: none;
}
.cid-sfzycz8uLR .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #d4ad00;
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sgwKLTF2qI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwKLTF2qI ul {
  padding: 0;
  margin: 0;
}
.cid-sgwKLTF2qI ul li {
  list-style: none;
}
.cid-sgwKLTF2qI ul li h4 {
  margin: 0;
}
.cid-sgwKLTF2qI ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwKLTF2qI .item {
  color: #000000;
  text-align: center;
}
.cid-sgwKLTF2qI .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwKLTF2qI .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwKLTF2qI .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwKLTF2qI .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwKLTF2qI .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwKLTF2qI .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sfXOeO2XwB {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfXOeO2XwB .mbr-section-title {
  color: #404040;
}
.cid-sfXOeO2XwB .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfXOeO2XwB .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sfXOeO2XwB .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfXOeO2XwB .mbr-section-title,
.cid-sfXOeO2XwB .icon-wrap,
.cid-sfXOeO2XwB .mbr-section-btn {
  color: #ffffff;
}
.cid-sfXLMUllK1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sfXLMUllK1 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sfXLMUllK1 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sfXLMUllK1 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sfXLMUllK1 .card-title,
.cid-sfXLMUllK1 .card-img {
  color: #ffb000;
}
.cid-sgxUaG97Yk {
  padding-top: 90px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../../../assets/images/bg04-2000x1401.jpg");
}
.cid-sgxUaG97Yk .mbr-section-subtitle {
  color: #767676;
}
.cid-sgxUaG97Yk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sgxUaG97Yk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sgxUaG97Yk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sgxUaG97Yk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sgxUaG97Yk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sgxUaG97Yk .icon-focus,
.cid-sgxUaG97Yk .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sgxUaG97Yk .icon-focus:before,
.cid-sgxUaG97Yk .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sgxUaG97Yk .icon-video {
  font-size: 1.5rem !important;
}
.cid-sgxUaG97Yk .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sgxUaG97Yk ul {
  font-size: 0;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #e96188 !important;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sgxUaG97Yk .mbr-gallery-filter ul li.active .btn:after {
  border-color: #e96188;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sgxUaG97Yk .mbr-gallery-filter ul li:first-child,
.cid-sgxUaG97Yk .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sgxUaG97Yk .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sgxUaG97Yk .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sgwKP0hbI7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwKP0hbI7 ul {
  padding: 0;
  margin: 0;
}
.cid-sgwKP0hbI7 ul li {
  list-style: none;
}
.cid-sgwKP0hbI7 ul li h4 {
  margin: 0;
}
.cid-sgwKP0hbI7 ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwKP0hbI7 .item {
  color: #000000;
  text-align: center;
}
.cid-sgwKP0hbI7 .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwKP0hbI7 .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwKP0hbI7 .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwKP0hbI7 .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwKP0hbI7 .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwKP0hbI7 .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sfYcA338yj {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfYcA338yj .mbr-section-title {
  color: #404040;
}
.cid-sfYcA338yj .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfYcA338yj .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sfYcA338yj .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfYcA338yj .mbr-section-title,
.cid-sfYcA338yj .icon-wrap,
.cid-sfYcA338yj .mbr-section-btn {
  color: #ffffff;
}
.cid-sfwI2vIUYh {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfwI2vIUYh .nav {
  border: none;
}
.cid-sfwI2vIUYh .nav-tabs {
  display: table;
  width: 100%;
}
.cid-sfwI2vIUYh .nav-tabs .nav-item {
  display: table-cell;
}
.cid-sfwI2vIUYh .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(153, 153, 153, 0.3);
  box-shadow: 0px 0px 30px rgba(153, 153, 153, 0.3);
}
.cid-sfwI2vIUYh .tab-content {
  margin-top: 3rem;
}
.cid-sfwI2vIUYh .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-sfwI2vIUYh .nav-tabs .nav-link {
  display: flex;
  color: #ffffff;
  box-sizing: border-box;
  font-style: normal;
  background: #7f0000;
  font-weight: 500;
  padding: 1rem;
  border: 1px solid #5f0000;
  margin: 0px;
  border-radius: 0px !important;
  transition: font-weight, background, color 0.3s;
}
.cid-sfwI2vIUYh .nav-tabs .nav-link:hover {
  background-color: #a90202;
  color: #ffffff;
}
.cid-sfwI2vIUYh .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #a90202;
  border-bottom: 1px solid #a90202;
}
.cid-sfwI2vIUYh .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sfwI2vIUYh .nav-item {
    display: table-row !important;
  }
}
.cid-sfwI2vIUYh .mbr-section-subtitle,
.cid-sfwI2vIUYh .mbr-text,
.cid-sfwI2vIUYh .mbr-section-btn {
  color: #8d97ad;
}
.cid-sfwI2vIUYh .mbr-section-title {
  color: #ffb000;
}
.cid-sfwI2vIUYh .mbr-text,
.cid-sfwI2vIUYh .mbr-section-btn {
  color: #efefef;
}
.cid-sfwI2vIUYh .title-content {
  color: #7f0000;
}
.cid-sfwKXPGKSN {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bg02-2000x1401.jpg");
}
.cid-sfwKXPGKSN .mbr-text {
  color: #767676;
}
.cid-sfwKXPGKSN .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(178, 0, 0, 0.35);
}
.cid-sfwKXPGKSN .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-sfwKXPGKSN .card-wrapper:hover .ico2 {
  color: #000000 !important;
}
.cid-sfwKXPGKSN .text-info:hover {
  color: inherit!important;
}
.cid-sfwKXPGKSN .ico2 {
  color: #ffb000 !important;
  transition: all 0.6s;
}
.cid-sfwKXPGKSN .card-box {
  padding: 0rem 1rem;
}
.cid-sfwKXPGKSN .card-img {
  width: auto;
}
.cid-sfwKXPGKSN .ico1 {
  font-size: 2.5rem !important;
}
.cid-sfwKXPGKSN h3,
.cid-sfwKXPGKSN h4 {
  padding: 0;
  margin: 0;
}
.cid-sfwKXPGKSN .card-title,
.cid-sfwKXPGKSN .card-img {
  color: #232323;
}
.cid-sfwKXPGKSN H3 {
  color: #767676;
}
.cid-sfwKXPGKSN H1 {
  color: #ffffff;
}
.cid-sfwKXPGKSN .card-title {
  color: #efefef;
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sgwKSoykRn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwKSoykRn ul {
  padding: 0;
  margin: 0;
}
.cid-sgwKSoykRn ul li {
  list-style: none;
}
.cid-sgwKSoykRn ul li h4 {
  margin: 0;
}
.cid-sgwKSoykRn ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwKSoykRn .item {
  color: #000000;
  text-align: center;
}
.cid-sgwKSoykRn .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwKSoykRn .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwKSoykRn .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwKSoykRn .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwKSoykRn .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwKSoykRn .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sfYcfU4Ct3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfYcfU4Ct3 .mbr-section-title {
  color: #404040;
}
.cid-sfYcfU4Ct3 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfYcfU4Ct3 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sfYcfU4Ct3 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfYcfU4Ct3 .mbr-section-title,
.cid-sfYcfU4Ct3 .icon-wrap,
.cid-sfYcfU4Ct3 .mbr-section-btn {
  color: #ffffff;
}
.cid-sfwjVTSjAk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/bg02-2000x1401.jpg");
  border-top: 2px solid #ffffff;
}
.cid-sfwjVTSjAk .mbr-section-title {
  letter-spacing: 0.1em;
  color: #000000;
}
.cid-sfwjVTSjAk .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sfwjVTSjAk .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sfwjVTSjAk .wrap-img {
  padding-bottom: 1rem;
}
.cid-sfwjVTSjAk .wrap-img img {
  max-width: 100%;
}
.cid-sfwjVTSjAk .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sfwjVTSjAk .client-name,
.cid-sfwjVTSjAk .wrap-img {
  color: #ffffff;
}
.cid-sfwk0HXnsr {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bg02-2000x1401.jpg");
  border-bottom: 0px solid #ffffff;
}
.cid-sfwk0HXnsr .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-sfwk0HXnsr .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sfwk0HXnsr .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sfwk0HXnsr .wrap-img {
  padding-bottom: 1rem;
}
.cid-sfwk0HXnsr .wrap-img img {
  max-width: 100%;
}
.cid-sfwk0HXnsr .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sfwk0HXnsr .client-name,
.cid-sfwk0HXnsr .wrap-img {
  color: #ffffff;
}
.cid-sgwKVCvNDP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwKVCvNDP ul {
  padding: 0;
  margin: 0;
}
.cid-sgwKVCvNDP ul li {
  list-style: none;
}
.cid-sgwKVCvNDP ul li h4 {
  margin: 0;
}
.cid-sgwKVCvNDP ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwKVCvNDP .item {
  color: #000000;
  text-align: center;
}
.cid-sgwKVCvNDP .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwKVCvNDP .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwKVCvNDP .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwKVCvNDP .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwKVCvNDP .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwKVCvNDP .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sfXOsjAVX9 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfXOsjAVX9 .mbr-section-title {
  color: #404040;
}
.cid-sfXOsjAVX9 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfXOsjAVX9 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sfXOsjAVX9 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfXOsjAVX9 .mbr-section-title,
.cid-sfXOsjAVX9 .icon-wrap,
.cid-sfXOsjAVX9 .mbr-section-btn {
  color: #ffffff;
}
.cid-sfXOsjAVX9 .mbr-text,
.cid-sfXOsjAVX9 .mbr-section-btn {
  color: #7f0000;
}
.cid-sfwRSnERyC {
  padding-top: 60px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfwRSnERyC .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sfwRSnERyC .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #000000;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-sfwRSnERyC .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sfwRSnERyC .mbr-section-subtitle {
  color: #d4ad00;
  font-weight: 600;
  margin-bottom: 21px;
  text-align: center;
}
.cid-sfwRSnERyC .mbr-text {
  color: #606060;
}
.cid-sfwRSnERyC .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-sfwRSnERyC .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-sfwRSnERyC .required {
  color: #808080;
}
.cid-sfwRSnERyC .list-block .list-item-title {
  color: #404040;
  font-weight: 600;
}
.cid-sfwRSnERyC .list-block .list-item-title.display-7 {
  font-size: 18px;
}
.cid-sfwRSnERyC .list-block .list-item-text {
  color: #606060;
}
.cid-sfwRSnERyC .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-sfwRSnERyC .list-block {
  position: relative;
}
.cid-sfwRSnERyC .list-block h4,
.cid-sfwRSnERyC .list-block p {
  padding-left: 3.5rem;
}
.cid-sfwRSnERyC .card-img {
  display: block;
  font-size: 30px;
}
.cid-sfwRSnERyC .mbr-iconfont {
  color: #ffb000;
  font-size: 2rem;
}
.cid-sfwRSnERyC .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-sfwRSnERyC .form-control-label,
.cid-sfwRSnERyC .form-check {
  margin-left: 20px;
}
.cid-sfwRSnERyC .main-title {
  color: #efefef;
  text-align: center;
}
.cid-sfwRSnERyC .list-block .list-item-title {
  color: #ffffff;
}
.cid-sfwRSnERyC .list-block .list-item-text {
  color: #ffffff;
}
.cid-sfwRSnERyC P {
  color: #242930;
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sgwKXBQMgl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwKXBQMgl ul {
  padding: 0;
  margin: 0;
}
.cid-sgwKXBQMgl ul li {
  list-style: none;
}
.cid-sgwKXBQMgl ul li h4 {
  margin: 0;
}
.cid-sgwKXBQMgl ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwKXBQMgl .item {
  color: #000000;
  text-align: center;
}
.cid-sgwKXBQMgl .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwKXBQMgl .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwKXBQMgl .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwKXBQMgl .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwKXBQMgl .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwKXBQMgl .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sfwOX4Np6u {
  padding-top: 90px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-sfwOX4Np6u .mbr-section-title {
  color: #404040;
}
.cid-sfwOX4Np6u .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfwOX4Np6u .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sfwOX4Np6u .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfwOX4Np6u .mbr-section-title,
.cid-sfwOX4Np6u .icon-wrap,
.cid-sfwOX4Np6u .mbr-section-btn DIV {
  text-align: center;
}
.cid-sfwOX4Np6u .mbr-text,
.cid-sfwOX4Np6u .mbr-section-btn {
  text-align: left;
}
.cid-sgwLbq3E4O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwLbq3E4O ul {
  padding: 0;
  margin: 0;
}
.cid-sgwLbq3E4O ul li {
  list-style: none;
}
.cid-sgwLbq3E4O ul li h4 {
  margin: 0;
}
.cid-sgwLbq3E4O ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwLbq3E4O .item {
  color: #000000;
  text-align: center;
}
.cid-sgwLbq3E4O .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwLbq3E4O .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwLbq3E4O .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwLbq3E4O .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwLbq3E4O .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwLbq3E4O .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sgwwZE2eMO {
  padding-top: 90px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-sgwwZE2eMO .mbr-section-title {
  color: #404040;
}
.cid-sgwwZE2eMO .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sgwwZE2eMO .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sgwwZE2eMO .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sgwwZE2eMO .mbr-section-title,
.cid-sgwwZE2eMO .icon-wrap,
.cid-sgwwZE2eMO .mbr-section-btn DIV {
  text-align: center;
}
.cid-sgwwZE2eMO .mbr-text,
.cid-sgwwZE2eMO .mbr-section-btn {
  text-align: left;
}
.cid-sgwLdWQ8rH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwLdWQ8rH ul {
  padding: 0;
  margin: 0;
}
.cid-sgwLdWQ8rH ul li {
  list-style: none;
}
.cid-sgwLdWQ8rH ul li h4 {
  margin: 0;
}
.cid-sgwLdWQ8rH ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwLdWQ8rH .item {
  color: #000000;
  text-align: center;
}
.cid-sgwLdWQ8rH .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwLdWQ8rH .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwLdWQ8rH .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwLdWQ8rH .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwLdWQ8rH .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwLdWQ8rH .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sgwwZF0MgU .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgwwZF0MgU .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgwwZF0MgU .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgwwZF0MgU .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgwwZF0MgU .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgwwZF0MgU .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-sgwwZF0MgU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgwwZF0MgU .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-sgwwZF0MgU .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgwwZF0MgU .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgwwZF0MgU .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgwwZF0MgU .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgwwZF0MgU .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgwwZF0MgU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgwwZF0MgU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgwwZF0MgU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgwwZF0MgU .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-sgwwZF0MgU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgwwZF0MgU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgwwZF0MgU .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgwwZF0MgU .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-sgwwZF0MgU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgwwZF0MgU .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-sgwwZF0MgU .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgwwZF0MgU .navbar.opened .navbar-collapse.show,
  .cid-sgwwZF0MgU .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgwwZF0MgU .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgwwZF0MgU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgwwZF0MgU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgwwZF0MgU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgwwZF0MgU .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-sgwwZF0MgU .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgwwZF0MgU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgwwZF0MgU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgwwZF0MgU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgwwZF0MgU .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgwwZF0MgU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgwwZF0MgU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgwwZF0MgU .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-sgwwZF0MgU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgwwZF0MgU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgwwZF0MgU .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgwwZF0MgU .dropdown-item.active,
.cid-sgwwZF0MgU .dropdown-item:active {
  background-color: transparent;
}
.cid-sgwwZF0MgU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgwwZF0MgU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgwwZF0MgU .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgwwZF0MgU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgwwZF0MgU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgwwZF0MgU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgwwZF0MgU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgwwZF0MgU .navbar-buttons {
  text-align: center;
}
.cid-sgwwZF0MgU 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-sgwwZF0MgU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgwwZF0MgU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgwwZF0MgU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgwwZF0MgU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgwwZF0MgU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgwwZF0MgU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgwwZF0MgU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgwwZF0MgU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgwwZF0MgU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgwwZF0MgU .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgwwZF0MgU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgwwZF0MgU a.nav-link:focus {
  outline: none;
}
.cid-sgwwZF0MgU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgwwZF0MgU .nav-link:hover,
.cid-sgwwZF0MgU .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgwwZF0MgU .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgwwZF0MgU .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sfXHrGtgQZ {
  background-image: url("../../../assets/images/intro-bg-1920x1000.jpg");
  overflow: hidden;
}
.cid-sfXHrGtgQZ svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sfXHrGtgQZ #e2_shape {
  fill: #000000 !important;
}
.cid-sfXHrGtgQZ .mbr-text.display-5 {
  font-size: 26px;
}
.cid-sfXHrGtgQZ .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfXHrGtgQZ img {
  transition: 3s;
  margin-left: auto;
  margin-right: auto;
}
.cid-sfXHrGtgQZ img:hover {
  transform: scale(1.2) rotate(5deg);
}
.cid-sgTcnbqOuo {
  padding-top: 195px;
  padding-bottom: 450px;
  background-image: url("../../../assets/images/stinger-crailsheim-2019-20191228-13-1920x1280.jpeg");
  border-top: 2px solid #ffffff;
}
.cid-sgTcnbqOuo .mbr-section-title.display-2 {
  font-size: 40px;
  line-height: 1.25;
}
.cid-sgTcnbqOuo .mbr-section-subtitle.display-5 {
  font-size: 26px;
  line-height: 1.385;
}
.cid-sgTcnbqOuo .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-sgTcnbqOuo .mbr-section-btn .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.cid-sgTcnbqOuo .mbr-section-title,
.cid-sgTcnbqOuo .mbr-section-btn {
  text-align: center;
}
.cid-sgTcnbqOuo .mbr-section-subtitle,
.cid-sgTcnbqOuo .mbr-section-btn {
  text-align: center;
  color: #767676;
}
.cid-sfvOanYMMt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
  border-bottom: 2px solid #ffffff;
}
.cid-sfvOanYMMt .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sfvOanYMMt .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sfvOanYMMt .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sfvOanYMMt .hovereffect {
  display: flex;
  transition: all 0.3s;
}
.cid-sfvOanYMMt .hovereffect:hover {
  transform: translateY(0.5rem);
}
.cid-sfvOanYMMt .hovereffect:hover .ico2 {
  color: #000000 !important;
}
.cid-sfvOanYMMt .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sfvOanYMMt .logo-section img {
  width: auto;
}
.cid-sfvOanYMMt .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #7f0000;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sfvOanYMMt .icon-transition span:hover {
  background-color: #a90202;
}
.cid-sfvOanYMMt .mbr-text {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sfvOanYMMt .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 15px;
  }
  .cid-sfvOanYMMt .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 1.5rem;
  }
  .cid-sfvOanYMMt .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sfwDAprznh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/stinger-crailsheim-2019-20191228-13-1920x1280.jpg");
}
.cid-sfwDAprznh .container-fluid {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.cid-sfwDAprznh .badge_wrap {
  width: 100%;
}
.cid-sfwDAprznh .badge_wrap .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #404040;
  background-color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
}
.cid-sfwDAprznh .badge_wrap .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sfwDAprznh .mbr-section-title {
  width: 100%;
}
.cid-sfwDAprznh .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfwDAprznh .mbr-section-subtitle {
  width: 100%;
}
.cid-sfwDAprznh .box {
  min-height: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-sfwDAprznh .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sfwDAprznh .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.9;
  transition: all 0.25s;
  color: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}
.cid-sfwDAprznh .mbr-media span:hover {
  opacity: 1;
  color: #000000 !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
}
.cid-sfwDAprznh .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sfwDAprznh .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sfwDAprznh .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sfwDAprznh .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sfwDAprznh a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sfwDAprznh a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sfwDAprznh .box {
    height: 250px;
  }
}
.cid-sfwDAprznh .play {
  width: 70px;
  height: 70px;
  line-height: 3.5rem !important;
  text-align: center;
  border-radius: 100%;
  background: #a90202;
  display: inline-block;
  transition: all 200ms ease-in-out;
  margin: 0 auto;
  cursor: pointer;
}
.cid-sfwDAprznh .play:before {
  font-family: FontAwesome !important;
  content: "\f04b";
  font-size: 1.4rem;
  padding: 7px 0 0 2px;
  display: block;
}
.cid-sfwDAprznh H1 {
  color: #7f0000;
}
.cid-sgs3NmBx18 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
  border-top: 2px solid #ffffff;
}
.cid-sgs3NmBx18 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #ffffff;
}
.cid-sgs3NmBx18 .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-sgs3NmBx18 .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-sgs3NmBx18 .wrap-img {
  padding-bottom: 1rem;
}
.cid-sgs3NmBx18 .wrap-img img {
  max-width: 100%;
}
.cid-sgs3NmBx18 .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-sgwJANIQDv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwJANIQDv ul {
  padding: 0;
  margin: 0;
}
.cid-sgwJANIQDv ul li {
  list-style: none;
}
.cid-sgwJANIQDv ul li h4 {
  margin: 0;
}
.cid-sgwJANIQDv ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwJANIQDv .item {
  color: #000000;
  text-align: center;
}
.cid-sgwJANIQDv .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwJANIQDv .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwJANIQDv .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwJANIQDv .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwJANIQDv .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwJANIQDv .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sfXNHBYeLy {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfXNHBYeLy .mbr-section-title {
  color: #404040;
}
.cid-sfXNHBYeLy .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfXNHBYeLy .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sfXNHBYeLy .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfXNHBYeLy .mbr-section-title,
.cid-sfXNHBYeLy .icon-wrap,
.cid-sfXNHBYeLy .mbr-section-btn {
  color: #ffffff;
}
.cid-sfXNHBYeLy .mbr-text,
.cid-sfXNHBYeLy .mbr-section-btn {
  color: #7f0000;
}
.cid-sfx4lLComT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfx4lLComT .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-sfx4lLComT .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sfx4lLComT .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sfx4lLComT .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-sfx4lLComT .btn {
  margin: 0!important;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sfx4lLComT .card {
  padding: 0!important;
  margin: 0;
  overflow: hidden;
  border-radius: 0 !important;
}
.cid-sfx4lLComT .card-title {
  color: #ffffff;
  margin: 0;
  text-align: left;
}
.cid-sfx4lLComT .card-img {
  overflow: hidden!important;
  position: relative;
  border-radius: 0px;
}
.cid-sfx4lLComT .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #000000;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.cid-sfx4lLComT .card-box {
  position: absolute;
  padding: 1.5rem 1.5rem;
  bottom: -24px;
  transition: all 0.3s;
  width: 100%;
  left: 0;
  z-index: 2;
}
.cid-sfx4lLComT .mbr-section-title,
.cid-sfx4lLComT .line-wrap {
  text-align: center;
  color: #ffb000;
}
.cid-sfx4lLComT .card-box > p,
.cid-sfx4lLComT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sfzdYjSh9X {
  padding-top: 0px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sfzdYjSh9X .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-sfzdYjSh9X .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sfzdYjSh9X .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sfzdYjSh9X .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-sfzdYjSh9X .btn {
  margin: 0!important;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sfzdYjSh9X .card {
  padding: 0!important;
  margin: 0;
  overflow: hidden;
  border-radius: 0 !important;
}
.cid-sfzdYjSh9X .card-title {
  color: #ffffff;
  margin: 0;
  text-align: left;
}
.cid-sfzdYjSh9X .card-img {
  overflow: hidden!important;
  position: relative;
  border-radius: 0px;
}
.cid-sfzdYjSh9X .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #000000;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.cid-sfzdYjSh9X .card-box {
  position: absolute;
  padding: 1.5rem 1.5rem;
  bottom: -24px;
  transition: all 0.3s;
  width: 100%;
  left: 0;
  z-index: 2;
}
.cid-sfzdYjSh9X .mbr-section-title,
.cid-sfzdYjSh9X .line-wrap {
  text-align: center;
}
.cid-sfzdYjSh9X .card-box > p,
.cid-sfzdYjSh9X .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-sgsIQRj9U8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgsIQRj9U8 .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgsIQRj9U8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgsIQRj9U8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsIQRj9U8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgsIQRj9U8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsIQRj9U8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgsIQRj9U8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.show,
  .cid-sgsIQRj9U8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgsIQRj9U8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgsIQRj9U8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsIQRj9U8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgsIQRj9U8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgsIQRj9U8 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgsIQRj9U8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsIQRj9U8 .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-sgsIQRj9U8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsIQRj9U8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgsIQRj9U8 .dropdown-item.active,
.cid-sgsIQRj9U8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsIQRj9U8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsIQRj9U8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgsIQRj9U8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsIQRj9U8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsIQRj9U8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgsIQRj9U8 .navbar-buttons {
  text-align: center;
}
.cid-sgsIQRj9U8 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-sgsIQRj9U8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgsIQRj9U8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgsIQRj9U8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgsIQRj9U8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgsIQRj9U8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgsIQRj9U8 a.nav-link:focus {
  outline: none;
}
.cid-sgsIQRj9U8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgsIQRj9U8 .nav-link:hover,
.cid-sgsIQRj9U8 .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgsIQRj9U8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sgwKHHtGOK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwKHHtGOK ul {
  padding: 0;
  margin: 0;
}
.cid-sgwKHHtGOK ul li {
  list-style: none;
}
.cid-sgwKHHtGOK ul li h4 {
  margin: 0;
}
.cid-sgwKHHtGOK ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwKHHtGOK .item {
  color: #000000;
  text-align: center;
}
.cid-sgwKHHtGOK .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwKHHtGOK .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwKHHtGOK .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwKHHtGOK .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwKHHtGOK .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwKHHtGOK .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sgwXHNBQP3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-sgwXHNBQP3 .mbr-section-title {
  color: #404040;
}
.cid-sgwXHNBQP3 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sgwXHNBQP3 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-sgwXHNBQP3 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sgwXHNBQP3 .mbr-section-title,
.cid-sgwXHNBQP3 .icon-wrap,
.cid-sgwXHNBQP3 .mbr-section-btn {
  color: #ffffff;
}
.cid-sgx3XZL8uD {
  background-image: url("../../../assets/images/bg04-1-2000x1401.jpg");
}
.cid-sgx3XZL8uD .slider-text-two {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(255, 255, 255, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
}
.cid-sgx3XZL8uD .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sgx3XZL8uD .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgx3XZL8uD .slider-text-two {
    outline: 15px solid rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.cid-sgx3XZL8uD P {
  text-align: left;
  color: #7f0000;
}
.cid-sgwXHPvCpI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sgwXHPvCpI ul {
  padding: 0;
  margin: 0;
}
.cid-sgwXHPvCpI ul li {
  list-style: none;
}
.cid-sgwXHPvCpI ul li h4 {
  margin: 0;
}
.cid-sgwXHPvCpI ul li h4.display-4 {
  line-height: 1.75;
}
.cid-sgwXHPvCpI .item {
  color: #000000;
  text-align: center;
}
.cid-sgwXHPvCpI .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-sgwXHPvCpI .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-sgwXHPvCpI .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-sgwXHPvCpI .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-sgwXHPvCpI .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-sgwXHPvCpI .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-sgwXHQ1QKm .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-sgwXHQ1QKm .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-sgwXHQ1QKm .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sgwXHQ1QKm .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgwXHQ1QKm .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sgwXHQ1QKm .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-sgwXHQ1QKm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sgwXHQ1QKm .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-sgwXHQ1QKm .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sgwXHQ1QKm .navbar.collapsed.opened .navbar-collapse.show,
.cid-sgwXHQ1QKm .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sgwXHQ1QKm .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sgwXHQ1QKm .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sgwXHQ1QKm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgwXHQ1QKm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgwXHQ1QKm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sgwXHQ1QKm .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-sgwXHQ1QKm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgwXHQ1QKm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sgwXHQ1QKm .navbar {
    flex-wrap: nowrap;
  }
  .cid-sgwXHQ1QKm .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-sgwXHQ1QKm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgwXHQ1QKm .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-sgwXHQ1QKm .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sgwXHQ1QKm .navbar.opened .navbar-collapse.show,
  .cid-sgwXHQ1QKm .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sgwXHQ1QKm .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sgwXHQ1QKm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgwXHQ1QKm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgwXHQ1QKm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sgwXHQ1QKm .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-sgwXHQ1QKm .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sgwXHQ1QKm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgwXHQ1QKm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sgwXHQ1QKm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sgwXHQ1QKm .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sgwXHQ1QKm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sgwXHQ1QKm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgwXHQ1QKm .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-sgwXHQ1QKm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgwXHQ1QKm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgwXHQ1QKm .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sgwXHQ1QKm .dropdown-item.active,
.cid-sgwXHQ1QKm .dropdown-item:active {
  background-color: transparent;
}
.cid-sgwXHQ1QKm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sgwXHQ1QKm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgwXHQ1QKm .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgwXHQ1QKm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sgwXHQ1QKm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgwXHQ1QKm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgwXHQ1QKm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sgwXHQ1QKm .navbar-buttons {
  text-align: center;
}
.cid-sgwXHQ1QKm 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-sgwXHQ1QKm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sgwXHQ1QKm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sgwXHQ1QKm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgwXHQ1QKm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sgwXHQ1QKm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sgwXHQ1QKm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgwXHQ1QKm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sgwXHQ1QKm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sgwXHQ1QKm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sgwXHQ1QKm .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sgwXHQ1QKm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sgwXHQ1QKm a.nav-link:focus {
  outline: none;
}
.cid-sgwXHQ1QKm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sgwXHQ1QKm .nav-link:hover,
.cid-sgwXHQ1QKm .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgwXHQ1QKm .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sgwXHQ1QKm .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-shsahj0gND {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/bg05-2000x1401.jpg");
}
.cid-shsahj0gND .mbr-section-title {
  color: #404040;
}
.cid-shsahj0gND .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-shsahj0gND .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-shsahj0gND .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-shsahj0gND .mbr-section-title,
.cid-shsahj0gND .icon-wrap,
.cid-shsahj0gND .mbr-section-btn {
  color: #ffffff;
}
.cid-shsbC039er {
  background-image: url("../../../assets/images/schaffi-2000x1333.jpeg");
  border-top: 2px solid #ffffff;
}
.cid-shsbC039er .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-shsbC039er .mbr-section-title.display-2 {
  font-size: 40px;
  line-height: 1.25;
}
.cid-shsbC039er .mbr-section-subtitle.display-5 {
  font-size: 26px;
  line-height: 1.385;
}
.cid-shsbC039er .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-shsbC039er .mbr-section-btn .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.cid-shsbC039er .mbr-section-subtitle,
.cid-shsbC039er .mbr-section-btn {
  text-align: center;
}
.cid-shsahkRXWu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-shsahkRXWu ul {
  padding: 0;
  margin: 0;
}
.cid-shsahkRXWu ul li {
  list-style: none;
}
.cid-shsahkRXWu ul li h4 {
  margin: 0;
}
.cid-shsahkRXWu ul li h4.display-4 {
  line-height: 1.75;
}
.cid-shsahkRXWu .item {
  color: #000000;
  text-align: center;
}
.cid-shsahkRXWu .col-title {
  color: #ffffff;
  font-weight: 600;
}
.cid-shsahkRXWu .fill-light-wrapper {
  fill: #7f0000;
  z-index: 2 !important;
  top: 0;
}
.cid-shsahkRXWu .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-shsahkRXWu .icons-wrapper ul li {
  margin-right: 10px;
  margin-left: 10px;
  display: inline-block;
}
.cid-shsahkRXWu .icons-wrapper ul li .mbr-iconfont {
  color: #7f0000;
  font-size: 20px;
}
.cid-shsahkRXWu .icons-wrapper ul li .mbr-iconfont:hover {
  color: #000000;
}
.cid-shsahloGSf .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #000000;
  background: none;
}
.cid-shsahloGSf .navbar.opened {
  transition: all 0.3s;
  background: #000000 !important;
}
.cid-shsahloGSf .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-shsahloGSf .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-shsahloGSf .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-shsahloGSf .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-shsahloGSf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-shsahloGSf .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-shsahloGSf .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-shsahloGSf .navbar.collapsed.opened .navbar-collapse.show,
.cid-shsahloGSf .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-shsahloGSf .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-shsahloGSf .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-shsahloGSf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-shsahloGSf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-shsahloGSf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-shsahloGSf .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-shsahloGSf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-shsahloGSf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-shsahloGSf .navbar {
    flex-wrap: nowrap;
  }
  .cid-shsahloGSf .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-shsahloGSf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-shsahloGSf .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-shsahloGSf .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-shsahloGSf .navbar.opened .navbar-collapse.show,
  .cid-shsahloGSf .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-shsahloGSf .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-shsahloGSf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-shsahloGSf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-shsahloGSf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-shsahloGSf .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-shsahloGSf .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-shsahloGSf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-shsahloGSf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-shsahloGSf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-shsahloGSf .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-shsahloGSf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-shsahloGSf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-shsahloGSf .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-shsahloGSf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-shsahloGSf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-shsahloGSf .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-shsahloGSf .dropdown-item.active,
.cid-shsahloGSf .dropdown-item:active {
  background-color: transparent;
}
.cid-shsahloGSf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-shsahloGSf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-shsahloGSf .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-shsahloGSf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-shsahloGSf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-shsahloGSf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-shsahloGSf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-shsahloGSf .navbar-buttons {
  text-align: center;
}
.cid-shsahloGSf 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-shsahloGSf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-shsahloGSf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-shsahloGSf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shsahloGSf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-shsahloGSf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-shsahloGSf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shsahloGSf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-shsahloGSf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-shsahloGSf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-shsahloGSf .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-shsahloGSf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-shsahloGSf a.nav-link:focus {
  outline: none;
}
.cid-shsahloGSf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-shsahloGSf .nav-link:hover,
.cid-shsahloGSf .dropdown-item:hover {
  color: #7f0000 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-shsahloGSf .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-shsahloGSf .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
