body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #aa1a1a !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #aa1a1a !important;
  border-color: #aa1a1a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #5f0e0e !important;
  border-color: #5f0e0e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #5f0e0e !important;
  border-color: #5f0e0e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #aa1a1a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #5f0e0e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #aa1a1a !important;
  border-color: #aa1a1a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #aa1a1a !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #520c0c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #aa1a1a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #aa1a1a;
  border-color: #aa1a1a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #aa1a1a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e65d5d;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #aa1a1a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #aa1a1a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #aa1a1a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #aa1a1a;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #aa1a1a;
  border-bottom-color: #aa1a1a;
}
.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: #aa1a1a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23aa1a1a' %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-typ0GMokKn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-typ0GMokKn .carousel {
  height: 800px;
}
.cid-typ0GMokKn .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-typ0GMokKn .carousel-item,
.cid-typ0GMokKn .carousel-inner {
  height: 100%;
}
.cid-typ0GMokKn .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: center;
}
.cid-typ0GMokKn .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-typ0GMokKn .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-typ0GMokKn .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-typ0GMokKn .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-typ0GMokKn .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-typ0GMokKn .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-typ0GMokKn .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-typ0GMokKn .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-typ0GMokKn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-typ0GMokKn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-typ0GMokKn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-typ0GMokKn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-typ0GMokKn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #353535;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-typ0GMokKn .carousel-indicators li.active {
  background-color: #ffffff;
}
.cid-typ0GMokKn .carousel-indicators li.active,
.cid-typ0GMokKn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-typ0GMokKn .carousel-indicators li::after,
.cid-typ0GMokKn .carousel-indicators li::before {
  content: none;
}
.cid-typ0GMokKn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-typ0GMokKn .carousel-indicators {
    display: none !important;
  }
}
.cid-typ0GMokKn .btn.btn-primary-outline {
  border: 1px solid #aa1a1a;
}
.cid-typ0GMokKn .btn.btn-primary-outline:hover {
  background-color: #aa1a1a !important;
  color: #ffffff !important;
}
.cid-typ0GMokKn .btn.btn-secondary-outline {
  border: 1px solid #ff6666;
}
.cid-typ0GMokKn .btn.btn-secondary-outline:hover {
  background-color: #ff6666 !important;
  color: #ffffff !important;
}
.cid-typ0GMokKn .btn.btn-success-outline {
  border: 1px solid #40b0bf;
}
.cid-typ0GMokKn .btn.btn-success-outline:hover {
  background-color: #40b0bf !important;
  color: #ffffff !important;
}
.cid-typ0GMokKn .btn.btn-info-outline {
  border: 1px solid #47b5ed;
}
.cid-typ0GMokKn .btn.btn-info-outline:hover {
  background-color: #47b5ed !important;
  color: #ffffff !important;
}
.cid-typ0GMokKn .btn.btn-warning-outline {
  border: 1px solid #ffe161;
}
.cid-typ0GMokKn .btn.btn-warning-outline:hover {
  background-color: #ffe161 !important;
  color: #ffffff !important;
}
.cid-typ0GMokKn .btn.btn-danger-outline {
  border: 1px solid #ff9966;
}
.cid-typ0GMokKn .btn.btn-danger-outline:hover {
  background-color: #ff9966 !important;
  color: #ffffff !important;
}
.cid-typ0GMokKn .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-typ0GMokKn .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-typ0GMokKn .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-typ0GMokKn .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-typ0GMokKn .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-typ0GMokKn .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-typ0GMokKn .carousel-control {
    display: none;
  }
  .cid-typ0GMokKn .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .cid-typ0GMokKn .buttons-wrap .mbr-section-btn {
    text-align: center;
    margin-bottom: 10px;
  }
}
.cid-typ0GMokKn .mbr-text,
.cid-typ0GMokKn .mbr-section-btn {
  text-align: left;
}
.cid-typ0GMokKn .mbr-section-title {
  text-align: left;
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tz5jTBIMnq {
  display: flex;
  background-image: url("../../../assets/images/canon-powershot-g9-2592x1944-3-2000x1500.webp");
}
.cid-tz5jTBIMnq .mbr-overlay {
  background-color: #102f28;
  opacity: 0.7;
}
.cid-tz5jTBIMnq .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tz5jTBIMnq {
    align-items: flex-end;
  }
  .cid-tz5jTBIMnq .row {
    justify-content: flex-start;
  }
  .cid-tz5jTBIMnq .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tz5jTBIMnq .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tz5jTBIMnq {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tz5jTBIMnq .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tz5jTBIMnq .content-wrap {
    width: 100%;
  }
}
.cid-tzUgwroWWP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tzUgwroWWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUgwroWWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzUgwroWWP .container-fluid {
  margin: 0;
  padding: 0 11px;
}
@media (max-width: 992px) {
  .cid-tzUgwroWWP .container-fluid {
    padding: 0 7px;
  }
}
.cid-tzUgwroWWP .container-fluid .row {
  padding: 0;
}
.cid-tzUgwroWWP .row {
  justify-content: center;
}
.cid-tzUgwroWWP .card {
  padding: 0 5px;
}
.cid-tzUgwroWWP .image-wrapper {
  display: flex;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
.cid-tzUgwroWWP .image-wrapper:hover img {
  transform: scale(1.03);
}
.cid-tzUgwroWWP .image-wrapper img {
  height: 300px;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.3s ease-out;
}
.cid-tzUgDWwZyp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tzUgDWwZyp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzUgDWwZyp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzUgDWwZyp .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tzUgDWwZyp .container-fluid {
    padding: 0 25px;
  }
}
.cid-tzUgDWwZyp .container-fluid .row {
  padding: 0;
}
.cid-tzUgDWwZyp .image-wrapper {
  padding-right: 18px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tzUgDWwZyp .image-wrapper {
    padding: 0;
    margin-bottom: 50px;
  }
}
.cid-tzUgDWwZyp .image-wrapper .image-main {
  height: 650px;
  object-fit: cover;
  border: 1px solid #282828;
}
@media (max-width: 992px) {
  .cid-tzUgDWwZyp .image-wrapper .image-main {
    height: 300px;
  }
}
.cid-tzUgDWwZyp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-tzUgDWwZyp .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tzUgDWwZyp .embla__slide .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tzUgDWwZyp .embla__slide .card-wrap .content-wrap {
  margin-bottom: 34px;
}
.cid-tzUgDWwZyp .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzUgDWwZyp .embla__slide .card-wrap .name-wrap .card-name {
  margin-bottom: 24px;
  opacity: .85;
}
.cid-tzUgDWwZyp .embla__slide .card-wrap .name-wrap .card-role {
  margin-bottom: 0;
  opacity: .85;
}
.cid-tzUgDWwZyp .embla__button--next,
.cid-tzUgDWwZyp .embla__button--prev {
  display: flex;
}
.cid-tzUgDWwZyp .embla__button {
  bottom: 6rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #aa1a1a;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .85;
}
.cid-tzUgDWwZyp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tzUgDWwZyp .embla__button:hover {
  background: transparent;
  color: #aa1a1a;
}
.cid-tzUgDWwZyp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-tzUgDWwZyp .embla__button.embla__button--prev {
    margin-left: 5%;
  }
}
.cid-tzUgDWwZyp .embla__button.embla__button--next {
  right: 0;
  margin-right: 35%;
}
@media (max-width: 992px) {
  .cid-tzUgDWwZyp .embla__button.embla__button--next {
    margin-right: 5%;
  }
}
@media (max-width: 992px) {
  .cid-tzUgDWwZyp .embla__button {
    bottom: 0;
  }
}
.cid-tzUgDWwZyp .embla {
  position: relative;
  width: 100%;
  padding: 9rem 50px;
  border: 1px solid #282828;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tzUgDWwZyp .embla {
    padding: 20px;
  }
}
.cid-tzUgDWwZyp .embla__viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.cid-tzUgDWwZyp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tzUgDWwZyp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tzUgDWwZyp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tzUgDWwZyp .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-tzUgDWwZyp .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-tzUgDWwZyp .card-role {
  color: #ffffff;
  text-align: center;
}
.cid-tzVYS0YU5B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tzVYS0YU5B .row {
  justify-content: center;
}
.cid-tzVYS0YU5B .item-img {
  height: 480px;
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .cid-tzVYS0YU5B .item-img {
    height: 286px;
  }
}
.cid-tzVYS0YU5B img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tzVYS0YU5B .item:focus,
.cid-tzVYS0YU5B span:focus {
  outline: none;
}
.cid-tzVYS0YU5B .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tzVYS0YU5B .col-items {
    flex-wrap: wrap;
  }
}
.cid-tzVYS0YU5B .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-tzVYS0YU5B .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tzVYS0YU5B .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-tzVYS0YU5B .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.cid-tzVYS0YU5B .item-wrapper .btn {
  padding: 12px 24px;
  min-width: 62px;
}
.cid-tzVYS0YU5B .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-tzVYS0YU5B .item-wrapper .btn-primary:hover span {
  color: #aa1a1a !important;
}
.cid-tzVYS0YU5B .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tzVYS0YU5B .item-content {
    text-align: center;
  }
}
.cid-tzVYS0YU5B .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-tzVYS0YU5B .mbr-text {
  color: #555555;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cid-tzVYS0YU5B .item-title {
  color: #222222;
}
.cid-tzVYS0YU5B .item-subtitle {
  color: #222222;
}
.cid-tzVYS0YU5B .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-tzVYS0YU5B .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tzVYS0YU5B .mbr-section-head {
    text-align: center !important;
  }
}
.cid-tz5M0Z8P75 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tz5M0Z8P75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tz5M0Z8P75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tz5M0Z8P75 .mbr-section-title {
  color: #ffffff;
}
.cid-tz5GNOHisQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #102f28;
}
.cid-tz5GNOHisQ .row {
  align-items: center;
  width: 100%;
}
.cid-tz5GNOHisQ .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-tz5GNOHisQ .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tz5GNOHisQ .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tz5GNOHisQ .img-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-tz5GNOHisQ .img-container img {
  max-width: 100%;
  width: auto;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.cid-tz5GNOHisQ .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #000000;
}
.cid-tz5GNOHisQ .text-container {
  padding: 32px 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.cid-tz5GNOHisQ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tz5GNOHisQ .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  width: 100%;
  flex-wrap: wrap;
  flex-grow: 1;
}
.cid-tz5GNOHisQ .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-tz5GNOHisQ .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tz5GNOHisQ .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tz5GNOHisQ .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 4px;
}
.cid-tz5GNOHisQ .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tz5GNOHisQ .btn-container {
  width: 100%;
}
.cid-tz5GNOHisQ .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tz5GNOHisQ .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tz5GNOHisQ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tz5GNOHisQ .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-tz5HeoY1XK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #102f28;
}
.cid-tz5HeoY1XK .row {
  align-items: center;
  width: 100%;
}
.cid-tz5HeoY1XK .grid-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .cid-tz5HeoY1XK .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tz5HeoY1XK .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tz5HeoY1XK .img-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-tz5HeoY1XK .img-container img {
  max-width: 100%;
  width: auto;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.cid-tz5HeoY1XK .content-container {
  display: flex;
  padding: 0 !important;
  background-color: #000000;
}
.cid-tz5HeoY1XK .text-container {
  padding: 32px 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.cid-tz5HeoY1XK .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  flex-grow: 1;
}
.cid-tz5HeoY1XK .header-wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  width: 100%;
  flex-wrap: wrap;
  flex-grow: 1;
}
.cid-tz5HeoY1XK .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #1b1f0a;
  border-radius: 0.5rem;
  padding: 9px;
}
.cid-tz5HeoY1XK .label-text {
  margin-bottom: 0;
  color: #1B1F0A;
  margin-left: auto;
  padding: 0.375rem 0;
}
.cid-tz5HeoY1XK .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tz5HeoY1XK .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 4px;
}
.cid-tz5HeoY1XK .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 4px;
  opacity: 0.8;
}
.cid-tz5HeoY1XK .btn-container {
  width: 100%;
}
.cid-tz5HeoY1XK .mbr-section-btn .mobi-mbri {
  transition: .3s all;
}
.cid-tz5HeoY1XK .mbr-section-btn .btn:hover .mobi-mbri {
  margin-left: 1rem;
}
@media (max-width: 575px) {
  .cid-tz5HeoY1XK .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tz5HeoY1XK .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tApl0Hvi1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tApl0Hvi1H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/223264-1065085840175-1249904-n-482x271.webp");
}
.cid-tApnBs2Qu4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tApnBs2Qu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tApnBs2Qu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tApnBs2Qu4 .mbr-section-title {
  color: #ffffff;
}
.cid-tz5Uq1YtAs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1277.webp");
}
.cid-tz5Uq1YtAs .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tz5Uq1YtAs .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tz5Uq1YtAs .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tz5Uq1YtAs .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-tz5Uq1YtAs .mbr-text,
.cid-tz5Uq1YtAs .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tz5Uq1YtAs .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tz5ZoWKFOi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tz5ZoWKFOi .mbr-text {
  color: #ffffff;
}
.cid-tz5ZoWKFOi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tz5ZoWKFOi .mbr-section-title {
  color: #ffffff;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1rem;
}
.cid-tz62qdT2Ny {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tz62qdT2Ny .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tz62qdT2Ny .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tz62qdT2Ny .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tz62qdT2Ny .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-tz62qdT2Ny .mbr-text,
.cid-tz62qdT2Ny .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tz62qdT2Ny .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tz67KuMhpQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tz67KuMhpQ .mbr-text {
  color: #ffffff;
}
.cid-tz67KuMhpQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tz67KuMhpQ .mbr-section-title {
  color: #ffffff;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1rem;
}
.cid-tz69uzDfTH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.webp");
}
.cid-tz69uzDfTH .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tz69uzDfTH .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tz69uzDfTH .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tz69uzDfTH .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cid-tz69uzDfTH .mbr-text,
.cid-tz69uzDfTH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tz69uzDfTH .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tz6dGk8wVU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tz6dGk8wVU .mbr-text {
  color: #ffffff;
}
.cid-tz6dGk8wVU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tz6dGk8wVU .mbr-section-title {
  color: #ffffff;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1rem;
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tzDUXEKeox .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzDUXEKeox .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/ryd-1-1920x1080.webp");
}
.cid-tzDVt6lSsA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2299aa;
}
.cid-tzDVt6lSsA .mbr-section-title {
  color: #ffffff;
}
.cid-tzDVt6lSsA .mbr-text {
  color: #ffffff;
}
.cid-tzPn5zyIot {
  padding-top: 6rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1274.webp");
}
.cid-tzPn5zyIot .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPn5zyIot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzPn5zyIot .row {
  justify-content: center;
}
.cid-tzPn5zyIot .video-wrapper iframe {
  width: 100%;
}
.cid-tzPn5zyIot .title-wrapper {
  margin-bottom: 32px;
}
.cid-tzPn5zyIot .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzPn5zyIot .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tzPn5zyIot .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tzPn5zyIot .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tzPn5zyIot .video-block {
    margin-bottom: 24px;
  }
}
.cid-tzPn5zyIot .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tzPn5zyIot .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-tzPtmrvF3e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a727f;
}
@media (max-width: 991px) {
  .cid-tzPtmrvF3e .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tzPtmrvF3e .row {
  flex-direction: row-reverse;
}
.cid-tzPtmrvF3e img {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-tzPtmrvF3e .top {
    padding-top: 20px;
  }
}
.cid-tzPHwsxlzQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/corcheatv2-2-1322x992.webp");
}
.cid-tzPHwsxlzQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPHwsxlzQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzPHwsxlzQ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tzPHwsxlzQ .container-fluid {
    padding: 0 30px;
  }
}
.cid-tzPHwsxlzQ .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tzPHwsxlzQ .container {
    padding: 0 30px;
  }
}
.cid-tzPHwsxlzQ .text-wrapper {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .cid-tzPHwsxlzQ .text-wrapper {
    min-height: 250px;
  }
}
.cid-tzPHwsxlzQ .text-wrapper .mbr-text {
  width: 100%;
  margin: 25px 0;
}
.cid-tzPHwsxlzQ .mbr-text {
  color: #ffffff;
}
.cid-tzPKqNxgg5 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.webp");
}
.cid-tzPKqNxgg5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPKqNxgg5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzPKqNxgg5 .row {
  justify-content: center;
}
.cid-tzPKqNxgg5 .video-wrapper iframe {
  width: 100%;
}
.cid-tzPKqNxgg5 .title-wrapper {
  margin-bottom: 32px;
}
.cid-tzPKqNxgg5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzPKqNxgg5 .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tzPKqNxgg5 .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tzPKqNxgg5 .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tzPKqNxgg5 .video-block {
    margin-bottom: 24px;
  }
}
.cid-tzPKqNxgg5 .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tzPKqNxgg5 .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-tzPXdbx99X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/miss-mundo-mx-sucesos-copia-2000x1500.webp");
}
.cid-tzPXdbx99X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzPXdbx99X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzPXdbx99X .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tzPXdbx99X .container-fluid {
    padding: 0 30px;
  }
}
.cid-tzPXdbx99X .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tzPXdbx99X .container {
    padding: 0 30px;
  }
}
.cid-tzPXdbx99X .text-wrapper {
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .cid-tzPXdbx99X .text-wrapper {
    min-height: 250px;
  }
}
.cid-tzPXdbx99X .text-wrapper .mbr-text {
  width: 100%;
  margin: 25px 0;
}
.cid-tzPXdbx99X .mbr-text {
  color: #ffffff;
}
.cid-tzQ1byP3GP {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/panasonic-dmc-gh4-4608x3456-222-2000x1500.webp");
}
.cid-tzQ1byP3GP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzQ1byP3GP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzQ1byP3GP .row {
  justify-content: center;
}
.cid-tzQ1byP3GP .video-wrapper iframe {
  width: 100%;
}
.cid-tzQ1byP3GP .title-wrapper {
  margin-bottom: 32px;
}
.cid-tzQ1byP3GP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzQ1byP3GP .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tzQ1byP3GP .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tzQ1byP3GP .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tzQ1byP3GP .video-block {
    margin-bottom: 24px;
  }
}
.cid-tzQ1byP3GP .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tzQ1byP3GP .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-tzQaCP3T0O {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/panasonic-dmc-gh4-1920x1440-3033-1920x1440.webp");
}
.cid-tzQaCP3T0O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzQaCP3T0O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzQaCP3T0O .row {
  justify-content: center;
}
.cid-tzQaCP3T0O .video-wrapper iframe {
  width: 100%;
}
.cid-tzQaCP3T0O .title-wrapper {
  margin-bottom: 32px;
}
.cid-tzQaCP3T0O .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzQaCP3T0O .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tzQaCP3T0O .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tzQaCP3T0O .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tzQaCP3T0O .video-block {
    margin-bottom: 24px;
  }
}
.cid-tzQaCP3T0O .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tzQaCP3T0O .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-tzQaRvqrqE {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/panasonic-dmc-gh4-1920x1440-2231-1920x1440.webp");
}
.cid-tzQaRvqrqE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzQaRvqrqE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzQaRvqrqE .row {
  justify-content: center;
}
.cid-tzQaRvqrqE .video-wrapper iframe {
  width: 100%;
}
.cid-tzQaRvqrqE .title-wrapper {
  margin-bottom: 32px;
}
.cid-tzQaRvqrqE .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tzQaRvqrqE .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-tzQaRvqrqE .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #ca41ec;
  z-index: -1;
}
.cid-tzQaRvqrqE .video-block {
  max-height: 300px;
}
@media (max-width: 992px) {
  .cid-tzQaRvqrqE .video-block {
    margin-bottom: 24px;
  }
}
.cid-tzQaRvqrqE .mbr-figure__img {
  max-height: 300px;
  object-fit: cover;
}
.cid-tzQaRvqrqE .mbr-section-title {
  color: #f4efe8;
  text-align: center;
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tzQwcQPzhR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzQwcQPzhR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/ecdlv-1920x1080.webp");
}
.cid-tzQwcQPzhR .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tzQwcQPzhR .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tzQwcQPzhR .mbr-text,
.cid-tzQwcQPzhR .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tzQEU6xle7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/chaman-2000x1500.webp");
}
.cid-tzQEU6xle7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzQEU6xle7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzQEU6xle7 .text-wrapper {
  margin-left: 160px;
  position: sticky;
  top: 5rem;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7 .text-wrapper {
    margin: 0 30px 60px;
    position: static;
  }
}
@media (max-width: 768px) {
  .cid-tzQEU6xle7 .text-wrapper {
    margin: 0 30px 40px;
  }
}
.cid-tzQEU6xle7 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tzQEU6xle7 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tzQEU6xle7 .cards {
  padding: 0 160px 0 80px;
}
@media (max-width: 1200px) {
  .cid-tzQEU6xle7 .cards {
    padding: 0 160px 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7 .cards {
    padding: 0 30px;
  }
}
.cid-tzQEU6xle7 .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7 .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tzQEU6xle7 .cards .card {
    margin-bottom: 40px;
  }
}
.cid-tzQEU6xle7 .cards .card .card-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7 .cards .card .card-title {
    margin-bottom: 12px;
  }
}
.cid-tzQEU6xle7 .cards .card .card-text {
  margin: 0;
}
.cid-tzQEU6xle7 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tzQEU6xle7 .mbr-text {
  color: #FFFFFF;
}
.cid-tzQEU6xle7 .card-title {
  color: #FFFFFF;
}
.cid-tzQEU6xle7 .card-text {
  color: #FFFFFF;
}
.cid-tzR2iramUU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #00497c;
}
@media (max-width: 991px) {
  .cid-tzR2iramUU .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tzR2iramUU .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-tzR2iramUU img,
.cid-tzR2iramUU .item-img {
  width: 100%;
}
.cid-tzR2iramUU .item:focus,
.cid-tzR2iramUU span:focus {
  outline: none;
}
.cid-tzR2iramUU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tzR2iramUU .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tzR2iramUU img {
  border-radius: 30px;
}
.cid-tzR2iramUU .mbr-section-title {
  color: #ffffff;
}
.cid-tzR2iramUU .item-title {
  color: #ffffff;
}
.cid-tzR2iramUU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzR2iramUU .item-subtitle {
  color: #ffffff;
}
.cid-tzR2iramUU .mbr-text,
.cid-tzR2iramUU .mbr-section-btn {
  color: #ffffff;
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tzVf8CAOWd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/p1060233-2-1471x820.webp");
}
.cid-tzVf8CAOWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzVf8CAOWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzVf8CAOWd .desc {
  position: absolute;
  left: 16px;
  bottom: 0;
  transform: rotate(-90deg);
  margin: 1.5rem 0;
  transform-origin: bottom left;
}
.cid-tzVf8CAOWd .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tzVf8CAOWd .row .img-item {
  display: -webkit-flex;
  padding: 1rem;
  flex-direction: column;
  position: relative;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.cid-tzVf8CAOWd .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tzVf8CAOWd P {
  color: #ffffff;
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tzViQOC0NH {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tzViQOC0NH .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tzViQOC0NH .mbr-section-subtitle {
  margin-bottom: 88px;
  font-weight: 400;
}
.cid-tzViQOC0NH .image {
  position: relative;
  z-index: 0;
  top: -50px;
}
.cid-tzViQOC0NH .image img {
  z-index: -1;
  width: 100%;
  max-height: 410px;
  object-fit: cover;
}
.cid-tzViQOC0NH .mbr-gallery-filter {
  text-align: left;
  padding: 0 20px;
  border-bottom: 1px solid #00497c;
}
.cid-tzViQOC0NH .mbr-gallery-filter .btn {
  padding: 0 20px 40px;
  margin: 0;
  margin-right: 35px;
  color: #003d59 !important;
  font-weight: 700;
  text-align: left;
  background: transparent !important;
  position: relative;
  border: none;
  min-width: auto;
  width: auto;
}
.cid-tzViQOC0NH .mbr-gallery-filter ul {
  display: block;
}
.cid-tzViQOC0NH .mbr-gallery-filter ul li {
  position: relative;
  padding: 0;
}
.cid-tzViQOC0NH .mbr-gallery-filter li:not(.active) .btn.active:after,
.cid-tzViQOC0NH .mbr-gallery-filter li.active .btn:not(.active):after,
.cid-tzViQOC0NH .mbr-gallery-filter .mbr-gallery-filter .btn:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  width: 100%;
  bottom: 0;
  height: 11px;
  background-color: #46877e;
  transition: all 0.3s ease;
}
.cid-tzViQOC0NH .mbr-gallery-row {
  margin-top: 50px;
}
.cid-tzViQOC0NH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tzViQOC0NH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  border-radius: 4px;
}
.cid-tzViQOC0NH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  border-radius: 4px;
}
.cid-tzViQOC0NH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tzViQOC0NH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #003d59;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
}
.cid-tzViQOC0NH .mbr-gallery-item > div:hover::before {
  opacity: 0 !important;
}
.cid-tzViQOC0NH .mbr-gallery-title {
  transition: all .3s;
  position: absolute;
  display: block;
  font-weight: 700;
  width: 100%;
  bottom: 30px;
  left: 0;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
  background: transparent;
}
.cid-tzViQOC0NH .icon-focus {
  transition: all .3s;
  top: 30%;
  width: 48px;
  height: 48px;
  transform: translateY(-30%);
}
.cid-tzViQOC0NH .mbr-gallery-item > div img,
.cid-tzViQOC0NH .mbr-gallery-item div:before {
  border-radius: 4px;
}
.cid-tzViQOC0NH .mbr-gallery-item > div {
  transition: all .3s;
  border-radius: 4px;
}
.cid-tzViQOC0NH .mbr-gallery-item:hover > div {
  transform: scale(0.95);
}
.cid-tzViQOC0NH .carousel-control-prev .mbri-left:before {
  content: "\e90a";
}
.cid-tzViQOC0NH .carousel-control-next .mbri-right:before {
  content: "\e909";
}
.cid-tzViQOC0NH .modal-body a.close {
  border-radius: 0;
  font-size: 32px;
  top: 0;
  right: 0;
  height: 70px;
  width: 70px;
  line-height: 70px;
}
@media (max-width: 991px) {
  .cid-tzViQOC0NH .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tzViQOC0NH .mbr-section-title {
    text-align: center;
  }
  .cid-tzViQOC0NH .image {
    top: auto;
    height: 420px;
  }
  .cid-tzViQOC0NH .mbr-gallery-filter .btn {
    padding: 0 0 22px;
  }
  .cid-tzViQOC0NH .mbr-gallery-filter ul li {
    margin-bottom: 10px;
  }
  .cid-tzViQOC0NH .mbr-gallery-item > div img,
  .cid-tzViQOC0NH .mbr-gallery-item div:before {
    height: auto;
    border-radius: 3px;
  }
  .cid-tzViQOC0NH .mbr-gallery-item > div {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-tzViQOC0NH .image {
    height: 290px;
  }
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tA0ztbNVKR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA0ztbNVKR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/ryd-1-1920x1080.webp");
}
.cid-tA0Hi8kCU3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tA0Hi8kCU3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA0Hi8kCU3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA0Hi8kCU3 .container-fluid {
  margin: 0;
  padding: 0 51px;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .container-fluid {
    padding: 0 25px;
  }
}
.cid-tA0Hi8kCU3 .container-fluid .row {
  padding: 0;
}
.cid-tA0Hi8kCU3 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .row {
    justify-content: center;
  }
}
.cid-tA0Hi8kCU3 .card {
  padding: 0 25px;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .card {
    padding: 0 12px;
  }
}
.cid-tA0Hi8kCU3 .card:first-child {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .card:first-child {
    margin-bottom: 80px;
  }
}
.cid-tA0Hi8kCU3 .card:first-child .title-wrapper .mbr-section-subtitle {
  margin-bottom: 8px;
}
.cid-tA0Hi8kCU3 .card:first-child .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tA0Hi8kCU3 .card:first-child .text-wrapper {
  padding-right: 50px;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .card:first-child .text-wrapper {
    padding: 0;
  }
}
.cid-tA0Hi8kCU3 .card:first-child .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
.cid-tA0Hi8kCU3 .card .card-wrapper {
  position: relative;
  min-height: 516px;
  overflow: hidden;
  padding: 38px;
}
@media (max-width: 1200px) {
  .cid-tA0Hi8kCU3 .card .card-wrapper {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tA0Hi8kCU3 .card .card-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tA0Hi8kCU3 .card .card-wrapper:hover .card-wrap {
  opacity: 1;
}
.cid-tA0Hi8kCU3 .card .card-wrapper:hover .card-wrap .card-text {
  opacity: 1;
  transform: translateY(0);
}
.cid-tA0Hi8kCU3 .card .card-wrapper:hover .card-wrap .image-wrapper .mbr-section-btn {
  opacity: 1;
  transform: translateY(0);
}
.cid-tA0Hi8kCU3 .card .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap {
  padding: 0px 0px 0px;
  background-image: transparent
      height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.3s ease-out;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap {
    padding: 20px;
  }
}
.cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  weight: 75%;
}
.cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .image-wrapper img {
  object-fit: cover;
  margin: 0 auto;
  position: static;
}
.cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .image-wrapper .mbr-section-btn {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .image-wrapper .mbr-section-btn {
    opacity: 1;
    transform: translateY(0);
  }
}
.cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .card-text {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
@media (max-width: 992px) {
  .cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .card-text {
    opacity: 1;
    transform: translateY(0);
  }
}
.cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .card-text .card-title {
  margin-bottom: 0;
}
.cid-tA0Hi8kCU3 .card .card-wrapper .card-wrap .card-text .card-price {
  margin: 10px 0 0;
}
.cid-tA0Hi8kCU3 .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, transparent, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, transparent);
  color: #000000 !important;
}
.cid-tA0Hi8kCU3 .mbr-section-title {
  color: #ffffff;
}
.cid-tA0Hi8kCU3 .mbr-section-subtitle {
  color: #b6b6b6;
}
.cid-tA0Hi8kCU3 .mbr-text {
  color: #b6b6b6;
}
.cid-tA0Hi8kCU3 .card-title {
  color: #000000;
}
.cid-tA0Hi8kCU3 .card-price {
  color: #000000;
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tA0YH47TX8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/produccion-1-1920x1080.webp");
}
.cid-tA0YH47TX8 .mbr-overlay {
  background-color: #353535;
  opacity: 0.4;
}
.cid-tA0YH47TX8 H3 {
  color: #ffffff;
}
.cid-tA0YH47TX8 LABEL {
  color: #ffffff;
}
.cid-tA15tU8OF0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00497c;
}
.cid-tA15tU8OF0 .mbr-text {
  margin-bottom: 20px;
}
.cid-tA15tU8OF0 .mbr-section-btn .btn:hover {
  background-color: #aa1a1a !important;
  border-color: #aa1a1a !important;
}
.cid-tA15tU8OF0 .mbr-section-btn .btn .mbr-iconfont {
  font-size: 15px;
}
.cid-tA15tU8OF0 .divider {
  background-color: #ffffff;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  opacity: 0.6;
}
.cid-tA15tU8OF0 .contact__wrap {
  padding-bottom: 40px;
}
.cid-tA15tU8OF0 .contact__wrap:last-child {
  padding-bottom: 0;
}
.cid-tA15tU8OF0 .contact__title,
.cid-tA15tU8OF0 .contact__text {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tA15tU8OF0 .contact__wrap,
  .cid-tA15tU8OF0 .title__block {
    padding-bottom: 30px;
  }
}
.cid-tA15tU8OF0 .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-typ21FDUcn .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-typ21FDUcn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-typ21FDUcn .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-typ21FDUcn .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-typ21FDUcn .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-typ21FDUcn .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-typ21FDUcn .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-typ21FDUcn .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.show,
.cid-typ21FDUcn .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-typ21FDUcn .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-typ21FDUcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-typ21FDUcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-typ21FDUcn .navbar {
    flex-wrap: nowrap;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-typ21FDUcn .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-typ21FDUcn .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.show,
  .cid-typ21FDUcn .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-typ21FDUcn .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-typ21FDUcn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-typ21FDUcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-typ21FDUcn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-typ21FDUcn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-typ21FDUcn .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-typ21FDUcn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-typ21FDUcn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-typ21FDUcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-typ21FDUcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-typ21FDUcn .dropdown-item.active,
.cid-typ21FDUcn .dropdown-item:active {
  background-color: transparent;
}
.cid-typ21FDUcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-typ21FDUcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-typ21FDUcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-typ21FDUcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-typ21FDUcn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-typ21FDUcn .navbar-buttons {
  text-align: center;
}
.cid-typ21FDUcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-typ21FDUcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-typ21FDUcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-typ21FDUcn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-typ21FDUcn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-typ21FDUcn a.nav-link:focus {
  outline: none;
}
.cid-typ21FDUcn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-typ21FDUcn .nav-link:hover,
.cid-typ21FDUcn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-typ21FDUcn .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tApEu1hloM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tApEu1hloM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/ryd-1-1920x1080.webp");
}
.cid-tApEu1hloM .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tApEu1hloM .mbr-text,
.cid-tApEu1hloM .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tA6cxn7bap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e2433;
  overflow: hidden;
}
.cid-tA6cxn7bap .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA6cxn7bap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA6cxn7bap .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tA6cxn7bap .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tA6cxn7bap .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tA6cxn7bap .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tA6cxn7bap .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tA6cxn7bap .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tA6cxn7bap .mbr-section-head {
  width: 100%;
}
.cid-tA6cxn7bap .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-tA6cxn7bap .mbr-section-title {
    text-align: center;
  }
}
.cid-tA6cxn7bap .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tA6cxn7bap .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tA6cxn7bap .card-row {
  align-items: stretch;
}
.cid-tA6cxn7bap .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tA6cxn7bap .item {
    margin-top: 30px;
  }
}
.cid-tA6cxn7bap .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-tA6cxn7bap .item-wrapper {
    padding: 20px;
  }
}
.cid-tA6cxn7bap .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tA6cxn7bap .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-tA6cxn7bap .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-tA6cxn7bap .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-tA6cxn7bap .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-tA6cxn7bap .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-tA6cxn7bap .card-title {
  position: relative;
  z-index: 5;
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-tA6cxn7bap .card-title {
    margin-bottom: 10px;
  }
}
.cid-tA6cxn7bap .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-tA6cxn7bap .card-text a {
  transition: .4s all;
}
.cid-tA6cxn7bap .card-text a:hover {
  color: #aa1a1a !important;
}
.cid-typ2VrClYn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-typ2VrClYn .media-wrap img {
  filter: invert(1);
}
.cid-typ2VrClYn .mbr-text {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-typ2VrClYn .links {
    justify-content: center;
  }
  .cid-typ2VrClYn .link {
    margin: 0.3rem;
  }
}
@media (min-width: 992px) {
  .cid-typ2VrClYn .links {
    justify-content: flex-end;
  }
  .cid-typ2VrClYn .link {
    margin: 0.5rem;
  }
}
.cid-typ2VrClYn .footer-lower .copyright {
  margin-bottom: 1rem;
  text-align: center;
}
.cid-typ2VrClYn .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #ffffff;
  border: none;
}
.cid-typ2VrClYn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-typ2VrClYn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-typ2VrClYn .social-list .soc-item {
  margin: 0 0.5rem 0.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(225, 225, 225, 0.2);
}
.cid-typ2VrClYn .social-list a {
  margin: 0;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-typ2VrClYn .social-list a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .cid-typ2VrClYn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tzQEU6xle7X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/EVM-2000x1500.webp");
}
.cid-tzQEU6xle7X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzQEU6xle7X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzQEU6xle7X .text-wrapper {
  margin-left: 160px;
  position: sticky;
  top: 5rem;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7X .text-wrapper {
    margin: 0 30px 60px;
    position: static;
  }
}
@media (max-width: 768px) {
  .cid-tzQEU6xle7X .text-wrapper {
    margin: 0 30px 40px;
  }
}
.cid-tzQEU6xle7X .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7X .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tzQEU6xle7X .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tzQEU6xle7X .cards {
  padding: 0 160px 0 80px;
}
@media (max-width: 1200px) {
  .cid-tzQEU6xle7X .cards {
    padding: 0 160px 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7X .cards {
    padding: 0 30px;
  }
}
.cid-tzQEU6xle7X .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7X .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tzQEU6xle7X .cards .card {
    margin-bottom: 40px;
  }
}
.cid-tzQEU6xle7X .cards .card .card-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tzQEU6xle7X .cards .card .card-title {
    margin-bottom: 12px;
  }
}
.cid-tzQEU6xle7X .cards .card .card-text {
  margin: 0;
}
.cid-tzQEU6xle7X .mbr-section-title {
  color: #FFFFFF;
}
.cid-tzQEU6xle7X .mbr-text {
  color: #FFFFFF;
}
.cid-tzQEU6xle7X .card-title {
  color: #FFFFFF;
}
.cid-tzQEU6xle7X .card-text {
  color: #FFFFFF;
}
