.btn {
  border-radius: 50px;
}
body {
  font-family: 'Montagu Slab', serif;
}
.display-1 {
  font-family: 'Montagu Slab', serif;
  font-size: 6.4375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.046875rem;
}
.display-2 {
  font-family: 'Montagu Slab', serif;
  font-size: 4.6875rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.859375rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Montagu Slab', serif;
  font-size: 2.6875rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.359375rem;
}
.display-7 {
  font-family: 'Montagu Slab', 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: 5.15rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.50625rem;
    font-size: calc( 2.9031249999999997rem + (6.4375 - 2.9031249999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.9031249999999997rem + (6.4375 - 2.9031249999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.75rem;
    font-size: calc( 2.290625rem + (4.6875 - 2.290625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.290625rem + (4.6875 - 2.290625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.15rem;
    font-size: calc( 1.590625rem + (2.6875 - 1.590625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.590625rem + (2.6875 - 1.590625) * ((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: 1.25rem 3.5625rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #012b3a !important;
}
.bg-success {
  background-color: #e5be8a !important;
}
.bg-info {
  background-color: #fff8ef !important;
}
.bg-warning {
  background-color: #8e443d !important;
}
.bg-danger {
  background-color: #75dbcd !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #012b3a !important;
  border-color: #012b3a !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3d626c !important;
  border-color: #3d626c !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: #1e3035 !important;
  border-color: #1e3035 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1e3035 !important;
  border-color: #1e3035 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fff8ef !important;
  border-color: #fff8ef !important;
  color: #ef8600 !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: #985600 !important;
  background-color: #ffd298 !important;
  border-color: #ffd298 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ef8600 !important;
  background-color: #ffd298 !important;
  border-color: #ffd298 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e5be8a !important;
  border-color: #e5be8a !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: #d59743 !important;
  border-color: #d59743 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d59743 !important;
  border-color: #d59743 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #512723 !important;
  border-color: #512723 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #512723 !important;
  border-color: #512723 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #75dbcd !important;
  border-color: #75dbcd !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: #34c6b2 !important;
  border-color: #34c6b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #34c6b2 !important;
  border-color: #34c6b2 !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: #012b3a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #012b3a !important;
  border-color: #012b3a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3d626c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1e3035 !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: #3d626c !important;
  border-color: #3d626c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff8ef;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffd298 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ef8600 !important;
  background-color: #fff8ef !important;
  border-color: #fff8ef !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e5be8a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d59743 !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: #e5be8a !important;
  border-color: #e5be8a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8e443d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #512723 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #75dbcd;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #34c6b2 !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: #75dbcd !important;
  border-color: #75dbcd !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: #012b3a !important;
}
.text-secondary {
  color: #3d626c !important;
}
.text-success {
  color: #e5be8a !important;
}
.text-info {
  color: #fff8ef !important;
}
.text-warning {
  color: #8e443d !important;
}
.text-danger {
  color: #75dbcd !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #012b3a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3d626c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #e5be8a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #fff8ef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e443d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #75dbcd !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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 0.3s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #012b3a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fff8ef;
}
.alert-warning {
  background-color: #8e443d;
}
.alert-danger {
  background-color: #75dbcd;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #012b3a;
  border-color: #012b3a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #25c3fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c98881;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #012b3a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #012b3a;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #012b3a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #012b3a;
}
.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: #012b3a;
  border-bottom-color: #012b3a;
}
.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: #012b3a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3d626c !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='%23012b3a' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1440px;
}
a {
  transition: color 300ms ease !important;
}
a.btn {
  transition: color 300ms ease !important;
  box-shadow: none !important;
}
a.btn.btn-warning:hover {
  background-color: #e5bc8a !important;
  border-color: #e5bc8a !important;
}
.card-title {
  margin-bottom: 0;
}
button:focus {
  box-shadow: none !important;
}
.cid-sUG7JPpRKg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #3d626c;
}
.cid-sUG7JPpRKg .mbr-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  letter-spacing: 5.2px;
}
.cid-sUG7JPpRKg .mbr-text {
  color: #8c8c95;
  text-align: center;
}
.cid-sUG7JPpRKg .button-align {
  text-align: center;
}
.cid-sUG7JPpRKg .mbr-section-btn {
  display: block;
}
.cid-sUG7JPpRKg .btn {
  margin-top: 20px;
  transition: all .3s !important;
}
.cid-sUG7JPpRKg a.btn > span {
  margin-left: 0.5rem;
}
.cid-sUG7JPpRKg .mbr-text,
.cid-sUG7JPpRKg .button-align {
  color: #ffffff;
}
.cid-sUG7JPpRKg a.btn {
  letter-spacing: 5.4px;
}
.cid-sUG1QNQAHt {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-sUG1QNQAHt .ico {
  margin: 0 auto;
  text-align: center;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -10%;
  left: 10%;
  z-index: 5;
  filter: url("../../../#goo");
}
.cid-sUG1QNQAHt .ico .circle {
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 150px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.cid-sUG1QNQAHt .ico .st-arrow {
  fill: #8e443d;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}
.cid-sUG1QNQAHt .svg {
  z-index: 9;
  position: relative;
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  20% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.cid-sUG1QNQAHt .mbr-iconfont {
  font-size: 4rem;
  transition: all 0.2s;
  color: #e5be8a;
  background: #ffffff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sUG1QNQAHt .play-button-container {
  position: absolute;
  right: 0;
  top: 65%;
  z-index: 5;
  transform: translate(50%, -50%);
  width: 150px;
  height: 150px;
}
.cid-sUG1QNQAHt .mbr-iconfont:before {
  padding-left: 12px;
}
.cid-sUG1QNQAHt .img-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.cid-sUG1QNQAHt .container {
  position: relative;
}
.cid-sUG1QNQAHt .big-img {
  border-radius: 25px;
  box-shadow: 34px 21px 51px 5px rgba(0, 0, 0, 0.71);
}
.cid-sUG1QNQAHt .text-circle {
  height: 210px;
  width: auto;
  position: absolute;
  animation: 15s linear infinite running rotate360;
  top: -30px;
  left: -30px;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1150px) {
  .cid-sUG1QNQAHt .img-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 950px) {
  .cid-sUG1QNQAHt .play-button-container {
    display: none;
  }
}
@media (max-width: 640px) {
  .cid-sUG1QNQAHt .ico {
    display: none;
  }
}
.cid-sUG1QxriQW .navbar-dropdown {
  position: relative !important;
}
.cid-sUG1QxriQW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUG1QxriQW .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sUG1QxriQW .dropdown-item:hover,
.cid-sUG1QxriQW .dropdown-item:focus {
  color: #012b3a !important;
}
.cid-sUG1QxriQW .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-sUG1QxriQW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sUG1QxriQW .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-sUG1QxriQW .container {
  display: flex;
  margin: auto;
}
.cid-sUG1QxriQW .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUG1QxriQW .dropdown-menu,
.cid-sUG1QxriQW .navbar.opened {
  background: #8e443d !important;
}
.cid-sUG1QxriQW .nav-item:focus,
.cid-sUG1QxriQW .nav-link:focus {
  outline: none;
}
.cid-sUG1QxriQW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sUG1QxriQW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUG1QxriQW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sUG1QxriQW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUG1QxriQW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUG1QxriQW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUG1QxriQW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e443d;
}
.cid-sUG1QxriQW .navbar.opened {
  transition: all 0.3s;
}
.cid-sUG1QxriQW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sUG1QxriQW .navbar .navbar-logo img {
  width: auto;
}
.cid-sUG1QxriQW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUG1QxriQW .navbar.collapsed {
  justify-content: center;
}
.cid-sUG1QxriQW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUG1QxriQW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sUG1QxriQW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-sUG1QxriQW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUG1QxriQW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUG1QxriQW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sUG1QxriQW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUG1QxriQW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUG1QxriQW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUG1QxriQW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUG1QxriQW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUG1QxriQW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUG1QxriQW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUG1QxriQW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sUG1QxriQW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sUG1QxriQW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUG1QxriQW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUG1QxriQW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sUG1QxriQW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sUG1QxriQW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUG1QxriQW .navbar.navbar-short {
  min-height: 60px;
}
.cid-sUG1QxriQW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sUG1QxriQW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sUG1QxriQW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUG1QxriQW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUG1QxriQW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUG1QxriQW .dropdown-item.active,
.cid-sUG1QxriQW .dropdown-item:active {
  background-color: transparent;
}
.cid-sUG1QxriQW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUG1QxriQW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUG1QxriQW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUG1QxriQW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e443d;
}
.cid-sUG1QxriQW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUG1QxriQW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUG1QxriQW ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sUG1QxriQW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sUG1QxriQW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sUG1QxriQW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5ec049;
}
.cid-sUG1QxriQW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUG1QxriQW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUG1QxriQW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUG1QxriQW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUG1QxriQW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUG1QxriQW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUG1QxriQW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUG1QxriQW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUG1QxriQW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sUG1QxriQW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUG1QxriQW .navbar {
    height: 70px;
  }
  .cid-sUG1QxriQW .navbar.opened {
    height: auto;
  }
  .cid-sUG1QxriQW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUG1QxriQW a {
  display: inline;
}
.cid-sUG1QxriQW img {
  display: inline;
  padding-right: 10px;
}
.cid-sUG1QxriQW .dropdown-toggle:after {
  display: none;
}
.cid-sUG1QxriQW .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sUG1QxriQW .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-sUG1QxriQW .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sUG1QxriQW .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sUG1QxriQW .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sUG1QxriQW .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sUG1QxriQW ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sUG1QxriQW .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sUG1QxriQW .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sUG1QxriQW .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sUG1QxriQW .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sUG1QxriQW .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-sUG1QxriQW .btn {
  border-radius: 1000px !important;
}
.cid-sUG1QxriQW .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sUG1QxriQW .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sUG1QxriQW .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sUG1QxriQW .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sUG1QxriQW .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-sUG1QxriQW .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sUG1QxriQW .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-sUG1QxriQW .container,
  .cid-sUG1QxriQW .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sUG1QxriQW li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sUG1QxriQW ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sUG1QxriQW .icons-menu {
    min-width: initial !important;
  }
  .cid-sUG1QxriQW a.btn {
    margin-top: 10px;
  }
}
.cid-sUG1QxriQW a.btn > span {
  margin-left: 0.5rem;
}
.cid-sUG1QxriQW .nav-item {
  position: relative;
}
.cid-sUG1QxriQW .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sUG1QxriQW .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-sUG1QxriQW .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-sUG1QxriQW a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-sUG1QxriQW li.nav-item {
  padding: 13px 20px !important;
}
.cid-sUG1QxriQW a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-sUGbUDkWZH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-sUGbUDkWZH img,
.cid-sUGbUDkWZH .item-img {
  width: 100%;
}
.cid-sUGbUDkWZH .item:focus,
.cid-sUGbUDkWZH span:focus {
  outline: none;
}
.cid-sUGbUDkWZH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sUGbUDkWZH .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 30px;
  width: 100%;
}
.cid-sUGbUDkWZH .mbr-text {
  margin-bottom: 0;
  color: #fff8ef;
  text-align: left;
}
.cid-sUGbUDkWZH .item-title {
  color: #fff8ef;
  margin-bottom: 28px;
  text-align: left;
}
.cid-sUGbUDkWZH .carousel-inner {
  margin: auto;
  width: 87%;
}
.cid-sUGbUDkWZH .carousel,
.cid-sUGbUDkWZH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sUGbUDkWZH .carousel-caption {
  bottom: 40px;
}
.cid-sUGbUDkWZH .mobi-mbri {
  font-size: 25px;
  opacity: 1;
  color: #fff8ef;
}
.cid-sUGbUDkWZH .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sUGbUDkWZH .carousel-control {
  opacity: 1;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sUGbUDkWZH .carousel-control.carousel-control-prev {
  left: 1%;
}
@media (max-width: 992px) {
  .cid-sUGbUDkWZH .carousel-control.carousel-control-prev {
    left: 5%;
  }
}
.cid-sUGbUDkWZH .carousel-control.carousel-control-next {
  right: 51%;
}
@media (max-width: 992px) {
  .cid-sUGbUDkWZH .carousel-control.carousel-control-next {
    right: 45%;
  }
}
.cid-sUGbUDkWZH .carousel-indicators {
  position: absolute;
  bottom: 0;
}
.cid-sUGbUDkWZH .carousel-indicators li {
  max-width: 6px;
  height: 6px;
  width: 6px;
  max-height: 6px;
  margin: 5px;
  background-color: #181818;
  opacity: 0.2;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sUGbUDkWZH .carousel-indicators li.active,
.cid-sUGbUDkWZH .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sUGbUDkWZH .carousel-indicators li::after,
.cid-sUGbUDkWZH .carousel-indicators li::before {
  content: none;
}
.cid-sUGbUDkWZH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-sUGbUDkWZH .row {
  align-items: center;
}
.cid-sUGbUDkWZH a {
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-sUGbUDkWZH .carousel-control {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sUGbUDkWZH .carousel-inner {
    width: 100%;
  }
  .cid-sUGbUDkWZH .item-content {
    padding-top: 20px;
  }
}
.cid-sUG8wuBLso {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-sUG8wuBLso .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sUG8wuBLso .mbr-section-title {
  color: #012b3a;
  text-align: center;
}
.cid-sVf52Ap8O9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-sVf52Ap8O9 .item:focus,
.cid-sVf52Ap8O9 span:focus {
  outline: none;
}
.cid-sVf52Ap8O9 .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 30px;
}
.cid-sVf52Ap8O9 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sVf52Ap8O9 .mbr-text,
.cid-sVf52Ap8O9 .mbr-section-btn {
  text-align: center;
}
.cid-sVf52Ap8O9 .mbr-text {
  margin-bottom: 0;
  color: #75dbcd;
  text-align: left;
}
.cid-sVf52Ap8O9 .item-title {
  text-align: center;
  margin: 0;
  color: #012b3a;
  margin-bottom: 20px;
}
.cid-sVf52Ap8O9 .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-sVf52Ap8O9 .name {
  color: #111213;
  font-size: 24px;
  text-align: center;
}
.cid-sVf52Ap8O9 .item-content {
  padding: 50px 30px 0px;
}
.cid-sVf52Ap8O9 .names {
  margin-bottom: 10px;
}
.cid-sVf52Ap8O9 a {
  font-weight: 400 !important;
  display: flex;
  align-items: center;
}
.cid-sVf52Ap8O9 .item-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  object-fit: cover;
}
.cid-sVf52Ap8O9 .mbr-iconfont {
  font-size: 1rem;
  margin-top: 3px;
  margin-left: 5px;
}
.cid-sVf52Ap8O9 .name2 {
  margin-bottom: 20px;
}
.cid-sVf52Ap8O9 .mbr-textt:hover {
  color: #EABB80 !important;
}
.cid-sVf52Ap8O9 .namee {
  margin-bottom: 10px;
}
.cid-sVf52Ap8O9 .namee:hover {
  color: #7eccc4 !important;
}
.cid-sVf52Ap8O9 img {
  height: 290px;
  object-fit: cover;
}
.cid-sVf52Ap8O9 .item {
  margin-top: 30px;
}
.cid-sVf52Ap8O9 .item:nth-child(1) {
  margin-top: 0px;
}
.cid-sVf52Ap8O9 .item:nth-child(2) {
  margin-top: 0px;
}
.cid-sVf52Ap8O9 .item:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-sVf52Ap8O9 .item:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .cid-sVf52Ap8O9 .item:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-sUG9fA2YDV {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #3d626c;
}
.cid-sUG9fA2YDV .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-sUG9fA2YDV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDKPJmsCJs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #8e443d;
}
.cid-tDKPJmsCJs .ico {
  margin: 0 auto;
  text-align: center;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -12%;
  left: -6%;
  z-index: 5;
  filter: url("../../../#goo");
}
.cid-tDKPJmsCJs .ico .circle {
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 150px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.cid-tDKPJmsCJs .ico .st-arrow {
  fill: #8e443d;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}
.cid-tDKPJmsCJs .svg {
  z-index: 9;
  position: relative;
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  20% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.cid-tDKPJmsCJs .mbr-iconfont {
  font-size: 4rem;
  transition: all 0.2s;
  color: #e5be8a;
  background: #ffffff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDKPJmsCJs .play-button-container {
  position: absolute;
  right: 0;
  top: 65%;
  z-index: 5;
  transform: translate(50%, -50%);
  width: 150px;
  height: 150px;
}
.cid-tDKPJmsCJs .mbr-iconfont:before {
  padding-left: 12px;
  color: #8e443d;
}
.cid-tDKPJmsCJs .img-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.cid-tDKPJmsCJs .container {
  position: relative;
}
.cid-tDKPJmsCJs .big-img {
  border-radius: 25px;
  box-shadow: 34px 21px 51px 5px rgba(0, 0, 0, 0.71);
}
.cid-tDKPJmsCJs .text-circle {
  height: 210px;
  width: auto;
  position: absolute;
  animation: 15s linear infinite running rotate360;
  top: -30px;
  left: -30px;
  z-index: -1;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1150px) {
  .cid-tDKPJmsCJs .img-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 950px) {
  .cid-tDKPJmsCJs .play-button-container {
    top: 90% !important;
    right: 40px !important;
  }
  .cid-tDKPJmsCJs .mbr-iconfont {
    width: 100px !important;
    height: 100px !important;
  }
  .cid-tDKPJmsCJs .text-circle {
    height: 160px;
  }
  .cid-tDKPJmsCJs .circle {
    width: 75% !important;
    height: 75% !important;
    top: 40% !important;
    left: 40% !important;
  }
  .cid-tDKPJmsCJs .ico {
    width: 23vw;
    height: 23vw;
  }
}
@media (max-width: 561px) {
  .cid-tDKPJmsCJs .play-button-container {
    top: 100% !important;
    right: 0 !important;
  }
  .cid-tDKPJmsCJs .mbr-iconfont {
    width: 18vw !important;
    height: 18vw !important;
    font-size: 3rem !important;
  }
  .cid-tDKPJmsCJs .text-circle {
    height: 24vw;
    top: -3vw !important;
    left: -3vw !important;
  }
}
@media (max-width: 400px) {
  .cid-tDKPJmsCJs .mbr-iconfont {
    font-size: 2rem !important;
  }
  .cid-tDKPJmsCJs .mbr-iconfont::before {
    padding-left: 7px;
  }
  .cid-tDKPJmsCJs .play-button-container {
    width: 90px !important;
    height: 70px !important;
  }
}
.cid-sUG23LXrmi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3d626c;
}
.cid-sUG23LXrmi .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sUG23LXrmi a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-sUG23LXrmi a.text-danger:hover {
  color: #EABB80 !important;
}
.cid-tDPnzZ8bWc .navbar-dropdown {
  position: relative !important;
}
.cid-tDPnzZ8bWc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPnzZ8bWc .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPnzZ8bWc .dropdown-item:hover,
.cid-tDPnzZ8bWc .dropdown-item:focus {
  color: #012b3a !important;
}
.cid-tDPnzZ8bWc .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPnzZ8bWc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPnzZ8bWc .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPnzZ8bWc .container {
  display: flex;
  margin: auto;
}
.cid-tDPnzZ8bWc .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPnzZ8bWc .dropdown-menu,
.cid-tDPnzZ8bWc .navbar.opened {
  background: #8e443d !important;
}
.cid-tDPnzZ8bWc .nav-item:focus,
.cid-tDPnzZ8bWc .nav-link:focus {
  outline: none;
}
.cid-tDPnzZ8bWc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPnzZ8bWc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPnzZ8bWc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPnzZ8bWc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPnzZ8bWc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPnzZ8bWc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPnzZ8bWc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e443d;
}
.cid-tDPnzZ8bWc .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPnzZ8bWc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPnzZ8bWc .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPnzZ8bWc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPnzZ8bWc .navbar.collapsed {
  justify-content: center;
}
.cid-tDPnzZ8bWc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPnzZ8bWc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPnzZ8bWc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tDPnzZ8bWc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPnzZ8bWc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPnzZ8bWc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDPnzZ8bWc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPnzZ8bWc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPnzZ8bWc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDPnzZ8bWc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPnzZ8bWc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPnzZ8bWc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPnzZ8bWc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPnzZ8bWc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tDPnzZ8bWc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPnzZ8bWc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPnzZ8bWc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPnzZ8bWc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPnzZ8bWc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPnzZ8bWc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPnzZ8bWc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPnzZ8bWc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPnzZ8bWc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPnzZ8bWc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPnzZ8bWc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPnzZ8bWc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPnzZ8bWc .dropdown-item.active,
.cid-tDPnzZ8bWc .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPnzZ8bWc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPnzZ8bWc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPnzZ8bWc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPnzZ8bWc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e443d;
}
.cid-tDPnzZ8bWc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPnzZ8bWc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPnzZ8bWc ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPnzZ8bWc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPnzZ8bWc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPnzZ8bWc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5ec049;
}
.cid-tDPnzZ8bWc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPnzZ8bWc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPnzZ8bWc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPnzZ8bWc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPnzZ8bWc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPnzZ8bWc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPnzZ8bWc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPnzZ8bWc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPnzZ8bWc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPnzZ8bWc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPnzZ8bWc .navbar {
    height: 70px;
  }
  .cid-tDPnzZ8bWc .navbar.opened {
    height: auto;
  }
  .cid-tDPnzZ8bWc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPnzZ8bWc a {
  display: inline;
}
.cid-tDPnzZ8bWc img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPnzZ8bWc .dropdown-toggle:after {
  display: none;
}
.cid-tDPnzZ8bWc .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tDPnzZ8bWc .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPnzZ8bWc .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPnzZ8bWc .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPnzZ8bWc .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPnzZ8bWc .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPnzZ8bWc ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPnzZ8bWc .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPnzZ8bWc .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPnzZ8bWc .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPnzZ8bWc .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPnzZ8bWc .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-tDPnzZ8bWc .btn {
  border-radius: 1000px !important;
}
.cid-tDPnzZ8bWc .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPnzZ8bWc .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPnzZ8bWc .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDPnzZ8bWc .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tDPnzZ8bWc .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-tDPnzZ8bWc .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPnzZ8bWc .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPnzZ8bWc .container,
  .cid-tDPnzZ8bWc .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPnzZ8bWc li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPnzZ8bWc ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tDPnzZ8bWc .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPnzZ8bWc a.btn {
    margin-top: 10px;
  }
}
.cid-tDPnzZ8bWc a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPnzZ8bWc .nav-item {
  position: relative;
}
.cid-tDPnzZ8bWc .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPnzZ8bWc .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-tDPnzZ8bWc .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-tDPnzZ8bWc a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-tDPnzZ8bWc li.nav-item {
  padding: 13px 20px !important;
}
.cid-tDPnzZ8bWc a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-tDPnOsuONI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/24-612x408.jpg");
}
.cid-tDPnOsuONI .image-wrapper {
  max-width: 600px;
}
.cid-tDPnOsuONI .svg1 {
  width: 240px;
  position: absolute;
  z-index: 10;
  right: 15%;
  bottom: -40px;
}
.cid-tDPnOsuONI .main {
  align-items: center;
}
.cid-tDPnOsuONI .mbr-section-subtitle {
  margin-bottom: 20px;
  letter-spacing: 5.4px;
  color: #ffffff;
}
.cid-tDPnOsuONI .mbr-section-title {
  margin-bottom: 28px;
  color: #ffffff;
}
.cid-tDPnOsuONI .mbr-text,
.cid-tDPnOsuONI .button-align {
  color: #ffffff;
}
.cid-tDPnOsuONI .st1 {
  fill: #012b3a;
}
.cid-tDPnOsuONI .st0 {
  fill: #5f0e38;
}
.cid-tDPnOsuONI a {
  font-weight: 400;
}
@media (max-width: 768px) {
  .cid-tDPnOsuONI .b {
    padding-top: 30px;
  }
}
@media (max-width: 950px) {
  .cid-tDPnOsuONI .svg1 {
    display: none;
  }
}
.cid-tDPnOsuONI img {
  display: block;
  width: 100%;
  -webkit-mask-image: url("../../../assets/images/group2.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.cid-tDPnA0pzFS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-tDPnA0pzFS .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-tDPnA0pzFS .mbr-section-title {
  color: #012b3a;
  text-align: center;
}
.cid-tDPnA1LQ7T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-tDPnA1LQ7T .ico {
  margin: 0 auto;
  text-align: center;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -12%;
  left: -6%;
  z-index: 5;
  filter: url("../../../#goo");
}
.cid-tDPnA1LQ7T .ico .circle {
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 150px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.cid-tDPnA1LQ7T .ico .st-arrow {
  fill: #8e443d;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}
.cid-tDPnA1LQ7T .svg {
  z-index: 9;
  position: relative;
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  20% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.cid-tDPnA1LQ7T .mbr-iconfont {
  font-size: 4rem;
  transition: all 0.2s;
  color: #e5be8a;
  background: #ffffff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDPnA1LQ7T .play-button-container {
  position: absolute;
  right: 0;
  top: 65%;
  z-index: 5;
  transform: translate(50%, -50%);
  width: 150px;
  height: 150px;
}
.cid-tDPnA1LQ7T .mbr-iconfont:before {
  padding-left: 12px;
  color: #8e443d;
}
.cid-tDPnA1LQ7T .img-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.cid-tDPnA1LQ7T .container {
  position: relative;
}
.cid-tDPnA1LQ7T .big-img {
  border-radius: 25px;
  box-shadow: 34px 21px 51px 5px rgba(0, 0, 0, 0.71);
}
.cid-tDPnA1LQ7T .text-circle {
  height: 210px;
  width: auto;
  position: absolute;
  animation: 15s linear infinite running rotate360;
  top: -30px;
  left: -30px;
  z-index: -1;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1150px) {
  .cid-tDPnA1LQ7T .img-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 950px) {
  .cid-tDPnA1LQ7T .play-button-container {
    top: 90% !important;
    right: 40px !important;
  }
  .cid-tDPnA1LQ7T .mbr-iconfont {
    width: 100px !important;
    height: 100px !important;
  }
  .cid-tDPnA1LQ7T .text-circle {
    height: 160px;
  }
  .cid-tDPnA1LQ7T .circle {
    width: 75% !important;
    height: 75% !important;
    top: 40% !important;
    left: 40% !important;
  }
  .cid-tDPnA1LQ7T .ico {
    width: 23vw;
    height: 23vw;
  }
}
@media (max-width: 561px) {
  .cid-tDPnA1LQ7T .play-button-container {
    top: 100% !important;
    right: 0 !important;
  }
  .cid-tDPnA1LQ7T .mbr-iconfont {
    width: 18vw !important;
    height: 18vw !important;
    font-size: 3rem !important;
  }
  .cid-tDPnA1LQ7T .text-circle {
    height: 24vw;
    top: -3vw !important;
    left: -3vw !important;
  }
}
@media (max-width: 400px) {
  .cid-tDPnA1LQ7T .mbr-iconfont {
    font-size: 2rem !important;
  }
  .cid-tDPnA1LQ7T .mbr-iconfont::before {
    padding-left: 7px;
  }
  .cid-tDPnA1LQ7T .play-button-container {
    width: 90px !important;
    height: 70px !important;
  }
}
.cid-tDPnA1lLpY {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-tDPnA1lLpY .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-tDPnA1lLpY .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tDPor7CVyk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #3d626c;
}
.cid-tDPor7CVyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPor7CVyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPor7CVyk .container-fluid {
  margin: 0;
  padding: 0 72px 0 0;
}
@media (max-width: 992px) {
  .cid-tDPor7CVyk .container-fluid {
    padding: 0 20px;
  }
}
.cid-tDPor7CVyk .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tDPor7CVyk .container {
    padding: 0 20px;
  }
  .cid-tDPor7CVyk .container .row {
    padding: 0;
  }
}
.cid-tDPor7CVyk .image-wrapper img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tDPor7CVyk .image-wrapper img {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tDPor7CVyk .image-wrapper img {
    height: 300px;
  }
}
.cid-tDPor7CVyk .title-wrapper {
  padding: 0 90px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tDPor7CVyk .title-wrapper {
    padding: 0;
  }
}
.cid-tDPor7CVyk .title-wrapper .title-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.cid-tDPor7CVyk .title-wrapper .title-wrap .desc-wrapper .desc-wrap .mbr-desc {
  margin-right: 16px;
  margin-bottom: 0;
}
.cid-tDPor7CVyk .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.cid-tDPor7CVyk .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap .line-item {
  height: 2px;
  width: 44px;
  background-color: #c6a38f;
  margin-right: 8px;
}
.cid-tDPor7CVyk .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap .line-item:last-child {
  margin-right: 0;
}
.cid-tDPor7CVyk .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tDPor7CVyk .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tDPor7CVyk .mbr-desc {
  color: #ffffff;
}
.cid-tDPor7CVyk .mbr-text {
  color: #ffffff;
}
.cid-tDPor7CVyk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDPor7CVyk .mbr-text,
.cid-tDPor7CVyk .mbr-section-btn {
  text-align: center;
}
.cid-tDPoCZSF2j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-tDPoCZSF2j .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 5.2px;
}
.cid-tDPoCZSF2j .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tDPoCZSF2j .mbr-text,
.cid-tDPoCZSF2j .button-align {
  color: #000000;
}
.cid-tDPnA2e6fM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3d626c;
}
.cid-tDPnA2e6fM .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tDPnA2e6fM a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-tDPnA2e6fM a.text-danger:hover {
  color: #EABB80 !important;
}
.cid-tDPqeOkTju .navbar-dropdown {
  position: relative !important;
}
.cid-tDPqeOkTju .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPqeOkTju .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPqeOkTju .dropdown-item:hover,
.cid-tDPqeOkTju .dropdown-item:focus {
  color: #012b3a !important;
}
.cid-tDPqeOkTju .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPqeOkTju .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPqeOkTju .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPqeOkTju .container {
  display: flex;
  margin: auto;
}
.cid-tDPqeOkTju .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPqeOkTju .dropdown-menu,
.cid-tDPqeOkTju .navbar.opened {
  background: #8e443d !important;
}
.cid-tDPqeOkTju .nav-item:focus,
.cid-tDPqeOkTju .nav-link:focus {
  outline: none;
}
.cid-tDPqeOkTju .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPqeOkTju .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPqeOkTju .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPqeOkTju .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPqeOkTju .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPqeOkTju .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPqeOkTju .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e443d;
}
.cid-tDPqeOkTju .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPqeOkTju .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPqeOkTju .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPqeOkTju .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPqeOkTju .navbar.collapsed {
  justify-content: center;
}
.cid-tDPqeOkTju .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPqeOkTju .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPqeOkTju .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tDPqeOkTju .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPqeOkTju .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPqeOkTju .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDPqeOkTju .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPqeOkTju .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPqeOkTju .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDPqeOkTju .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPqeOkTju .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPqeOkTju .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPqeOkTju .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPqeOkTju .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tDPqeOkTju .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPqeOkTju .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPqeOkTju .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPqeOkTju .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPqeOkTju .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPqeOkTju .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPqeOkTju .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPqeOkTju .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPqeOkTju .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPqeOkTju .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPqeOkTju .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPqeOkTju .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPqeOkTju .dropdown-item.active,
.cid-tDPqeOkTju .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPqeOkTju .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPqeOkTju .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPqeOkTju .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPqeOkTju .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e443d;
}
.cid-tDPqeOkTju .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPqeOkTju .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPqeOkTju ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPqeOkTju .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPqeOkTju button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPqeOkTju button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5ec049;
}
.cid-tDPqeOkTju button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPqeOkTju button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPqeOkTju button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPqeOkTju button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPqeOkTju nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPqeOkTju nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPqeOkTju nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPqeOkTju nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPqeOkTju a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPqeOkTju .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPqeOkTju .navbar {
    height: 70px;
  }
  .cid-tDPqeOkTju .navbar.opened {
    height: auto;
  }
  .cid-tDPqeOkTju .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPqeOkTju a {
  display: inline;
}
.cid-tDPqeOkTju img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPqeOkTju .dropdown-toggle:after {
  display: none;
}
.cid-tDPqeOkTju .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tDPqeOkTju .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPqeOkTju .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPqeOkTju .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPqeOkTju .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPqeOkTju .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPqeOkTju ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPqeOkTju .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPqeOkTju .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPqeOkTju .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPqeOkTju .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPqeOkTju .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-tDPqeOkTju .btn {
  border-radius: 1000px !important;
}
.cid-tDPqeOkTju .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPqeOkTju .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPqeOkTju .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDPqeOkTju .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tDPqeOkTju .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-tDPqeOkTju .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPqeOkTju .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPqeOkTju .container,
  .cid-tDPqeOkTju .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPqeOkTju li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPqeOkTju ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tDPqeOkTju .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPqeOkTju a.btn {
    margin-top: 10px;
  }
}
.cid-tDPqeOkTju a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPqeOkTju .nav-item {
  position: relative;
}
.cid-tDPqeOkTju .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPqeOkTju .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-tDPqeOkTju .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-tDPqeOkTju a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-tDPqeOkTju li.nav-item {
  padding: 13px 20px !important;
}
.cid-tDPqeOkTju a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-tDPqDaJDs3 {
  background-image: url("../../../assets/images/16-612x408.jpg");
}
.cid-tDPqDaJDs3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPqDaJDs3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPqDaJDs3 .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-tDPqDaJDs3 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tDPqDaJDs3 .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tDPqDaJDs3 .mbr-section-btn {
  margin-top: 18px;
}
.cid-tDPqDaJDs3 .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tDPqDaJDs3 .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-tDPqDaJDs3 .mbr-text,
.cid-tDPqDaJDs3 .mbr-section-btn {
  text-align: center;
}
.cid-tDPqePunes {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-tDPqePunes .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-tDPqePunes .mbr-section-title {
  color: #012b3a;
  text-align: center;
}
.cid-tDPqePZJiO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #3d626c;
}
.cid-tDPqePZJiO .ico {
  margin: 0 auto;
  text-align: center;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -12%;
  left: -6%;
  z-index: 5;
  filter: url("../../../#goo");
}
.cid-tDPqePZJiO .ico .circle {
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 150px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.cid-tDPqePZJiO .ico .st-arrow {
  fill: #8e443d;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}
.cid-tDPqePZJiO .svg {
  z-index: 9;
  position: relative;
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  20% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.cid-tDPqePZJiO .mbr-iconfont {
  font-size: 4rem;
  transition: all 0.2s;
  color: #e5be8a;
  background: #ffffff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDPqePZJiO .play-button-container {
  position: absolute;
  right: 0;
  top: 65%;
  z-index: 5;
  transform: translate(50%, -50%);
  width: 150px;
  height: 150px;
}
.cid-tDPqePZJiO .mbr-iconfont:before {
  padding-left: 12px;
  color: #8e443d;
}
.cid-tDPqePZJiO .img-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.cid-tDPqePZJiO .container {
  position: relative;
}
.cid-tDPqePZJiO .big-img {
  border-radius: 25px;
  box-shadow: 34px 21px 51px 5px rgba(0, 0, 0, 0.71);
}
.cid-tDPqePZJiO .text-circle {
  height: 210px;
  width: auto;
  position: absolute;
  animation: 15s linear infinite running rotate360;
  top: -30px;
  left: -30px;
  z-index: -1;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1150px) {
  .cid-tDPqePZJiO .img-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 950px) {
  .cid-tDPqePZJiO .play-button-container {
    top: 90% !important;
    right: 40px !important;
  }
  .cid-tDPqePZJiO .mbr-iconfont {
    width: 100px !important;
    height: 100px !important;
  }
  .cid-tDPqePZJiO .text-circle {
    height: 160px;
  }
  .cid-tDPqePZJiO .circle {
    width: 75% !important;
    height: 75% !important;
    top: 40% !important;
    left: 40% !important;
  }
  .cid-tDPqePZJiO .ico {
    width: 23vw;
    height: 23vw;
  }
}
@media (max-width: 561px) {
  .cid-tDPqePZJiO .play-button-container {
    top: 100% !important;
    right: 0 !important;
  }
  .cid-tDPqePZJiO .mbr-iconfont {
    width: 18vw !important;
    height: 18vw !important;
    font-size: 3rem !important;
  }
  .cid-tDPqePZJiO .text-circle {
    height: 24vw;
    top: -3vw !important;
    left: -3vw !important;
  }
}
@media (max-width: 400px) {
  .cid-tDPqePZJiO .mbr-iconfont {
    font-size: 2rem !important;
  }
  .cid-tDPqePZJiO .mbr-iconfont::before {
    padding-left: 7px;
  }
  .cid-tDPqePZJiO .play-button-container {
    width: 90px !important;
    height: 70px !important;
  }
}
.cid-tDPqeQvKTT {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-tDPqeQvKTT .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-tDPqeQvKTT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tDPqeQWW0I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #3d626c;
}
.cid-tDPqeQWW0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPqeQWW0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPqeQWW0I .container-fluid {
  margin: 0;
  padding: 0 72px 0 0;
}
@media (max-width: 992px) {
  .cid-tDPqeQWW0I .container-fluid {
    padding: 0 20px;
  }
}
.cid-tDPqeQWW0I .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tDPqeQWW0I .container {
    padding: 0 20px;
  }
  .cid-tDPqeQWW0I .container .row {
    padding: 0;
  }
}
.cid-tDPqeQWW0I .image-wrapper img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tDPqeQWW0I .image-wrapper img {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tDPqeQWW0I .image-wrapper img {
    height: 300px;
  }
}
.cid-tDPqeQWW0I .title-wrapper {
  padding: 0 90px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tDPqeQWW0I .title-wrapper {
    padding: 0;
  }
}
.cid-tDPqeQWW0I .title-wrapper .title-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.cid-tDPqeQWW0I .title-wrapper .title-wrap .desc-wrapper .desc-wrap .mbr-desc {
  margin-right: 16px;
  margin-bottom: 0;
}
.cid-tDPqeQWW0I .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.cid-tDPqeQWW0I .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap .line-item {
  height: 2px;
  width: 44px;
  background-color: #c6a38f;
  margin-right: 8px;
}
.cid-tDPqeQWW0I .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap .line-item:last-child {
  margin-right: 0;
}
.cid-tDPqeQWW0I .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tDPqeQWW0I .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tDPqeQWW0I .mbr-desc {
  color: #ffffff;
}
.cid-tDPqeQWW0I .mbr-text {
  color: #ffffff;
}
.cid-tDPqeQWW0I .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDPqeQWW0I .mbr-text,
.cid-tDPqeQWW0I .mbr-section-btn {
  text-align: center;
}
.cid-tDPqeRsxgl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-tDPqeRsxgl .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 5.2px;
}
.cid-tDPqeRsxgl .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tDPqeRsxgl .mbr-text,
.cid-tDPqeRsxgl .button-align {
  color: #000000;
  text-align: center;
}
.cid-tDPqeRVhCf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3d626c;
}
.cid-tDPqeRVhCf .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tDPqeRVhCf a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-tDPqeRVhCf a.text-danger:hover {
  color: #EABB80 !important;
}
.cid-tDPrAsra26 .navbar-dropdown {
  position: relative !important;
}
.cid-tDPrAsra26 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPrAsra26 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tDPrAsra26 .dropdown-item:hover,
.cid-tDPrAsra26 .dropdown-item:focus {
  color: #012b3a !important;
}
.cid-tDPrAsra26 .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-tDPrAsra26 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDPrAsra26 .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-tDPrAsra26 .container {
  display: flex;
  margin: auto;
}
.cid-tDPrAsra26 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDPrAsra26 .dropdown-menu,
.cid-tDPrAsra26 .navbar.opened {
  background: #8e443d !important;
}
.cid-tDPrAsra26 .nav-item:focus,
.cid-tDPrAsra26 .nav-link:focus {
  outline: none;
}
.cid-tDPrAsra26 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDPrAsra26 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDPrAsra26 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDPrAsra26 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDPrAsra26 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDPrAsra26 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDPrAsra26 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #8e443d;
}
.cid-tDPrAsra26 .navbar.opened {
  transition: all 0.3s;
}
.cid-tDPrAsra26 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDPrAsra26 .navbar .navbar-logo img {
  width: auto;
}
.cid-tDPrAsra26 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDPrAsra26 .navbar.collapsed {
  justify-content: center;
}
.cid-tDPrAsra26 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDPrAsra26 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDPrAsra26 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-tDPrAsra26 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDPrAsra26 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDPrAsra26 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDPrAsra26 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDPrAsra26 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDPrAsra26 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDPrAsra26 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDPrAsra26 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDPrAsra26 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDPrAsra26 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDPrAsra26 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tDPrAsra26 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDPrAsra26 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDPrAsra26 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDPrAsra26 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDPrAsra26 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDPrAsra26 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDPrAsra26 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDPrAsra26 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDPrAsra26 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDPrAsra26 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDPrAsra26 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDPrAsra26 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDPrAsra26 .dropdown-item.active,
.cid-tDPrAsra26 .dropdown-item:active {
  background-color: transparent;
}
.cid-tDPrAsra26 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDPrAsra26 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDPrAsra26 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDPrAsra26 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #8e443d;
}
.cid-tDPrAsra26 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDPrAsra26 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDPrAsra26 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tDPrAsra26 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDPrAsra26 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDPrAsra26 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #5ec049;
}
.cid-tDPrAsra26 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDPrAsra26 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPrAsra26 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDPrAsra26 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDPrAsra26 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPrAsra26 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDPrAsra26 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDPrAsra26 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDPrAsra26 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDPrAsra26 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDPrAsra26 .navbar {
    height: 70px;
  }
  .cid-tDPrAsra26 .navbar.opened {
    height: auto;
  }
  .cid-tDPrAsra26 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDPrAsra26 a {
  display: inline;
}
.cid-tDPrAsra26 img {
  display: inline;
  padding-right: 10px;
}
.cid-tDPrAsra26 .dropdown-toggle:after {
  display: none;
}
.cid-tDPrAsra26 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tDPrAsra26 .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-tDPrAsra26 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tDPrAsra26 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tDPrAsra26 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tDPrAsra26 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tDPrAsra26 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tDPrAsra26 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tDPrAsra26 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tDPrAsra26 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tDPrAsra26 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tDPrAsra26 .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-tDPrAsra26 .btn {
  border-radius: 1000px !important;
}
.cid-tDPrAsra26 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tDPrAsra26 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tDPrAsra26 .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDPrAsra26 .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-tDPrAsra26 .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-tDPrAsra26 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tDPrAsra26 .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-tDPrAsra26 .container,
  .cid-tDPrAsra26 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tDPrAsra26 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tDPrAsra26 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tDPrAsra26 .icons-menu {
    min-width: initial !important;
  }
  .cid-tDPrAsra26 a.btn {
    margin-top: 10px;
  }
}
.cid-tDPrAsra26 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tDPrAsra26 .nav-item {
  position: relative;
}
.cid-tDPrAsra26 .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-tDPrAsra26 .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-tDPrAsra26 .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-tDPrAsra26 a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-tDPrAsra26 li.nav-item {
  padding: 13px 20px !important;
}
.cid-tDPrAsra26 a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-tDPrAsVMiJ {
  background-image: url("../../../assets/images/21-612x293.jpg");
}
.cid-tDPrAsVMiJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPrAsVMiJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPrAsVMiJ .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-tDPrAsVMiJ .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tDPrAsVMiJ .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tDPrAsVMiJ .mbr-section-btn {
  margin-top: 18px;
}
.cid-tDPrAsVMiJ .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tDPrAsVMiJ .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-tDPrAsVMiJ .mbr-text,
.cid-tDPrAsVMiJ .mbr-section-btn {
  text-align: center;
}
.cid-tDPrAtxuVj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-tDPrAtxuVj .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-tDPrAtxuVj .mbr-section-title {
  color: #012b3a;
  text-align: center;
}
.cid-tDPrAupCEH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #522c67;
}
.cid-tDPrAupCEH .ico {
  margin: 0 auto;
  text-align: center;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -12%;
  left: -6%;
  z-index: 5;
  filter: url("../../../#goo");
}
.cid-tDPrAupCEH .ico .circle {
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  height: 150px;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 0%;
}
.cid-tDPrAupCEH .ico .st-arrow {
  fill: #8e443d;
  animation: scrolly 3s cubic-bezier(0.77, 0, 0.175, 1) forwards infinite;
  perspective: 9000px;
  transform: translateZ(0);
  transform-origin: bottom;
}
.cid-tDPrAupCEH .svg {
  z-index: 9;
  position: relative;
}
@keyframes scrolly {
  0% {
    transform: translate3d(0, -150%, 0) rotateX(90deg) scale(0.5) skewX(3deg);
  }
  20% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  70% {
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1) skewX(0deg);
  }
  100% {
    transform: translate3d(0, 50%, 0) rotateX(-90deg) scale(0.5) skewX(-3deg);
  }
}
.cid-tDPrAupCEH .mbr-iconfont {
  font-size: 4rem;
  transition: all 0.2s;
  color: #e5be8a;
  background: #ffffff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDPrAupCEH .play-button-container {
  position: absolute;
  right: 0;
  top: 65%;
  z-index: 5;
  transform: translate(50%, -50%);
  width: 150px;
  height: 150px;
}
.cid-tDPrAupCEH .mbr-iconfont:before {
  padding-left: 12px;
  color: #8e443d;
}
.cid-tDPrAupCEH .img-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.cid-tDPrAupCEH .container {
  position: relative;
}
.cid-tDPrAupCEH .big-img {
  border-radius: 25px;
  box-shadow: 34px 21px 51px 5px rgba(0, 0, 0, 0.71);
}
.cid-tDPrAupCEH .text-circle {
  height: 210px;
  width: auto;
  position: absolute;
  animation: 15s linear infinite running rotate360;
  top: -30px;
  left: -30px;
  z-index: -1;
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1150px) {
  .cid-tDPrAupCEH .img-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 950px) {
  .cid-tDPrAupCEH .play-button-container {
    top: 90% !important;
    right: 40px !important;
  }
  .cid-tDPrAupCEH .mbr-iconfont {
    width: 100px !important;
    height: 100px !important;
  }
  .cid-tDPrAupCEH .text-circle {
    height: 160px;
  }
  .cid-tDPrAupCEH .circle {
    width: 75% !important;
    height: 75% !important;
    top: 40% !important;
    left: 40% !important;
  }
  .cid-tDPrAupCEH .ico {
    width: 23vw;
    height: 23vw;
  }
}
@media (max-width: 561px) {
  .cid-tDPrAupCEH .play-button-container {
    top: 100% !important;
    right: 0 !important;
  }
  .cid-tDPrAupCEH .mbr-iconfont {
    width: 18vw !important;
    height: 18vw !important;
    font-size: 3rem !important;
  }
  .cid-tDPrAupCEH .text-circle {
    height: 24vw;
    top: -3vw !important;
    left: -3vw !important;
  }
}
@media (max-width: 400px) {
  .cid-tDPrAupCEH .mbr-iconfont {
    font-size: 2rem !important;
  }
  .cid-tDPrAupCEH .mbr-iconfont::before {
    padding-left: 7px;
  }
  .cid-tDPrAupCEH .play-button-container {
    width: 90px !important;
    height: 70px !important;
  }
}
.cid-tDPrAuVDDL {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f2f2f2;
}
.cid-tDPrAuVDDL .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #000000;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-tDPrAuVDDL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tDPrAvnMUX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #522c67;
}
.cid-tDPrAvnMUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPrAvnMUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPrAvnMUX .container-fluid {
  margin: 0;
  padding: 0 72px 0 0;
}
@media (max-width: 992px) {
  .cid-tDPrAvnMUX .container-fluid {
    padding: 0 20px;
  }
}
.cid-tDPrAvnMUX .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tDPrAvnMUX .container {
    padding: 0 20px;
  }
  .cid-tDPrAvnMUX .container .row {
    padding: 0;
  }
}
.cid-tDPrAvnMUX .image-wrapper img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tDPrAvnMUX .image-wrapper img {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-tDPrAvnMUX .image-wrapper img {
    height: 300px;
  }
}
.cid-tDPrAvnMUX .title-wrapper {
  padding: 0 90px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tDPrAvnMUX .title-wrapper {
    padding: 0;
  }
}
.cid-tDPrAvnMUX .title-wrapper .title-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.cid-tDPrAvnMUX .title-wrapper .title-wrap .desc-wrapper .desc-wrap .mbr-desc {
  margin-right: 16px;
  margin-bottom: 0;
}
.cid-tDPrAvnMUX .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.cid-tDPrAvnMUX .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap .line-item {
  height: 2px;
  width: 44px;
  background-color: #c6a38f;
  margin-right: 8px;
}
.cid-tDPrAvnMUX .title-wrapper .title-wrap .desc-wrapper .desc-wrap .lines-wrap .line-item:last-child {
  margin-right: 0;
}
.cid-tDPrAvnMUX .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tDPrAvnMUX .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tDPrAvnMUX .mbr-desc {
  color: #ffffff;
}
.cid-tDPrAvnMUX .mbr-text {
  color: #ffffff;
}
.cid-tDPrAvnMUX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDPrAvnMUX .mbr-text,
.cid-tDPrAvnMUX .mbr-section-btn {
  text-align: center;
}
.cid-tDPrAvYnfm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-tDPrAvYnfm .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: 5.2px;
}
.cid-tDPrAvYnfm .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tDPrAvYnfm .mbr-text,
.cid-tDPrAvYnfm .button-align {
  color: #000000;
  text-align: left;
}
.cid-tDPrAwpDdG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3d626c;
}
.cid-tDPrAwpDdG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tDPrAwpDdG a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-tDPrAwpDdG a.text-danger:hover {
  color: #EABB80 !important;
}
