.btn {
  border-width: 2px;
}
.btn {
  border-radius: 80px;
}
body {
  font-family: 'Poppins', sans-serif;
}
.display-1 {
  font-family: 'COOLVETI';
  font-size: 5.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.5rem;
}
.display-2 {
  font-family: 'COOLVETI';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'COOLVETI';
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4.16rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.64rem;
    font-size: calc( 2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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.5rem 2.5rem;
  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: #14a0a7 !important;
}
.bg-success {
  background-color: #017573 !important;
}
.bg-info {
  background-color: #0d646f !important;
}
.bg-warning {
  background-color: #023b42 !important;
}
.bg-danger {
  background-color: #0dbe64 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #14a0a7 !important;
  border-color: #14a0a7 !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: #0b565a !important;
  border-color: #0b565a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0b565a !important;
  border-color: #0b565a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #008b85 !important;
  border-color: #008b85 !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: #003432 !important;
  border-color: #003432 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #003432 !important;
  border-color: #003432 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0d646f !important;
  border-color: #0d646f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #041e21 !important;
  border-color: #041e21 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #041e21 !important;
  border-color: #041e21 !important;
}
.btn-success,
.btn-success:active {
  background-color: #017573 !important;
  border-color: #017573 !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: #001f1f !important;
  border-color: #001f1f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #001f1f !important;
  border-color: #001f1f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #023b42 !important;
  border-color: #023b42 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0dbe64 !important;
  border-color: #0dbe64 !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: #076d39 !important;
  border-color: #076d39 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #076d39 !important;
  border-color: #076d39 !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: #14a0a7;
  color: #14a0a7;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0b565a !important;
  background-color: transparent!important;
  border-color: #0b565a !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #14a0a7 !important;
  border-color: #14a0a7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #008b85;
  color: #008b85;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #003432 !important;
  background-color: transparent!important;
  border-color: #003432 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #008b85 !important;
  border-color: #008b85 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0d646f;
  color: #0d646f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #041e21 !important;
  background-color: transparent!important;
  border-color: #041e21 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0d646f !important;
  border-color: #0d646f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #017573;
  color: #017573;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #001f1f !important;
  background-color: transparent!important;
  border-color: #001f1f !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #017573 !important;
  border-color: #017573 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #023b42;
  color: #023b42;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #023b42 !important;
  border-color: #023b42 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #0dbe64;
  color: #0dbe64;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #076d39 !important;
  background-color: transparent!important;
  border-color: #076d39 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0dbe64 !important;
  border-color: #0dbe64 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #14a0a7 !important;
}
.text-secondary {
  color: #008b85 !important;
}
.text-success {
  color: #017573 !important;
}
.text-info {
  color: #0d646f !important;
}
.text-warning {
  color: #023b42 !important;
}
.text-danger {
  color: #0dbe64 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0d646f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0d646f !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0d646f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #021214 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #0d646f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #0d646f !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #0d646f !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #0d646f !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.3s;
  /*position: relative;
        background-image: linear-gradient(currentColor 50%, currentColor 50%);
        background-size: 10000px 2px;
        background-repeat: no-repeat;
        background-position: 0 1.2em;*/
  text-decoration: underline;
}
.nav-tabs .nav-link.active {
  color: #14a0a7;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0d646f;
}
.alert-warning {
  background-color: #023b42;
}
.alert-danger {
  background-color: #0dbe64;
}
.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: #14a0a7;
  border-color: #14a0a7;
  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: #50e3ea;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #02f3ef;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #1acbe1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #31e3f9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #57f4a4;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #14a0a7 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #14a0a7;
}
/* 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: #14a0a7;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #14a0a7;
}
.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: #14a0a7;
  border-bottom-color: #14a0a7;
}
.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: #14a0a7 !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: #008b85 !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='%2314a0a7' %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: 1220px;
}
a {
  transition: color 300ms ease !important;
  font-weight: 400 !important;
}
a.text-primary:hover {
  color: #0d646f !important;
}
a.text-secondary:hover {
  color: #0d646f !important;
}
a.text-success:hover {
  color: #0d646f !important;
}
a.text-info:hover {
  color: #0d646f !important;
}
a.text-warning:hover {
  color: #0d646f !important;
}
a.text-danger:hover {
  color: #0d646f !important;
}
a.text-white:hover {
  color: #0d646f !important;
}
a.text-black:hover {
  color: #0d646f !important;
}
.btn.btn-primary:hover {
  background-color: #14142b !important;
  border-color: #14142b !important;
  color: #ffffff !important;
}
.btn.btn-secondary {
  background: transparent !important;
  border: 1px solid #e2e3e9 !important;
  color: #14142b !important;
}
.btn.btn-secondary:hover {
  background: #e2e3e9 !important;
  color: #14142b !important;
}
.btn,
.btn-lg {
  box-shadow: none !important;
}
body {
  line-height: 1.667em;
  line-height: 30px;
}
.btn,
.btn-lg {
  margin-top: 0;
  margin-bottom: 0;
}
span.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
span.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
button {
  background-color: transparent;
  border-color: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.cid-tcf6tlPGC6 {
  z-index: 1000;
  width: 100%;
}
.cid-tcf6tlPGC6 nav.navbar {
  position: fixed;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcf6tlPGC6 .dropdown-item:hover,
.cid-tcf6tlPGC6 .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcf6tlPGC6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcf6tlPGC6 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcf6tlPGC6 .container {
  display: flex;
  margin: auto;
}
.cid-tcf6tlPGC6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcf6tlPGC6 .dropdown-menu,
.cid-tcf6tlPGC6 .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcf6tlPGC6 .nav-item:focus,
.cid-tcf6tlPGC6 .nav-link:focus {
  outline: none;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcf6tlPGC6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcf6tlPGC6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcf6tlPGC6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcf6tlPGC6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcf6tlPGC6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcf6tlPGC6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcf6tlPGC6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcf6tlPGC6 .navbar.collapsed {
  justify-content: center;
}
.cid-tcf6tlPGC6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcf6tlPGC6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcf6tlPGC6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcf6tlPGC6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcf6tlPGC6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcf6tlPGC6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcf6tlPGC6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcf6tlPGC6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcf6tlPGC6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcf6tlPGC6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcf6tlPGC6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcf6tlPGC6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcf6tlPGC6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcf6tlPGC6 .dropdown-item.active,
.cid-tcf6tlPGC6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcf6tlPGC6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcf6tlPGC6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcf6tlPGC6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcf6tlPGC6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcf6tlPGC6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcf6tlPGC6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcf6tlPGC6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcf6tlPGC6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar {
    height: 70px;
  }
  .cid-tcf6tlPGC6 .navbar.opened {
    height: auto;
  }
  .cid-tcf6tlPGC6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcf6tlPGC6 a {
  display: inline;
}
.cid-tcf6tlPGC6 img {
  display: inline;
  padding-right: 10px;
}
.cid-tcf6tlPGC6 .dropdown-toggle:after {
  display: none;
}
.cid-tcf6tlPGC6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcf6tlPGC6 .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcf6tlPGC6 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcf6tlPGC6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcf6tlPGC6 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcf6tlPGC6 .nav-item {
  margin-right: 32px;
}
.cid-tcf6tlPGC6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcf6tlPGC6 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcf6tlPGC6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcf6tlPGC6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcf6tlPGC6 .navbar-nav {
  margin: auto;
}
.cid-tcf6tlPGC6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcf6tlPGC6 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcf6tlPGC6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcf6tlPGC6 .btn {
  border-radius: 1000px !important;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .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-tcf6tlPGC6 .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcf6tlPGC6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcf6tlPGC6 .top {
    margin-top: 25px;
  }
}
.cid-tcf6tlPGC6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcf6tlPGC6 .container,
  .cid-tcf6tlPGC6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcf6tlPGC6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcf6tlPGC6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcf6tlPGC6 .icons-menu {
    min-width: initial !important;
  }
  .cid-tcf6tlPGC6 a.btn {
    margin-top: 10px;
  }
}
.cid-tcf6tlPGC6 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcf3tdYybS {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head23-24homesmall.jpg");
}
.cid-tcf3tdYybS .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcf3tdYybS .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcf3tdYybS .button-align {
  text-align: center;
}
.cid-tcf3tdYybS .mbr-section-btn {
  display: block;
}
.cid-tcf3tdYybS .container {
  max-width: 739px;
}
.cid-tcf3tdYybS .btn {
  margin-top: 20px;
}
.cid-tcf3tdYybS a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcf3tdYybS .mbr-text,
.cid-tcf3tdYybS .button-align {
  text-align: left;
  color: #14a0a7;
}
.cid-tGFZEyXRFF.popup-builder {
  background-color: #ffffff;
}
.cid-tGFZEyXRFF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tGFZEyXRFF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tGFZEyXRFF .modal-content,
.cid-tGFZEyXRFF .modal-dialog {
  height: auto;
}
.cid-tGFZEyXRFF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tGFZEyXRFF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tGFZEyXRFF .form-wrapper .mbr-form .form-group,
  .cid-tGFZEyXRFF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tGFZEyXRFF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tGFZEyXRFF .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGFZEyXRFF .mbr-text {
  text-align: center;
  color: #14a0a7;
}
.cid-tGFZEyXRFF .pt-0 {
  padding-top: 0 !important;
}
.cid-tGFZEyXRFF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tGFZEyXRFF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tGFZEyXRFF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tGFZEyXRFF .modal-open {
  overflow: hidden;
}
.cid-tGFZEyXRFF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tGFZEyXRFF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tGFZEyXRFF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tGFZEyXRFF .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tGFZEyXRFF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tGFZEyXRFF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tGFZEyXRFF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tGFZEyXRFF .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tGFZEyXRFF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tGFZEyXRFF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tGFZEyXRFF .modal-backdrop.fade {
  opacity: 0;
}
.cid-tGFZEyXRFF .modal-backdrop.show {
  opacity: .5;
}
.cid-tGFZEyXRFF .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tGFZEyXRFF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tGFZEyXRFF .modal-header {
    padding: 1rem;
  }
}
.cid-tGFZEyXRFF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tGFZEyXRFF .modal-header .close svg {
  fill: #14a0a7;
}
.cid-tGFZEyXRFF .modal-header .close:hover {
  opacity: 1;
}
.cid-tGFZEyXRFF .modal-header .close:focus {
  outline: none;
}
.cid-tGFZEyXRFF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #14a0a7;
}
.cid-tGFZEyXRFF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tGFZEyXRFF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGFZEyXRFF .modal-body {
    padding: 1rem;
  }
}
.cid-tGFZEyXRFF .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tGFZEyXRFF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGFZEyXRFF .modal-footer {
    padding: 1rem;
  }
}
.cid-tGFZEyXRFF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tGFZEyXRFF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tGFZEyXRFF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tGFZEyXRFF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tGFZEyXRFF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tGFZEyXRFF .modal-lg,
  .cid-tGFZEyXRFF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tGFZEyXRFF .modal-xl {
    max-width: 1140px;
  }
}
.cid-tGFZEyXRFF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tGFZEyXRFF .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tGFZEyXRFF .form-group {
  margin-bottom: 1rem;
}
.cid-tGFZEyXRFF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tGFZEyXRFF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tGFZEyXRFF .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tGFZEyXRFF .mbr-section-btn {
  margin: 0;
}
.cid-tGFZEyXRFF .mbr-section-btn .btn {
  margin: 0;
}
.cid-tRa4dFHYbB {
  background-color: #ffffff;
}
.cid-tRa4dFHYbB .mbr-section-head {
  position: absolute;
  transform: translate(0rem, 10rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-tRa4dFHYbB .mbr-section-head {
    transform: translate(-1rem, 10rem) rotate(-90deg);
  }
}
.cid-tRa4dFHYbB .wrap {
  padding: 0 1rem;
}
.cid-tRa4dFHYbB .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-tRa4dFHYbB img,
.cid-tRa4dFHYbB .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tRa4dFHYbB img,
  .cid-tRa4dFHYbB .item-img {
    height: 420px;
  }
}
.cid-tRa4dFHYbB .col-10,
.cid-tRa4dFHYbB .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-tRa4dFHYbB .col-10 {
  background-color: #ffffff;
}
.cid-tRa4dFHYbB .item:focus,
.cid-tRa4dFHYbB span:focus {
  outline: none;
}
.cid-tRa4dFHYbB .item-wrapper {
  position: relative;
}
.cid-tRa4dFHYbB .embla {
  position: relative;
}
.cid-tRa4dFHYbB .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tRa4dFHYbB .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-tRa4dFHYbB .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-tRa4dFHYbB .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-tRa4dFHYbB .embla__button--next,
.cid-tRa4dFHYbB .embla__button--prev {
  display: flex;
}
.cid-tRa4dFHYbB .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-tRa4dFHYbB .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #006a3a;
  border: 1px solid #006a3a;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tRa4dFHYbB .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tRa4dFHYbB .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRa4dFHYbB .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRa4dFHYbB .embla__button {
    top: auto;
  }
}
.cid-tRa4dFHYbB .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tRa4dFHYbB .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-tRa4dFHYbB .mbr-section-title {
    font-size: 64px;
  }
}
.cid-tRa4dFHYbB .mbr-subtitle {
  color: #14a0a7;
}
.cid-tRa4dFHYbB .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-tRa4dFHYbB .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-tRa4dFHYbB .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-tRa4dFHYbB .mbr-title {
  color: #0dbe64;
}
.cid-tRa4dFHYbB .mbr-text,
.cid-tRa4dFHYbB .link-title {
  color: #006a3a;
}
.cid-tRa4dFHYbB .mbr-section-subtitle {
  color: #14a0a7;
  text-align: right;
}
.cid-tRa4dFHYbB .link-title {
  color: #006a3a;
}
.cid-tGjJyqehRJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tGjJyqehRJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGjJyqehRJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGjJyqehRJ .mbr-section-title {
  margin-bottom: 75px;
  color: #14a0a7;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tGjJyqehRJ .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tGjJyqehRJ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 520px;
  max-width: 520px;
}
@media (max-width: 768px) {
  .cid-tGjJyqehRJ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGjJyqehRJ .embla__slide .card-wrap {
  padding: 0 64px 64px 64px;
  background-color: #ffffff;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .cid-tGjJyqehRJ .embla__slide .card-wrap {
    padding: 0 32px 32px 32px;
  }
}
.cid-tGjJyqehRJ .embla__slide .card-wrap .item-wrapper {
  overflow: visible;
}
.cid-tGjJyqehRJ .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 6px 6px 20px #017573;
}
@media (max-width: 992px) {
  .cid-tGjJyqehRJ .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 250px;
  }
}
.cid-tGjJyqehRJ .embla__slide .card-wrap .content-wrap .mbr-card-title {
  margin: 48px 0 0 0;
}
@media (max-width: 768px) {
  .cid-tGjJyqehRJ .embla__slide .card-wrap .content-wrap .mbr-card-title {
    margin: 32px 0 0 0;
  }
}
.cid-tGjJyqehRJ .embla__slide .card-wrap .content-wrap .mbr-text {
  margin: 32px 0 0 0;
}
@media (max-width: 768px) {
  .cid-tGjJyqehRJ .embla__slide .card-wrap .content-wrap .mbr-text {
    margin: 16px 0 0 0;
  }
}
.cid-tGjJyqehRJ .embla__button--next,
.cid-tGjJyqehRJ .embla__button--prev {
  display: flex;
}
.cid-tGjJyqehRJ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #14a0a7;
  color: #008b85;
  border: 2px solid #008b85;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tGjJyqehRJ .embla__button {
    display: none;
  }
}
.cid-tGjJyqehRJ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGjJyqehRJ .embla__button:hover {
  opacity: .7;
}
.cid-tGjJyqehRJ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGjJyqehRJ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGjJyqehRJ .embla__button {
    top: auto;
  }
}
.cid-tGjJyqehRJ .embla {
  position: relative;
  width: 100%;
}
.cid-tGjJyqehRJ .embla__viewport {
  overflow: hidden;
  width: 100%;
  padding-top: 2rem;
}
.cid-tGjJyqehRJ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGjJyqehRJ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGjJyqehRJ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGjJyqehRJ .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tGjJyqehRJ .mbr-card-title {
  color: #14a0a7;
}
.cid-tGjJyqehRJ .mbr-text {
  color: #6e716f;
}
.cid-tcf4bKez3x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tcf4bKez3x .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcf4bKez3x .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #14a0a7;
}
.cid-tcf4bKez3x .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-tcf4bKez3x .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tcf4bKez3x ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-tcf4bKez3x li::marker {
  color: #fedb01;
  width: 10px;
}
.cid-tcf4bKez3x li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-tcf4bKez3x img {
  width: 90%;
}
.cid-tcf4bKez3x .gray {
  background-color: #0d646f;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-tcf4bKez3x .b {
  max-width: 598px;
}
.cid-tcf4bKez3x .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-tcf4bKez3x .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-tcf4bKez3x .t {
    padding-top: 90px;
  }
  .cid-tcf4bKez3x .b {
    max-width: initial;
  }
  .cid-tcf4bKez3x .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-tcf4bKez3x .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-tcf4bKez3x .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-tcf4bKez3x .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-tcf4bKez3x .btn {
  margin-top: 20px;
}
.cid-tcf4bKez3x .t {
  max-width: 542px;
}
.cid-tcf4bKez3x .mbr-text,
.cid-tcf4bKez3x .button-align,
.cid-tcf4bKez3x .list {
  color: #5f5d68;
}
.cid-tcf9moBOcU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tcf9moBOcU .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcf9moBOcU .mbr-text {
  color: #8c8c95;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tcf9moBOcU .button-align {
  text-align: center;
}
.cid-tcf9moBOcU .margin {
  margin-right: 14px;
}
.cid-tcf9moBOcU .mbr-section-btn {
  display: inline-block;
}
.cid-tcf9moBOcU .container {
  max-width: 493px;
}
.cid-tcf9moBOcU .btn {
  margin-top: 20px;
}
.cid-tcf9moBOcU a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcf9moBOcU .mbr-text,
.cid-tcf9moBOcU .button-align {
  text-align: center;
  color: #5f5d68;
}
.cid-tcf4kcEmKD {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tcf4kcEmKD .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tcf4kcEmKD .wrap-img {
  border-bottom: 1px solid #e2e3e9;
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 192px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tcf4kcEmKD .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tcf4kcEmKD .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tcf4kcEmKD .shadow:hover .mbr-iconfont,
.cid-tcf4kcEmKD .shadow:hover .number,
.cid-tcf4kcEmKD .shadow:hover .card-title {
  color: #0d646f !important;
}
.cid-tcf4kcEmKD .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tcf4kcEmKD .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tcf4kcEmKD .card-title {
  color: #14142b;
  margin-bottom: 6px;
  text-align: center;
  transition: 0.35s;
}
.cid-tcf4kcEmKD .title-block {
  margin-bottom: 56px;
}
.cid-tcf4kcEmKD .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-tcf4kcEmKD H3 {
  color: #14142b;
  text-align: center;
}
.cid-tcf4kcEmKD .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 39px 32px 48px;
}
.cid-tcf4kcEmKD .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-tcf4kcEmKD .link-title {
  display: inline-block;
}
.cid-tcf4kcEmKD .episode {
  color: #ffffff;
}
.cid-tcf4kcEmKD .img-title {
  color: #ffffff;
}
.cid-tcf4kcEmKD .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tcf4kcEmKD .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tcf4kcEmKD .mbr-section-title {
  color: #5f5d68;
}
@media (max-width: 860px) {
  .cid-tcf4kcEmKD .title-block {
    flex-direction: column;
  }
  .cid-tcf4kcEmKD .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
}
.cid-tcf4kcEmKD .item.features-image {
  margin-top: 35px;
}
.cid-tcf4kcEmKD .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tcf4kcEmKD .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-tcf4kcEmKD .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tcf4kcEmKD .item.features-image:nth-child(4) {
    margin-top: 35px;
  }
  .cid-tcf4kcEmKD .item.features-image:nth-child(3) {
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tcf4kcEmKD .item.features-image:nth-child(2) {
    margin-top: 35px;
  }
}
.cid-tcf4kcEmKD .mbr-section-subtitle {
  color: #14a0a7;
}
.cid-tcf4xYwB14 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fcfcfc;
}
.cid-tcf4xYwB14 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tcf4xYwB14 .panel-title {
  display: flex;
  align-items: center;
}
.cid-tcf4xYwB14 .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #0dbe64;
}
.cid-tcf4xYwB14 .panel-body,
.cid-tcf4xYwB14 .card-header {
  padding: 1rem 0;
}
.cid-tcf4xYwB14 .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-tcf4xYwB14 .panel-title-edit {
  color: #14a0a7;
  display: flex;
  align-items: center;
}
.cid-tcf4xYwB14 .panel-text {
  max-width: 466px;
  color: #14142b;
}
.cid-tcf4xYwB14 .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-tcf4xYwB14 .section-head {
  margin-bottom: 56px;
}
.cid-tcf4xYwB14 .card {
  margin-bottom: 32px;
}
.cid-tcf4xYwB14 H3 {
  color: #14a0a7;
}
@media (max-width: 768px) {
  .cid-tcf4xYwB14 .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-tcf4xYwB14 .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tcjnvkax5p {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .content {
    text-align: center;
  }
  .cid-tcjnvkax5p .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcjnvkax5p .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcjnvkax5p .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcjnvkax5p .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcjnvkax5p .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcjnvkax5p .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcjnvkax5p .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcjnvkax5p .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcjnvkax5p .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcjnvkax5p .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcjnvkax5p .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcjnvkax5p .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcjnvkax5p .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcjnvkax5p .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcjnvkax5p H5 {
  color: #0dbe64;
}
.cid-tcf6tlPGC6 {
  z-index: 1000;
  width: 100%;
}
.cid-tcf6tlPGC6 nav.navbar {
  position: fixed;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcf6tlPGC6 .dropdown-item:hover,
.cid-tcf6tlPGC6 .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcf6tlPGC6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcf6tlPGC6 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcf6tlPGC6 .container {
  display: flex;
  margin: auto;
}
.cid-tcf6tlPGC6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcf6tlPGC6 .dropdown-menu,
.cid-tcf6tlPGC6 .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcf6tlPGC6 .nav-item:focus,
.cid-tcf6tlPGC6 .nav-link:focus {
  outline: none;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcf6tlPGC6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcf6tlPGC6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcf6tlPGC6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcf6tlPGC6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcf6tlPGC6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcf6tlPGC6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcf6tlPGC6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcf6tlPGC6 .navbar.collapsed {
  justify-content: center;
}
.cid-tcf6tlPGC6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcf6tlPGC6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcf6tlPGC6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcf6tlPGC6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcf6tlPGC6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcf6tlPGC6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcf6tlPGC6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcf6tlPGC6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcf6tlPGC6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcf6tlPGC6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcf6tlPGC6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcf6tlPGC6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcf6tlPGC6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcf6tlPGC6 .dropdown-item.active,
.cid-tcf6tlPGC6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcf6tlPGC6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcf6tlPGC6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcf6tlPGC6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcf6tlPGC6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcf6tlPGC6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcf6tlPGC6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcf6tlPGC6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcf6tlPGC6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar {
    height: 70px;
  }
  .cid-tcf6tlPGC6 .navbar.opened {
    height: auto;
  }
  .cid-tcf6tlPGC6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcf6tlPGC6 a {
  display: inline;
}
.cid-tcf6tlPGC6 img {
  display: inline;
  padding-right: 10px;
}
.cid-tcf6tlPGC6 .dropdown-toggle:after {
  display: none;
}
.cid-tcf6tlPGC6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcf6tlPGC6 .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcf6tlPGC6 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcf6tlPGC6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcf6tlPGC6 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcf6tlPGC6 .nav-item {
  margin-right: 32px;
}
.cid-tcf6tlPGC6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcf6tlPGC6 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcf6tlPGC6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcf6tlPGC6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcf6tlPGC6 .navbar-nav {
  margin: auto;
}
.cid-tcf6tlPGC6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcf6tlPGC6 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcf6tlPGC6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcf6tlPGC6 .btn {
  border-radius: 1000px !important;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .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-tcf6tlPGC6 .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcf6tlPGC6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcf6tlPGC6 .top {
    margin-top: 25px;
  }
}
.cid-tcf6tlPGC6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcf6tlPGC6 .container,
  .cid-tcf6tlPGC6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcf6tlPGC6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcf6tlPGC6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcf6tlPGC6 .icons-menu {
    min-width: initial !important;
  }
  .cid-tcf6tlPGC6 a.btn {
    margin-top: 10px;
  }
}
.cid-tcf6tlPGC6 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBrNGZ1v7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-p-internaz.jpg");
}
.cid-tcBrNGZ1v7 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBrNGZ1v7 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcBrNGZ1v7 .button-align {
  text-align: center;
}
.cid-tcBrNGZ1v7 .mbr-section-btn {
  display: block;
}
.cid-tcBrNGZ1v7 .container {
  max-width: 739px;
}
.cid-tcBrNGZ1v7 .btn {
  margin-top: 20px;
}
.cid-tcBrNGZ1v7 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBrNGZ1v7 .mbr-text,
.cid-tcBrNGZ1v7 .button-align {
  text-align: left;
  color: #14a0a7;
}
.cid-tcBtEVonhF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tcBtEVonhF .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcBtEVonhF .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #14a0a7;
}
.cid-tcBtEVonhF .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-tcBtEVonhF .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-tcBtEVonhF ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-tcBtEVonhF li::marker {
  color: #14a0a7;
  width: 10px;
}
.cid-tcBtEVonhF li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-tcBtEVonhF img {
  width: 90%;
}
.cid-tcBtEVonhF .gray {
  background-color: #0d646f;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-tcBtEVonhF .b {
  max-width: 598px;
}
.cid-tcBtEVonhF .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-tcBtEVonhF .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-tcBtEVonhF .t {
    padding-top: 90px;
  }
  .cid-tcBtEVonhF .b {
    max-width: initial;
  }
  .cid-tcBtEVonhF .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-tcBtEVonhF .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-tcBtEVonhF .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-tcBtEVonhF .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-tcBtEVonhF .btn {
  margin-top: 20px;
}
.cid-tcBtEVonhF .t {
  max-width: 542px;
}
.cid-tcBtEVonhF .mbr-text,
.cid-tcBtEVonhF .button-align,
.cid-tcBtEVonhF .list {
  color: #0d646f;
}
.cid-tcBxgnjxUV {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tcBxgnjxUV .mbr-section-subtitle {
  text-align: center;
  color: #14a0a7;
}
.cid-tcBxgnjxUV .title-block {
  justify-content: space-between;
  margin: auto;
  margin-bottom: 58px;
  align-items: center;
  max-width: 571px;
}
.cid-tcBxgnjxUV .card-title {
  color: #4c4c4c;
  text-align: left;
  margin-bottom: 16px;
}
.cid-tcBxgnjxUV H3 {
  color: #1d1d1f;
}
.cid-tcBxgnjxUV .card-subtitle {
  text-align: left;
}
.cid-tcBxgnjxUV .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tcBxgnjxUV .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tcBxgnjxUV .card-title,
.cid-tcBxgnjxUV .iconfont-wrapper {
  text-align: center;
  color: #14142b;
}
.cid-tcBxgnjxUV .mbr-section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tcBxgnjxUV .card-text {
  color: #8c8c95;
}
.cid-tcBxgnjxUV .year-title {
  text-align: center;
  color: #ef7208;
  margin-bottom: 20px;
  position: relative;
}
.cid-tcBxgnjxUV .year-subtitle {
  text-align: center;
  color: #5f5d68;
}
.cid-tcBxgnjxUV .line {
  width: 20px;
  background-color: #e2e3e9;
  height: 2px;
  margin-top: -20px;
}
.cid-tcBxgnjxUV .accent {
  width: 25px;
  min-height: 25px;
  min-width: 25px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  border-radius: 1000px;
}
.cid-tcBxgnjxUV .accent1 {
  background-color: #b77cd8;
}
.cid-tcBxgnjxUV .accent2 {
  background-color: #925bb0;
}
.cid-tcBxgnjxUV .accent3 {
  background-color: #6c38ff;
}
.cid-tcBxgnjxUV .accent4 {
  background-color: #ff9417;
}
.cid-tcBxgnjxUV .accent5 {
  background-color: #4cc9f0;
}
.cid-tcBxgnjxUV .timeline {
  align-items: center;
}
.cid-tcBxgnjxUV .year-title:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: none;
  margin: 11px 40px 0px 0px;
  border-style: solid;
  border-width: 5px;
  border-color: #fff;
  position: absolute;
  left: -40px;
  top: 15px;
}
.cid-tcBxgnjxUV .year-title.year1:before {
  background-color: #b77cd8;
}
.cid-tcBxgnjxUV .year-title.year2:before {
  background-color: #925bb0;
}
.cid-tcBxgnjxUV .year-title.year3:before {
  background-color: #6c38ff;
}
.cid-tcBxgnjxUV .year-title.year4:before {
  background-color: #ff9417;
}
.cid-tcBxgnjxUV .year-title.year5:before {
  background-color: #4cc9f0;
}
.cid-tcBxgnjxUV .timeline-year-accent {
  width: 25px;
  min-height: 25px;
}
@media (max-width: 1120px) {
  .cid-tcBxgnjxUV .main {
    display: flex;
    justify-content: space-between;
    max-width: 849px;
  }
  .cid-tcBxgnjxUV .timeline.row {
    flex-direction: column;
    position: relative;
    max-width: 307px;
  }
  .cid-tcBxgnjxUV .year {
    flex-direction: row;
  }
  .cid-tcBxgnjxUV .year-title {
    text-align: left;
    margin-bottom: 4px;
  }
  .cid-tcBxgnjxUV .year-title:before {
    display: block;
  }
  .cid-tcBxgnjxUV .accent {
    display: none;
  }
  .cid-tcBxgnjxUV .row.title-block {
    margin: initial;
    max-width: 407px;
    align-items: flex-start;
  }
  .cid-tcBxgnjxUV .line {
    display: none;
  }
  .cid-tcBxgnjxUV .line1 {
    display: block;
    height: 100%;
    width: 2px;
    background-color: #e2e3e9;
    margin-top: -20px;
    margin-left: -15px;
    padding: 0 !important;
    position: absolute;
    left: 0;
  }
  .cid-tcBxgnjxUV .year-subtitle {
    margin-bottom: 60px;
    text-align: left;
  }
  .cid-tcBxgnjxUV .row.title-block > .col-12 {
    padding: 0 !important;
  }
}
.cid-tcBxgnjxUV .no-padd {
  margin-bottom: 0px !important;
}
@media (max-width: 750px) {
  .cid-tcBxgnjxUV .main {
    flex-direction: column;
  }
  .cid-tcBxgnjxUV .row.title-block,
  .cid-tcBxgnjxUV .timeline {
    margin: auto;
  }
  .cid-tcBxgnjxUV .row.title-block {
    padding-bottom: 40px;
    width: 90%;
  }
  .cid-tcBxgnjxUV .button-align {
    margin-top: 16px;
  }
}
.cid-tcBxgnjxUV .btn {
  margin-top: 20px;
}
.cid-tcBxgnjxUV a.btn > span {
  margin-left: 0.5rem;
}
.cid-ti9Kn5QvCU.popup-builder {
  background-color: #ffffff;
}
.cid-ti9Kn5QvCU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ti9Kn5QvCU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  height: 100%;
}
.cid-ti9Kn5QvCU .modal-content,
.cid-ti9Kn5QvCU .modal-dialog {
  height: auto;
}
.cid-ti9Kn5QvCU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ti9Kn5QvCU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ti9Kn5QvCU .form-wrapper .mbr-form .form-group,
  .cid-ti9Kn5QvCU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ti9Kn5QvCU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ti9Kn5QvCU .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ti9Kn5QvCU .mbr-text {
  text-align: left;
  color: #fcfcfc;
}
.cid-ti9Kn5QvCU .pt-0 {
  padding-top: 0 !important;
}
.cid-ti9Kn5QvCU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ti9Kn5QvCU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ti9Kn5QvCU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ti9Kn5QvCU .modal-open {
  overflow: hidden;
}
.cid-ti9Kn5QvCU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ti9Kn5QvCU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ti9Kn5QvCU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
.cid-ti9Kn5QvCU .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ti9Kn5QvCU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ti9Kn5QvCU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ti9Kn5QvCU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ti9Kn5QvCU .modal-content {
  background: #14a0a7;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  height: 100%;
  overflow: auto;
}
.cid-ti9Kn5QvCU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ti9Kn5QvCU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ti9Kn5QvCU .modal-backdrop.fade {
  opacity: 0;
}
.cid-ti9Kn5QvCU .modal-backdrop.show {
  opacity: .5;
}
.cid-ti9Kn5QvCU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ti9Kn5QvCU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ti9Kn5QvCU .modal-header {
    padding: 1rem;
  }
}
.cid-ti9Kn5QvCU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ti9Kn5QvCU .modal-header .close svg {
  fill: #fcfcfc;
}
.cid-ti9Kn5QvCU .modal-header .close:hover {
  opacity: 1;
}
.cid-ti9Kn5QvCU .modal-header .close:focus {
  outline: none;
}
.cid-ti9Kn5QvCU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #fcfcfc;
}
.cid-ti9Kn5QvCU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ti9Kn5QvCU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ti9Kn5QvCU .modal-body {
    padding: 1rem;
  }
}
.cid-ti9Kn5QvCU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ti9Kn5QvCU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ti9Kn5QvCU .modal-footer {
    padding: 1rem;
  }
}
.cid-ti9Kn5QvCU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ti9Kn5QvCU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ti9Kn5QvCU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ti9Kn5QvCU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ti9Kn5QvCU .modal-lg,
  .cid-ti9Kn5QvCU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ti9Kn5QvCU .modal-xl {
    max-width: 1140px;
  }
}
.cid-ti9Kn5QvCU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ti9Kn5QvCU .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ti9Kn5QvCU .form-group {
  margin-bottom: 1rem;
}
.cid-ti9Kn5QvCU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ti9Kn5QvCU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ti9Kn5QvCU .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ti9Kn5QvCU .mbr-section-btn {
  margin: 0;
}
.cid-ti9Kn5QvCU .mbr-section-btn .btn {
  margin: 0;
}
.cid-tcjnvkax5p {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .content {
    text-align: center;
  }
  .cid-tcjnvkax5p .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcjnvkax5p .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcjnvkax5p .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcjnvkax5p .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcjnvkax5p .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcjnvkax5p .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcjnvkax5p .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcjnvkax5p .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcjnvkax5p .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcjnvkax5p .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcjnvkax5p .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcjnvkax5p .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcjnvkax5p .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcjnvkax5p .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcjnvkax5p H5 {
  color: #0dbe64;
}
.cid-tcBCoSpsUu {
  z-index: 1000;
  width: 100%;
}
.cid-tcBCoSpsUu nav.navbar {
  position: fixed;
}
.cid-tcBCoSpsUu .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-tcBCoSpsUu .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcBCoSpsUu .dropdown-item:hover,
.cid-tcBCoSpsUu .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcBCoSpsUu .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcBCoSpsUu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBCoSpsUu .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcBCoSpsUu .container {
  display: flex;
  margin: auto;
}
.cid-tcBCoSpsUu .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcBCoSpsUu .dropdown-menu,
.cid-tcBCoSpsUu .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcBCoSpsUu .nav-item:focus,
.cid-tcBCoSpsUu .nav-link:focus {
  outline: none;
}
.cid-tcBCoSpsUu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBCoSpsUu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBCoSpsUu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcBCoSpsUu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBCoSpsUu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBCoSpsUu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBCoSpsUu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcBCoSpsUu .navbar.opened {
  transition: all 0.3s;
}
.cid-tcBCoSpsUu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcBCoSpsUu .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBCoSpsUu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBCoSpsUu .navbar.collapsed {
  justify-content: center;
}
.cid-tcBCoSpsUu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBCoSpsUu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBCoSpsUu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcBCoSpsUu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBCoSpsUu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBCoSpsUu .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-tcBCoSpsUu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBCoSpsUu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcBCoSpsUu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcBCoSpsUu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBCoSpsUu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBCoSpsUu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBCoSpsUu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBCoSpsUu .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-tcBCoSpsUu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcBCoSpsUu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBCoSpsUu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBCoSpsUu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBCoSpsUu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBCoSpsUu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcBCoSpsUu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBCoSpsUu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcBCoSpsUu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcBCoSpsUu .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-tcBCoSpsUu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBCoSpsUu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBCoSpsUu .dropdown-item.active,
.cid-tcBCoSpsUu .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBCoSpsUu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBCoSpsUu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBCoSpsUu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBCoSpsUu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcBCoSpsUu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBCoSpsUu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBCoSpsUu ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcBCoSpsUu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBCoSpsUu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcBCoSpsUu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcBCoSpsUu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcBCoSpsUu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBCoSpsUu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBCoSpsUu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcBCoSpsUu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBCoSpsUu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcBCoSpsUu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcBCoSpsUu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBCoSpsUu .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcBCoSpsUu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBCoSpsUu .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-tcBCoSpsUu .navbar {
    height: 70px;
  }
  .cid-tcBCoSpsUu .navbar.opened {
    height: auto;
  }
  .cid-tcBCoSpsUu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBCoSpsUu a {
  display: inline;
}
.cid-tcBCoSpsUu img {
  display: inline;
  padding-right: 10px;
}
.cid-tcBCoSpsUu .dropdown-toggle:after {
  display: none;
}
.cid-tcBCoSpsUu .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcBCoSpsUu .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcBCoSpsUu .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcBCoSpsUu .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcBCoSpsUu .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcBCoSpsUu .nav-item {
  margin-right: 32px;
}
.cid-tcBCoSpsUu .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcBCoSpsUu ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcBCoSpsUu .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcBCoSpsUu .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcBCoSpsUu .navbar-nav {
  margin: auto;
}
.cid-tcBCoSpsUu .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcBCoSpsUu .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcBCoSpsUu .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcBCoSpsUu .btn {
  border-radius: 1000px !important;
}
.cid-tcBCoSpsUu .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcBCoSpsUu .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcBCoSpsUu .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-tcBCoSpsUu .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-tcBCoSpsUu .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcBCoSpsUu .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcBCoSpsUu .top {
    margin-top: 25px;
  }
}
.cid-tcBCoSpsUu .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcBCoSpsUu .container,
  .cid-tcBCoSpsUu .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcBCoSpsUu li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcBCoSpsUu ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcBCoSpsUu .icons-menu {
    min-width: initial !important;
  }
  .cid-tcBCoSpsUu a.btn {
    margin-top: 10px;
  }
}
.cid-tcBCoSpsUu a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBCoSVcFh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-primadellaprima.jpg");
}
.cid-tcBCoSVcFh .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBCoSVcFh .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcBCoSVcFh .button-align {
  text-align: center;
}
.cid-tcBCoSVcFh .mbr-section-btn {
  display: block;
}
.cid-tcBCoSVcFh .container {
  max-width: 739px;
}
.cid-tcBCoSVcFh .btn {
  margin-top: 20px;
}
.cid-tcBCoSVcFh a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBCoSVcFh .mbr-text,
.cid-tcBCoSVcFh .button-align {
  text-align: left;
  color: #14a0a7;
}
.cid-tcBEG6lT1P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tcBEG6lT1P .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcBEG6lT1P .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBEG6lT1P .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tcBEG6lT1P .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tcBEG6lT1P .right-side {
  max-width: 554px;
}
.cid-tcBEG6lT1P .rs {
  margin-right: 60px;
}
.cid-tcBEG6lT1P .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tcBEG6lT1P .margin {
  margin-right: 14px;
}
.cid-tcBEG6lT1P .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tcBEG6lT1P img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tcBEG6lT1P .gray {
    padding: 0px 0 5px;
  }
  .cid-tcBEG6lT1P img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tcBEG6lT1P .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tcBEG6lT1P .b {
    margin-bottom: 10px;
  }
}
.cid-tcBEG6lT1P .btn {
  margin-top: 20px;
}
.cid-tcBEG6lT1P a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBEG6lT1P .mbr-text,
.cid-tcBEG6lT1P .button-align {
  color: #0d646f;
}
.cid-tcBFp4NrmU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcBFp4NrmU img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tcBFp4NrmU .title {
  color: #14142b;
  width: auto;
}
.cid-tcBFp4NrmU .row.justify-content-between {
  align-items: center;
}
.cid-tcBFp4NrmU .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tcBFp4NrmU .row.margin:hover {
  transform: scale(1.05);
}
.cid-tcBFp4NrmU .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tcBFp4NrmU .left {
  max-width: 549px;
}
.cid-tcBFp4NrmU .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tcBFp4NrmU .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tcBFp4NrmU .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tcBFp4NrmU .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tcBFp4NrmU .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tcBFp4NrmU .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tcBFp4NrmU .socicon-bg-mail {
  background-color: #134785;
}
.cid-tcBFp4NrmU .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tcBFp4NrmU .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tcBFp4NrmU .btn-social:hover {
  color: #fff;
}
.cid-tcBFp4NrmU .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tcBFp4NrmU .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tcBFp4NrmU .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tcBFp4NrmU .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tcBFp4NrmU .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tcBFp4NrmU .mbr-section-title,
  .cid-tcBFp4NrmU .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tcBFp4NrmU .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tcBFp4NrmU .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tcBFp4NrmU .mbr-iconfont {
  margin-left: 0;
}
.cid-tcBCoTRciX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcBCoTRciX .content {
    text-align: center;
  }
  .cid-tcBCoTRciX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcBCoTRciX .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcBCoTRciX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcBCoTRciX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcBCoTRciX .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcBCoTRciX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcBCoTRciX .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcBCoTRciX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcBCoTRciX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcBCoTRciX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcBCoTRciX .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcBCoTRciX .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcBCoTRciX .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcBCoTRciX .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcBCoTRciX .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcBCoTRciX .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcBCoTRciX H5 {
  color: #0dbe64;
}
.cid-tcBH4WTMMV {
  z-index: 1000;
  width: 100%;
}
.cid-tcBH4WTMMV nav.navbar {
  position: fixed;
}
.cid-tcBH4WTMMV .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-tcBH4WTMMV .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcBH4WTMMV .dropdown-item:hover,
.cid-tcBH4WTMMV .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcBH4WTMMV .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcBH4WTMMV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBH4WTMMV .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcBH4WTMMV .container {
  display: flex;
  margin: auto;
}
.cid-tcBH4WTMMV .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcBH4WTMMV .dropdown-menu,
.cid-tcBH4WTMMV .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcBH4WTMMV .nav-item:focus,
.cid-tcBH4WTMMV .nav-link:focus {
  outline: none;
}
.cid-tcBH4WTMMV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBH4WTMMV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBH4WTMMV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcBH4WTMMV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBH4WTMMV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBH4WTMMV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBH4WTMMV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcBH4WTMMV .navbar.opened {
  transition: all 0.3s;
}
.cid-tcBH4WTMMV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcBH4WTMMV .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBH4WTMMV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBH4WTMMV .navbar.collapsed {
  justify-content: center;
}
.cid-tcBH4WTMMV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBH4WTMMV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBH4WTMMV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcBH4WTMMV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBH4WTMMV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBH4WTMMV .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-tcBH4WTMMV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBH4WTMMV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcBH4WTMMV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcBH4WTMMV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBH4WTMMV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBH4WTMMV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBH4WTMMV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBH4WTMMV .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-tcBH4WTMMV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcBH4WTMMV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBH4WTMMV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBH4WTMMV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBH4WTMMV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBH4WTMMV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcBH4WTMMV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBH4WTMMV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcBH4WTMMV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcBH4WTMMV .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-tcBH4WTMMV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBH4WTMMV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBH4WTMMV .dropdown-item.active,
.cid-tcBH4WTMMV .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBH4WTMMV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBH4WTMMV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBH4WTMMV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBH4WTMMV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcBH4WTMMV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBH4WTMMV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBH4WTMMV ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcBH4WTMMV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBH4WTMMV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcBH4WTMMV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcBH4WTMMV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcBH4WTMMV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBH4WTMMV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBH4WTMMV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcBH4WTMMV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBH4WTMMV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcBH4WTMMV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcBH4WTMMV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBH4WTMMV .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcBH4WTMMV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBH4WTMMV .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-tcBH4WTMMV .navbar {
    height: 70px;
  }
  .cid-tcBH4WTMMV .navbar.opened {
    height: auto;
  }
  .cid-tcBH4WTMMV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBH4WTMMV a {
  display: inline;
}
.cid-tcBH4WTMMV img {
  display: inline;
  padding-right: 10px;
}
.cid-tcBH4WTMMV .dropdown-toggle:after {
  display: none;
}
.cid-tcBH4WTMMV .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcBH4WTMMV .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcBH4WTMMV .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcBH4WTMMV .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcBH4WTMMV .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcBH4WTMMV .nav-item {
  margin-right: 32px;
}
.cid-tcBH4WTMMV .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcBH4WTMMV ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcBH4WTMMV .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcBH4WTMMV .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcBH4WTMMV .navbar-nav {
  margin: auto;
}
.cid-tcBH4WTMMV .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcBH4WTMMV .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcBH4WTMMV .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcBH4WTMMV .btn {
  border-radius: 1000px !important;
}
.cid-tcBH4WTMMV .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcBH4WTMMV .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcBH4WTMMV .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-tcBH4WTMMV .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-tcBH4WTMMV .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcBH4WTMMV .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcBH4WTMMV .top {
    margin-top: 25px;
  }
}
.cid-tcBH4WTMMV .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcBH4WTMMV .container,
  .cid-tcBH4WTMMV .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcBH4WTMMV li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcBH4WTMMV ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcBH4WTMMV .icons-menu {
    min-width: initial !important;
  }
  .cid-tcBH4WTMMV a.btn {
    margin-top: 10px;
  }
}
.cid-tcBH4WTMMV a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBH4XqP0t {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-dono-1.jpeg");
}
.cid-tcBH4XqP0t .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBH4XqP0t .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcBH4XqP0t .button-align {
  text-align: center;
}
.cid-tcBH4XqP0t .mbr-section-btn {
  display: block;
}
.cid-tcBH4XqP0t .container {
  max-width: 739px;
}
.cid-tcBH4XqP0t .btn {
  margin-top: 20px;
}
.cid-tcBH4XqP0t a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBH4XqP0t .mbr-text,
.cid-tcBH4XqP0t .button-align {
  text-align: left;
}
.cid-tcBH4XJ1bP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tcBH4XJ1bP .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcBH4XJ1bP .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBH4XJ1bP .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tcBH4XJ1bP .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tcBH4XJ1bP .right-side {
  max-width: 554px;
}
.cid-tcBH4XJ1bP .rs {
  margin-right: 60px;
}
.cid-tcBH4XJ1bP .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tcBH4XJ1bP .margin {
  margin-right: 14px;
}
.cid-tcBH4XJ1bP .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tcBH4XJ1bP img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tcBH4XJ1bP .gray {
    padding: 0px 0 5px;
  }
  .cid-tcBH4XJ1bP img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tcBH4XJ1bP .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tcBH4XJ1bP .b {
    margin-bottom: 10px;
  }
}
.cid-tcBH4XJ1bP .btn {
  margin-top: 20px;
}
.cid-tcBH4XJ1bP a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBH4XJ1bP .mbr-text,
.cid-tcBH4XJ1bP .button-align {
  color: #0d646f;
}
.cid-tcBH4Y4Aq9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcBH4Y4Aq9 img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tcBH4Y4Aq9 .title {
  color: #14142b;
  width: auto;
}
.cid-tcBH4Y4Aq9 .row.justify-content-between {
  align-items: center;
}
.cid-tcBH4Y4Aq9 .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tcBH4Y4Aq9 .row.margin:hover {
  transform: scale(1.05);
}
.cid-tcBH4Y4Aq9 .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tcBH4Y4Aq9 .left {
  max-width: 549px;
}
.cid-tcBH4Y4Aq9 .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tcBH4Y4Aq9 .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tcBH4Y4Aq9 .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tcBH4Y4Aq9 .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tcBH4Y4Aq9 .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tcBH4Y4Aq9 .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tcBH4Y4Aq9 .socicon-bg-mail {
  background-color: #134785;
}
.cid-tcBH4Y4Aq9 .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tcBH4Y4Aq9 .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tcBH4Y4Aq9 .btn-social:hover {
  color: #fff;
}
.cid-tcBH4Y4Aq9 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tcBH4Y4Aq9 .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tcBH4Y4Aq9 .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tcBH4Y4Aq9 .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tcBH4Y4Aq9 .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tcBH4Y4Aq9 .mbr-section-title,
  .cid-tcBH4Y4Aq9 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tcBH4Y4Aq9 .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tcBH4Y4Aq9 .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tcBH4Y4Aq9 .mbr-iconfont {
  margin-left: 0;
}
.cid-tcBH4YqXCu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcBH4YqXCu .content {
    text-align: center;
  }
  .cid-tcBH4YqXCu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcBH4YqXCu .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcBH4YqXCu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcBH4YqXCu .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcBH4YqXCu .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcBH4YqXCu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcBH4YqXCu .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcBH4YqXCu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcBH4YqXCu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcBH4YqXCu .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcBH4YqXCu .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcBH4YqXCu .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcBH4YqXCu .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcBH4YqXCu .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcBH4YqXCu .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcBH4YqXCu .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcBH4YqXCu H5 {
  color: #0dbe64;
}
.cid-tcBHRdCW4o {
  z-index: 1000;
  width: 100%;
}
.cid-tcBHRdCW4o nav.navbar {
  position: fixed;
}
.cid-tcBHRdCW4o .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-tcBHRdCW4o .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcBHRdCW4o .dropdown-item:hover,
.cid-tcBHRdCW4o .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcBHRdCW4o .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcBHRdCW4o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBHRdCW4o .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcBHRdCW4o .container {
  display: flex;
  margin: auto;
}
.cid-tcBHRdCW4o .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcBHRdCW4o .dropdown-menu,
.cid-tcBHRdCW4o .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcBHRdCW4o .nav-item:focus,
.cid-tcBHRdCW4o .nav-link:focus {
  outline: none;
}
.cid-tcBHRdCW4o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBHRdCW4o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBHRdCW4o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcBHRdCW4o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBHRdCW4o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBHRdCW4o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBHRdCW4o .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcBHRdCW4o .navbar.opened {
  transition: all 0.3s;
}
.cid-tcBHRdCW4o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcBHRdCW4o .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBHRdCW4o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBHRdCW4o .navbar.collapsed {
  justify-content: center;
}
.cid-tcBHRdCW4o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBHRdCW4o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBHRdCW4o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcBHRdCW4o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBHRdCW4o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBHRdCW4o .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-tcBHRdCW4o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBHRdCW4o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcBHRdCW4o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcBHRdCW4o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBHRdCW4o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBHRdCW4o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBHRdCW4o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBHRdCW4o .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-tcBHRdCW4o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcBHRdCW4o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBHRdCW4o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBHRdCW4o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBHRdCW4o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBHRdCW4o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcBHRdCW4o .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBHRdCW4o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcBHRdCW4o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcBHRdCW4o .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-tcBHRdCW4o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBHRdCW4o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBHRdCW4o .dropdown-item.active,
.cid-tcBHRdCW4o .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBHRdCW4o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBHRdCW4o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBHRdCW4o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBHRdCW4o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcBHRdCW4o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBHRdCW4o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBHRdCW4o ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcBHRdCW4o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBHRdCW4o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcBHRdCW4o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcBHRdCW4o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcBHRdCW4o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBHRdCW4o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBHRdCW4o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcBHRdCW4o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBHRdCW4o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcBHRdCW4o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcBHRdCW4o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBHRdCW4o .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcBHRdCW4o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBHRdCW4o .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-tcBHRdCW4o .navbar {
    height: 70px;
  }
  .cid-tcBHRdCW4o .navbar.opened {
    height: auto;
  }
  .cid-tcBHRdCW4o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBHRdCW4o a {
  display: inline;
}
.cid-tcBHRdCW4o img {
  display: inline;
  padding-right: 10px;
}
.cid-tcBHRdCW4o .dropdown-toggle:after {
  display: none;
}
.cid-tcBHRdCW4o .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcBHRdCW4o .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcBHRdCW4o .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcBHRdCW4o .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcBHRdCW4o .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcBHRdCW4o .nav-item {
  margin-right: 32px;
}
.cid-tcBHRdCW4o .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcBHRdCW4o ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcBHRdCW4o .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcBHRdCW4o .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcBHRdCW4o .navbar-nav {
  margin: auto;
}
.cid-tcBHRdCW4o .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcBHRdCW4o .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcBHRdCW4o .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcBHRdCW4o .btn {
  border-radius: 1000px !important;
}
.cid-tcBHRdCW4o .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcBHRdCW4o .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcBHRdCW4o .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-tcBHRdCW4o .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-tcBHRdCW4o .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcBHRdCW4o .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcBHRdCW4o .top {
    margin-top: 25px;
  }
}
.cid-tcBHRdCW4o .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcBHRdCW4o .container,
  .cid-tcBHRdCW4o .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcBHRdCW4o li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcBHRdCW4o ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcBHRdCW4o .icons-menu {
    min-width: initial !important;
  }
  .cid-tcBHRdCW4o a.btn {
    margin-top: 10px;
  }
}
.cid-tcBHRdCW4o a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBHRec68E {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-armonie-1.jpg");
}
.cid-tcBHRec68E .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBHRec68E .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcBHRec68E .button-align {
  text-align: center;
}
.cid-tcBHRec68E .mbr-section-btn {
  display: block;
}
.cid-tcBHRec68E .container {
  max-width: 739px;
}
.cid-tcBHRec68E .btn {
  margin-top: 20px;
}
.cid-tcBHRec68E a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBHRec68E .mbr-text,
.cid-tcBHRec68E .button-align {
  text-align: left;
  color: #ffe3e1;
}
.cid-tcBHRew7QY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tcBHRew7QY .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcBHRew7QY .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBHRew7QY .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tcBHRew7QY .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tcBHRew7QY .right-side {
  max-width: 554px;
}
.cid-tcBHRew7QY .rs {
  margin-right: 60px;
}
.cid-tcBHRew7QY .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tcBHRew7QY .margin {
  margin-right: 14px;
}
.cid-tcBHRew7QY .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tcBHRew7QY img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tcBHRew7QY .gray {
    padding: 0px 0 5px;
  }
  .cid-tcBHRew7QY img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tcBHRew7QY .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tcBHRew7QY .b {
    margin-bottom: 10px;
  }
}
.cid-tcBHRew7QY .btn {
  margin-top: 20px;
}
.cid-tcBHRew7QY a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBHRew7QY .mbr-text,
.cid-tcBHRew7QY .button-align {
  color: #0d646f;
}
.cid-tcBHReRCN5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcBHReRCN5 img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tcBHReRCN5 .title {
  color: #14142b;
  width: auto;
}
.cid-tcBHReRCN5 .row.justify-content-between {
  align-items: center;
}
.cid-tcBHReRCN5 .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tcBHReRCN5 .row.margin:hover {
  transform: scale(1.05);
}
.cid-tcBHReRCN5 .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tcBHReRCN5 .left {
  max-width: 549px;
}
.cid-tcBHReRCN5 .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tcBHReRCN5 .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tcBHReRCN5 .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tcBHReRCN5 .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tcBHReRCN5 .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tcBHReRCN5 .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tcBHReRCN5 .socicon-bg-mail {
  background-color: #134785;
}
.cid-tcBHReRCN5 .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tcBHReRCN5 .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tcBHReRCN5 .btn-social:hover {
  color: #fff;
}
.cid-tcBHReRCN5 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tcBHReRCN5 .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tcBHReRCN5 .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tcBHReRCN5 .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tcBHReRCN5 .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tcBHReRCN5 .mbr-section-title,
  .cid-tcBHReRCN5 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tcBHReRCN5 .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tcBHReRCN5 .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tcBHReRCN5 .mbr-iconfont {
  margin-left: 0;
}
.cid-tcBHRfgGAG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcBHRfgGAG .content {
    text-align: center;
  }
  .cid-tcBHRfgGAG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcBHRfgGAG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcBHRfgGAG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcBHRfgGAG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcBHRfgGAG .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcBHRfgGAG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcBHRfgGAG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcBHRfgGAG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcBHRfgGAG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcBHRfgGAG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcBHRfgGAG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcBHRfgGAG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcBHRfgGAG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcBHRfgGAG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcBHRfgGAG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcBHRfgGAG .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcBHRfgGAG H5 {
  color: #0dbe64;
}
.cid-tcBIQgFa2s {
  z-index: 1000;
  width: 100%;
}
.cid-tcBIQgFa2s nav.navbar {
  position: fixed;
}
.cid-tcBIQgFa2s .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-tcBIQgFa2s .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcBIQgFa2s .dropdown-item:hover,
.cid-tcBIQgFa2s .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcBIQgFa2s .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcBIQgFa2s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBIQgFa2s .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcBIQgFa2s .container {
  display: flex;
  margin: auto;
}
.cid-tcBIQgFa2s .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcBIQgFa2s .dropdown-menu,
.cid-tcBIQgFa2s .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcBIQgFa2s .nav-item:focus,
.cid-tcBIQgFa2s .nav-link:focus {
  outline: none;
}
.cid-tcBIQgFa2s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBIQgFa2s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBIQgFa2s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcBIQgFa2s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBIQgFa2s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBIQgFa2s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBIQgFa2s .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcBIQgFa2s .navbar.opened {
  transition: all 0.3s;
}
.cid-tcBIQgFa2s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcBIQgFa2s .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBIQgFa2s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBIQgFa2s .navbar.collapsed {
  justify-content: center;
}
.cid-tcBIQgFa2s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBIQgFa2s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBIQgFa2s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcBIQgFa2s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBIQgFa2s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBIQgFa2s .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-tcBIQgFa2s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBIQgFa2s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcBIQgFa2s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcBIQgFa2s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBIQgFa2s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBIQgFa2s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBIQgFa2s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBIQgFa2s .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-tcBIQgFa2s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcBIQgFa2s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBIQgFa2s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBIQgFa2s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBIQgFa2s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBIQgFa2s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcBIQgFa2s .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBIQgFa2s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcBIQgFa2s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcBIQgFa2s .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-tcBIQgFa2s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBIQgFa2s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBIQgFa2s .dropdown-item.active,
.cid-tcBIQgFa2s .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBIQgFa2s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBIQgFa2s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBIQgFa2s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBIQgFa2s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcBIQgFa2s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBIQgFa2s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBIQgFa2s ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcBIQgFa2s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBIQgFa2s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcBIQgFa2s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcBIQgFa2s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcBIQgFa2s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBIQgFa2s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBIQgFa2s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcBIQgFa2s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBIQgFa2s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcBIQgFa2s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcBIQgFa2s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBIQgFa2s .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcBIQgFa2s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBIQgFa2s .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-tcBIQgFa2s .navbar {
    height: 70px;
  }
  .cid-tcBIQgFa2s .navbar.opened {
    height: auto;
  }
  .cid-tcBIQgFa2s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBIQgFa2s a {
  display: inline;
}
.cid-tcBIQgFa2s img {
  display: inline;
  padding-right: 10px;
}
.cid-tcBIQgFa2s .dropdown-toggle:after {
  display: none;
}
.cid-tcBIQgFa2s .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcBIQgFa2s .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcBIQgFa2s .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcBIQgFa2s .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcBIQgFa2s .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcBIQgFa2s .nav-item {
  margin-right: 32px;
}
.cid-tcBIQgFa2s .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcBIQgFa2s ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcBIQgFa2s .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcBIQgFa2s .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcBIQgFa2s .navbar-nav {
  margin: auto;
}
.cid-tcBIQgFa2s .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcBIQgFa2s .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcBIQgFa2s .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcBIQgFa2s .btn {
  border-radius: 1000px !important;
}
.cid-tcBIQgFa2s .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcBIQgFa2s .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcBIQgFa2s .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-tcBIQgFa2s .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-tcBIQgFa2s .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcBIQgFa2s .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcBIQgFa2s .top {
    margin-top: 25px;
  }
}
.cid-tcBIQgFa2s .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcBIQgFa2s .container,
  .cid-tcBIQgFa2s .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcBIQgFa2s li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcBIQgFa2s ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcBIQgFa2s .icons-menu {
    min-width: initial !important;
  }
  .cid-tcBIQgFa2s a.btn {
    margin-top: 10px;
  }
}
.cid-tcBIQgFa2s a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBIQhbnKF {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-domeniche-1.jpg");
}
.cid-tcBIQhbnKF .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBIQhbnKF .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcBIQhbnKF .button-align {
  text-align: center;
}
.cid-tcBIQhbnKF .mbr-section-btn {
  display: block;
}
.cid-tcBIQhbnKF .container {
  max-width: 739px;
}
.cid-tcBIQhbnKF .btn {
  margin-top: 20px;
}
.cid-tcBIQhbnKF a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBIQhbnKF .mbr-text,
.cid-tcBIQhbnKF .button-align {
  text-align: left;
  color: #ffe3e1;
}
.cid-tcBIQht9Ri {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tcBIQht9Ri .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcBIQht9Ri .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBIQht9Ri .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tcBIQht9Ri .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tcBIQht9Ri .right-side {
  max-width: 554px;
}
.cid-tcBIQht9Ri .rs {
  margin-right: 60px;
}
.cid-tcBIQht9Ri .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tcBIQht9Ri .margin {
  margin-right: 14px;
}
.cid-tcBIQht9Ri .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tcBIQht9Ri img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tcBIQht9Ri .gray {
    padding: 0px 0 5px;
  }
  .cid-tcBIQht9Ri img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tcBIQht9Ri .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tcBIQht9Ri .b {
    margin-bottom: 10px;
  }
}
.cid-tcBIQht9Ri .btn {
  margin-top: 20px;
}
.cid-tcBIQht9Ri a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBIQht9Ri .mbr-text,
.cid-tcBIQht9Ri .button-align {
  color: #0d646f;
}
.cid-tcBIQhNO60 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tcBIQhNO60 img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tcBIQhNO60 .title {
  color: #14142b;
  width: auto;
}
.cid-tcBIQhNO60 .row.justify-content-between {
  align-items: center;
}
.cid-tcBIQhNO60 .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tcBIQhNO60 .row.margin:hover {
  transform: scale(1.05);
}
.cid-tcBIQhNO60 .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tcBIQhNO60 .left {
  max-width: 549px;
}
.cid-tcBIQhNO60 .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tcBIQhNO60 .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tcBIQhNO60 .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tcBIQhNO60 .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tcBIQhNO60 .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tcBIQhNO60 .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tcBIQhNO60 .socicon-bg-mail {
  background-color: #134785;
}
.cid-tcBIQhNO60 .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tcBIQhNO60 .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tcBIQhNO60 .btn-social:hover {
  color: #fff;
}
.cid-tcBIQhNO60 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tcBIQhNO60 .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tcBIQhNO60 .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tcBIQhNO60 .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tcBIQhNO60 .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tcBIQhNO60 .mbr-section-title,
  .cid-tcBIQhNO60 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tcBIQhNO60 .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tcBIQhNO60 .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tcBIQhNO60 .mbr-iconfont {
  margin-left: 0;
}
.cid-tcBIQiat3P {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcBIQiat3P .content {
    text-align: center;
  }
  .cid-tcBIQiat3P .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcBIQiat3P .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcBIQiat3P .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcBIQiat3P .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcBIQiat3P .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcBIQiat3P .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcBIQiat3P .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcBIQiat3P .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcBIQiat3P .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcBIQiat3P .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcBIQiat3P .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcBIQiat3P .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcBIQiat3P .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcBIQiat3P .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcBIQiat3P .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcBIQiat3P .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcBIQiat3P H5 {
  color: #0dbe64;
}
.cid-tcBJQYgXil {
  z-index: 1000;
  width: 100%;
}
.cid-tcBJQYgXil nav.navbar {
  position: fixed;
}
.cid-tcBJQYgXil .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-tcBJQYgXil .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcBJQYgXil .dropdown-item:hover,
.cid-tcBJQYgXil .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcBJQYgXil .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcBJQYgXil .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBJQYgXil .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcBJQYgXil .container {
  display: flex;
  margin: auto;
}
.cid-tcBJQYgXil .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcBJQYgXil .dropdown-menu,
.cid-tcBJQYgXil .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcBJQYgXil .nav-item:focus,
.cid-tcBJQYgXil .nav-link:focus {
  outline: none;
}
.cid-tcBJQYgXil .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBJQYgXil .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBJQYgXil .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcBJQYgXil .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBJQYgXil .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBJQYgXil .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBJQYgXil .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcBJQYgXil .navbar.opened {
  transition: all 0.3s;
}
.cid-tcBJQYgXil .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcBJQYgXil .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBJQYgXil .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBJQYgXil .navbar.collapsed {
  justify-content: center;
}
.cid-tcBJQYgXil .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBJQYgXil .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBJQYgXil .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcBJQYgXil .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBJQYgXil .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBJQYgXil .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-tcBJQYgXil .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBJQYgXil .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcBJQYgXil .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcBJQYgXil .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBJQYgXil .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBJQYgXil .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBJQYgXil .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBJQYgXil .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-tcBJQYgXil .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcBJQYgXil .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBJQYgXil .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBJQYgXil .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBJQYgXil .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBJQYgXil .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcBJQYgXil .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBJQYgXil .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcBJQYgXil .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcBJQYgXil .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-tcBJQYgXil .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBJQYgXil .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBJQYgXil .dropdown-item.active,
.cid-tcBJQYgXil .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBJQYgXil .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBJQYgXil .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBJQYgXil .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBJQYgXil .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcBJQYgXil .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBJQYgXil .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBJQYgXil ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcBJQYgXil .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBJQYgXil button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcBJQYgXil button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcBJQYgXil button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcBJQYgXil button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBJQYgXil button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBJQYgXil button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcBJQYgXil nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBJQYgXil nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcBJQYgXil nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcBJQYgXil nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBJQYgXil .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcBJQYgXil a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBJQYgXil .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-tcBJQYgXil .navbar {
    height: 70px;
  }
  .cid-tcBJQYgXil .navbar.opened {
    height: auto;
  }
  .cid-tcBJQYgXil .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBJQYgXil a {
  display: inline;
}
.cid-tcBJQYgXil img {
  display: inline;
  padding-right: 10px;
}
.cid-tcBJQYgXil .dropdown-toggle:after {
  display: none;
}
.cid-tcBJQYgXil .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcBJQYgXil .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcBJQYgXil .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcBJQYgXil .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcBJQYgXil .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcBJQYgXil .nav-item {
  margin-right: 32px;
}
.cid-tcBJQYgXil .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcBJQYgXil ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcBJQYgXil .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcBJQYgXil .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcBJQYgXil .navbar-nav {
  margin: auto;
}
.cid-tcBJQYgXil .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcBJQYgXil .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcBJQYgXil .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcBJQYgXil .btn {
  border-radius: 1000px !important;
}
.cid-tcBJQYgXil .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcBJQYgXil .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcBJQYgXil .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-tcBJQYgXil .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-tcBJQYgXil .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcBJQYgXil .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcBJQYgXil .top {
    margin-top: 25px;
  }
}
.cid-tcBJQYgXil .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcBJQYgXil .container,
  .cid-tcBJQYgXil .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcBJQYgXil li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcBJQYgXil ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcBJQYgXil .icons-menu {
    min-width: initial !important;
  }
  .cid-tcBJQYgXil a.btn {
    margin-top: 10px;
  }
}
.cid-tcBJQYgXil a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBJQYDj4F {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-programmaz.jpg");
}
.cid-tcBJQYDj4F .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #ffffff;
}
.cid-tcBJQYDj4F .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcBJQYDj4F .button-align {
  text-align: center;
}
.cid-tcBJQYDj4F .mbr-section-btn {
  display: block;
}
.cid-tcBJQYDj4F .container {
  max-width: 739px;
}
.cid-tcBJQYDj4F .btn {
  margin-top: 20px;
}
.cid-tcBJQYDj4F a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBJQYDj4F .mbr-text,
.cid-tcBJQYDj4F .button-align {
  text-align: center;
  color: #fcfcfc;
}
.cid-tnsXS0ZWzD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnsXS0ZWzD .card-heading {
  padding-bottom: 32px;
  color: #14a0a7;
  text-align: center;
}
.cid-tnsXS0ZWzD .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tnsXS0ZWzD .p:last-child {
  padding-bottom: 0;
}
.cid-tnsXS0ZWzD .row {
  justify-content: center;
}
.cid-tcBJQZd8Bl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcfcfc;
}
.cid-tcBJQZd8Bl img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tcBJQZd8Bl .title {
  color: #14142b;
  width: auto;
}
.cid-tcBJQZd8Bl .row.justify-content-between {
  align-items: center;
}
.cid-tcBJQZd8Bl .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tcBJQZd8Bl .row.margin:hover {
  transform: scale(1.05);
}
.cid-tcBJQZd8Bl .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tcBJQZd8Bl .left {
  max-width: 549px;
}
.cid-tcBJQZd8Bl .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tcBJQZd8Bl .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tcBJQZd8Bl .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tcBJQZd8Bl .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tcBJQZd8Bl .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tcBJQZd8Bl .socicon-bg-pinterest {
  background-color: #ef7208;
}
.cid-tcBJQZd8Bl .socicon-bg-mail {
  background-color: #134785;
}
.cid-tcBJQZd8Bl .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tcBJQZd8Bl .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tcBJQZd8Bl .btn-social:hover {
  color: #fff;
}
.cid-tcBJQZd8Bl .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tcBJQZd8Bl .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tcBJQZd8Bl .mbr-section-subtitle {
  color: #0d646f;
}
@media (max-width: 850px) {
  .cid-tcBJQZd8Bl .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tcBJQZd8Bl .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tcBJQZd8Bl .mbr-section-title,
  .cid-tcBJQZd8Bl .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tcBJQZd8Bl .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tcBJQZd8Bl .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tcBJQZd8Bl .mbr-iconfont {
  margin-left: 0;
}
.cid-tcBJQZAzyc {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcBJQZAzyc .content {
    text-align: center;
  }
  .cid-tcBJQZAzyc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcBJQZAzyc .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcBJQZAzyc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcBJQZAzyc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcBJQZAzyc .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcBJQZAzyc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcBJQZAzyc .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcBJQZAzyc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcBJQZAzyc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcBJQZAzyc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcBJQZAzyc .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcBJQZAzyc .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcBJQZAzyc .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcBJQZAzyc .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcBJQZAzyc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcBJQZAzyc .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcBJQZAzyc H5 {
  color: #0dbe64;
}
.cid-tcBX5lwLO8 {
  z-index: 1000;
  width: 100%;
}
.cid-tcBX5lwLO8 nav.navbar {
  position: fixed;
}
.cid-tcBX5lwLO8 .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-tcBX5lwLO8 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcBX5lwLO8 .dropdown-item:hover,
.cid-tcBX5lwLO8 .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcBX5lwLO8 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcBX5lwLO8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcBX5lwLO8 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcBX5lwLO8 .container {
  display: flex;
  margin: auto;
}
.cid-tcBX5lwLO8 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcBX5lwLO8 .dropdown-menu,
.cid-tcBX5lwLO8 .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcBX5lwLO8 .nav-item:focus,
.cid-tcBX5lwLO8 .nav-link:focus {
  outline: none;
}
.cid-tcBX5lwLO8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcBX5lwLO8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcBX5lwLO8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcBX5lwLO8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcBX5lwLO8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcBX5lwLO8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcBX5lwLO8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcBX5lwLO8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcBX5lwLO8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcBX5lwLO8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcBX5lwLO8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcBX5lwLO8 .navbar.collapsed {
  justify-content: center;
}
.cid-tcBX5lwLO8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcBX5lwLO8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcBX5lwLO8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcBX5lwLO8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcBX5lwLO8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcBX5lwLO8 .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-tcBX5lwLO8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcBX5lwLO8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcBX5lwLO8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcBX5lwLO8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcBX5lwLO8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcBX5lwLO8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcBX5lwLO8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcBX5lwLO8 .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-tcBX5lwLO8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcBX5lwLO8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcBX5lwLO8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcBX5lwLO8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcBX5lwLO8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcBX5lwLO8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcBX5lwLO8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcBX5lwLO8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcBX5lwLO8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcBX5lwLO8 .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-tcBX5lwLO8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcBX5lwLO8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcBX5lwLO8 .dropdown-item.active,
.cid-tcBX5lwLO8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcBX5lwLO8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcBX5lwLO8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcBX5lwLO8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcBX5lwLO8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcBX5lwLO8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcBX5lwLO8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcBX5lwLO8 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcBX5lwLO8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcBX5lwLO8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcBX5lwLO8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcBX5lwLO8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcBX5lwLO8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBX5lwLO8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcBX5lwLO8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcBX5lwLO8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBX5lwLO8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcBX5lwLO8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcBX5lwLO8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcBX5lwLO8 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcBX5lwLO8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcBX5lwLO8 .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-tcBX5lwLO8 .navbar {
    height: 70px;
  }
  .cid-tcBX5lwLO8 .navbar.opened {
    height: auto;
  }
  .cid-tcBX5lwLO8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcBX5lwLO8 a {
  display: inline;
}
.cid-tcBX5lwLO8 img {
  display: inline;
  padding-right: 10px;
}
.cid-tcBX5lwLO8 .dropdown-toggle:after {
  display: none;
}
.cid-tcBX5lwLO8 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcBX5lwLO8 .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcBX5lwLO8 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcBX5lwLO8 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcBX5lwLO8 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcBX5lwLO8 .nav-item {
  margin-right: 32px;
}
.cid-tcBX5lwLO8 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcBX5lwLO8 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcBX5lwLO8 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcBX5lwLO8 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcBX5lwLO8 .navbar-nav {
  margin: auto;
}
.cid-tcBX5lwLO8 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcBX5lwLO8 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcBX5lwLO8 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcBX5lwLO8 .btn {
  border-radius: 1000px !important;
}
.cid-tcBX5lwLO8 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcBX5lwLO8 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcBX5lwLO8 .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-tcBX5lwLO8 .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-tcBX5lwLO8 .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcBX5lwLO8 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcBX5lwLO8 .top {
    margin-top: 25px;
  }
}
.cid-tcBX5lwLO8 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcBX5lwLO8 .container,
  .cid-tcBX5lwLO8 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcBX5lwLO8 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcBX5lwLO8 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcBX5lwLO8 .icons-menu {
    min-width: initial !important;
  }
  .cid-tcBX5lwLO8 a.btn {
    margin-top: 10px;
  }
}
.cid-tcBX5lwLO8 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBX5lWb6L {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/headstagione-1920x971.jpg");
}
.cid-tcBX5lWb6L .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBX5lWb6L .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tcBX5lWb6L .button-align {
  text-align: center;
}
.cid-tcBX5lWb6L .mbr-section-btn {
  display: block;
}
.cid-tcBX5lWb6L .container {
  max-width: 739px;
}
.cid-tcBX5lWb6L .btn {
  margin-top: 20px;
}
.cid-tcBX5lWb6L a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBX5lWb6L .mbr-text,
.cid-tcBX5lWb6L .button-align {
  text-align: left;
  color: #14a0a7;
}
.cid-tcBX5me5dZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tcBX5me5dZ .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcBX5me5dZ .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcBX5me5dZ .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tcBX5me5dZ .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tcBX5me5dZ .right-side {
  max-width: 554px;
}
.cid-tcBX5me5dZ .rs {
  margin-right: 60px;
}
.cid-tcBX5me5dZ .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tcBX5me5dZ .margin {
  margin-right: 14px;
}
.cid-tcBX5me5dZ .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tcBX5me5dZ img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tcBX5me5dZ .gray {
    padding: 0px 0 5px;
  }
  .cid-tcBX5me5dZ img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tcBX5me5dZ .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tcBX5me5dZ .b {
    margin-bottom: 10px;
  }
}
.cid-tcBX5me5dZ .btn {
  margin-top: 20px;
}
.cid-tcBX5me5dZ a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcBX5me5dZ .mbr-text,
.cid-tcBX5me5dZ .button-align {
  color: #0d646f;
}
.cid-tTGPC9uG7I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTGPC9uG7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTGPC9uG7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTGPC9uG7I .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tTGPC9uG7I .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tTGPC9uG7I .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tTGPC9uG7I .mbr-section-title {
  color: #0d646f;
}
.cid-tTGPC9uG7I .mbr-section-subtitle {
  margin-top: 18px;
  color: #0d646f;
}
.cid-tTGPC9uG7I .items-row {
  row-gap: 24px;
}
.cid-tTGPC9uG7I .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tTGPC9uG7I .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tTGPC9uG7I .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tTGPC9uG7I .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tTGPC9uG7I .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-tTGPC9uG7I .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-tTGPC9uG7I .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tTGPC9uG7I .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-tTGPC9uG7I .card-title {
  color: #131313;
}
.cid-tTGPC9uG7I .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tTGPC9uG7I .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-tTGPC9uG7I .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tTGPC9uG7I .link-text {
    margin-top: 5px;
  }
}
.cid-tTGPC9uG7I .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tTGPC9uG7I .mbr-section-btn {
  margin-top: 5px;
}
.cid-tTGPi5A5zt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTGPi5A5zt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTGPi5A5zt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTGPi5A5zt .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tTGPi5A5zt .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tTGPi5A5zt .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tTGPi5A5zt .mbr-section-title {
  color: #0d646f;
}
.cid-tTGPi5A5zt .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tTGPi5A5zt .items-row {
  row-gap: 24px;
}
.cid-tTGPi5A5zt .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tTGPi5A5zt .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tTGPi5A5zt .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tTGPi5A5zt .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tTGPi5A5zt .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-tTGPi5A5zt .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-tTGPi5A5zt .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tTGPi5A5zt .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-tTGPi5A5zt .card-title {
  color: #131313;
}
.cid-tTGPi5A5zt .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tTGPi5A5zt .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-tTGPi5A5zt .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tTGPi5A5zt .link-text {
    margin-top: 5px;
  }
}
.cid-tTGPi5A5zt .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tTGPi5A5zt .mbr-section-btn {
  margin-top: 5px;
}
.cid-tTGPj95KD5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTGPj95KD5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTGPj95KD5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTGPj95KD5 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tTGPj95KD5 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tTGPj95KD5 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tTGPj95KD5 .mbr-section-title {
  color: #0d646f;
}
.cid-tTGPj95KD5 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tTGPj95KD5 .items-row {
  row-gap: 24px;
}
.cid-tTGPj95KD5 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tTGPj95KD5 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tTGPj95KD5 .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tTGPj95KD5 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tTGPj95KD5 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 4);
}
.cid-tTGPj95KD5 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-tTGPj95KD5 .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tTGPj95KD5 .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-tTGPj95KD5 .card-title {
  color: #131313;
}
.cid-tTGPj95KD5 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tTGPj95KD5 .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-tTGPj95KD5 .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tTGPj95KD5 .link-text {
    margin-top: 5px;
  }
}
.cid-tTGPj95KD5 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tTGPj95KD5 .mbr-section-btn {
  margin-top: 5px;
}
.cid-tcBX5mvFtY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tcBX5mvFtY img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tcBX5mvFtY .title {
  color: #14142b;
  width: auto;
}
.cid-tcBX5mvFtY .row.justify-content-between {
  align-items: center;
}
.cid-tcBX5mvFtY .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tcBX5mvFtY .row.margin:hover {
  transform: scale(1.05);
}
.cid-tcBX5mvFtY .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tcBX5mvFtY .left {
  max-width: 549px;
}
.cid-tcBX5mvFtY .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tcBX5mvFtY .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tcBX5mvFtY .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tcBX5mvFtY .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tcBX5mvFtY .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tcBX5mvFtY .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tcBX5mvFtY .socicon-bg-mail {
  background-color: #134785;
}
.cid-tcBX5mvFtY .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tcBX5mvFtY .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tcBX5mvFtY .btn-social:hover {
  color: #fff;
}
.cid-tcBX5mvFtY .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tcBX5mvFtY .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tcBX5mvFtY .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tcBX5mvFtY .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tcBX5mvFtY .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tcBX5mvFtY .mbr-section-title,
  .cid-tcBX5mvFtY .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tcBX5mvFtY .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tcBX5mvFtY .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tcBX5mvFtY .mbr-iconfont {
  margin-left: 0;
}
.cid-tcBX5mRCIv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcBX5mRCIv .content {
    text-align: center;
  }
  .cid-tcBX5mRCIv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcBX5mRCIv .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcBX5mRCIv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcBX5mRCIv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcBX5mRCIv .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcBX5mRCIv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcBX5mRCIv .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcBX5mRCIv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcBX5mRCIv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcBX5mRCIv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcBX5mRCIv .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcBX5mRCIv .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcBX5mRCIv .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcBX5mRCIv .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcBX5mRCIv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcBX5mRCIv .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcBX5mRCIv H5 {
  color: #0dbe64;
}
.cid-tfBD9nHT1r {
  z-index: 1000;
  width: 100%;
}
.cid-tfBD9nHT1r nav.navbar {
  position: fixed;
}
.cid-tfBD9nHT1r .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-tfBD9nHT1r .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfBD9nHT1r .dropdown-item:hover,
.cid-tfBD9nHT1r .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfBD9nHT1r .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfBD9nHT1r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfBD9nHT1r .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfBD9nHT1r .container {
  display: flex;
  margin: auto;
}
.cid-tfBD9nHT1r .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfBD9nHT1r .dropdown-menu,
.cid-tfBD9nHT1r .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfBD9nHT1r .nav-item:focus,
.cid-tfBD9nHT1r .nav-link:focus {
  outline: none;
}
.cid-tfBD9nHT1r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfBD9nHT1r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfBD9nHT1r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfBD9nHT1r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfBD9nHT1r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfBD9nHT1r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfBD9nHT1r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfBD9nHT1r .navbar.opened {
  transition: all 0.3s;
}
.cid-tfBD9nHT1r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfBD9nHT1r .navbar .navbar-logo img {
  width: auto;
}
.cid-tfBD9nHT1r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfBD9nHT1r .navbar.collapsed {
  justify-content: center;
}
.cid-tfBD9nHT1r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfBD9nHT1r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfBD9nHT1r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfBD9nHT1r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfBD9nHT1r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfBD9nHT1r .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-tfBD9nHT1r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfBD9nHT1r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfBD9nHT1r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfBD9nHT1r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfBD9nHT1r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfBD9nHT1r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfBD9nHT1r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfBD9nHT1r .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-tfBD9nHT1r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfBD9nHT1r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfBD9nHT1r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfBD9nHT1r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfBD9nHT1r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfBD9nHT1r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfBD9nHT1r .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfBD9nHT1r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfBD9nHT1r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfBD9nHT1r .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-tfBD9nHT1r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfBD9nHT1r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfBD9nHT1r .dropdown-item.active,
.cid-tfBD9nHT1r .dropdown-item:active {
  background-color: transparent;
}
.cid-tfBD9nHT1r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfBD9nHT1r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfBD9nHT1r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfBD9nHT1r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfBD9nHT1r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfBD9nHT1r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfBD9nHT1r ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfBD9nHT1r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfBD9nHT1r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfBD9nHT1r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfBD9nHT1r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfBD9nHT1r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfBD9nHT1r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfBD9nHT1r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfBD9nHT1r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfBD9nHT1r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfBD9nHT1r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfBD9nHT1r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfBD9nHT1r .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfBD9nHT1r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfBD9nHT1r .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-tfBD9nHT1r .navbar {
    height: 70px;
  }
  .cid-tfBD9nHT1r .navbar.opened {
    height: auto;
  }
  .cid-tfBD9nHT1r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfBD9nHT1r a {
  display: inline;
}
.cid-tfBD9nHT1r img {
  display: inline;
  padding-right: 10px;
}
.cid-tfBD9nHT1r .dropdown-toggle:after {
  display: none;
}
.cid-tfBD9nHT1r .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfBD9nHT1r .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfBD9nHT1r .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfBD9nHT1r .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfBD9nHT1r .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfBD9nHT1r .nav-item {
  margin-right: 32px;
}
.cid-tfBD9nHT1r .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfBD9nHT1r ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfBD9nHT1r .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfBD9nHT1r .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfBD9nHT1r .navbar-nav {
  margin: auto;
}
.cid-tfBD9nHT1r .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfBD9nHT1r .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfBD9nHT1r .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfBD9nHT1r .btn {
  border-radius: 1000px !important;
}
.cid-tfBD9nHT1r .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfBD9nHT1r .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfBD9nHT1r .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-tfBD9nHT1r .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-tfBD9nHT1r .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfBD9nHT1r .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfBD9nHT1r .top {
    margin-top: 25px;
  }
}
.cid-tfBD9nHT1r .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfBD9nHT1r .container,
  .cid-tfBD9nHT1r .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfBD9nHT1r li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfBD9nHT1r ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfBD9nHT1r .icons-menu {
    min-width: initial !important;
  }
  .cid-tfBD9nHT1r a.btn {
    margin-top: 10px;
  }
}
.cid-tfBD9nHT1r a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfBD9o75SK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tfBD9o75SK .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfBD9o75SK .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tfBD9o75SK .button-align {
  text-align: center;
}
.cid-tfBD9o75SK .mbr-section-btn {
  display: block;
}
.cid-tfBD9o75SK .container {
  max-width: 739px;
}
.cid-tfBD9o75SK .btn {
  margin-top: 20px;
}
.cid-tfBD9o75SK a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfBD9o75SK .mbr-text,
.cid-tfBD9o75SK .button-align {
  text-align: left;
  color: #14a0a7;
}
.cid-tfBMbEIll0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ebebed;
}
.cid-tfBMbEIll0 .mbr-section-subtitle {
  color: #0d646f;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-tfBMbEIll0 .mbr-section-title {
  text-align: center;
  color: #14a0a7;
  padding-bottom: 24px;
  max-width: 752px;
  margin: auto;
}
.cid-tfBMbEIll0 .row {
  align-items: center;
  height: 100%;
}
.cid-tfBMbEIll0 .wrapper {
  margin: auto;
}
.cid-tfBMdQLOVz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ebebed;
}
.cid-tfBMdQLOVz .card-heading {
  padding-bottom: 32px;
  color: #000000;
}
.cid-tfBMdQLOVz .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tfBMdQLOVz .p:last-child {
  padding-bottom: 0;
}
.cid-tfBMdQLOVz .row {
  justify-content: center;
}
.cid-tfBD9onoD2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ebebed;
}
.cid-tfBD9onoD2 .item:focus,
.cid-tfBD9onoD2 span:focus {
  outline: none;
}
.cid-tfBD9onoD2 .item-wrapper {
  position: relative;
}
.cid-tfBD9onoD2 .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tfBD9onoD2 .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-tfBD9onoD2 .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-tfBD9onoD2 .mbr-text,
.cid-tfBD9onoD2 .mbr-section-btn {
  text-align: left;
}
.cid-tfBD9onoD2 .item-title {
  text-align: left;
}
.cid-tfBD9onoD2 .item-subtitle {
  text-align: left;
}
.cid-tfBD9onoD2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tfBD9onoD2 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tfBD9onoD2 .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tfBD9onoD2 .embla__slide {
    min-width: 375px;
  }
}
.cid-tfBD9onoD2 .embla__button--next,
.cid-tfBD9onoD2 .embla__button--prev {
  display: flex;
}
.cid-tfBD9onoD2 .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tfBD9onoD2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tfBD9onoD2 .embla__button:hover {
  background: #0d646f;
  color: #fff;
  transform: scale(1.05);
}
.cid-tfBD9onoD2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfBD9onoD2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfBD9onoD2 .embla__button {
    top: auto;
  }
}
.cid-tfBD9onoD2 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tfBD9onoD2 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tfBD9onoD2 .embla {
  position: relative;
  width: 100%;
}
.cid-tfBD9onoD2 .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tfBD9onoD2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tfBD9onoD2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tfBD9onoD2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tfBD9onoD2 .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tfBD9onoD2 .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-tfBD9onoD2 .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
}
.cid-tfBD9onoD2 .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-tfBD9onoD2 img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.cid-tfBD9onoD2 .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tfBD9onoD2 .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tfBD9onoD2 .shadow:hover .number,
.cid-tfBD9onoD2 .shadow:hover .card-title {
  color: #0d646f !important;
}
.cid-tfBD9onoD2 .shadow:hover .iconfont-wrapper > .mbr-iconfont > span {
  color: #000000 !important;
}
.cid-tfBD9onoD2 .card-title {
  margin-bottom: 16px;
  color: #4c4c4c;
  transition: 0.35s;
  text-align: left;
}
.cid-tfBD9onoD2 .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-tfBD9onoD2 H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-tfBD9onoD2 .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-tfBD9onoD2 .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-tfBD9onoD2 .link-title {
  display: inline-block;
}
.cid-tfBD9onoD2 .margin {
  margin-right: 14px;
}
.cid-tfBD9onoD2 .article {
  display: contents;
}
.cid-tfBD9onoD2 .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-tfBD9onoD2 .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-tfBD9onoD2 .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-tfBD9onoD2 .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-tfBD9onoD2 .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-tfBD9onoD2 .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-tfBD9onoD2 .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tfBD9onoD2 .btn {
  margin-top: 20px;
}
.cid-tfBD9onoD2 .card-title,
.cid-tfBD9onoD2 .iconfont-wrapper {
  text-align: center;
  color: #ef7208;
}
.cid-tfBD9onoD2 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfBD9onoD2 .mbr-section-title,
.cid-tfBD9onoD2 .button-align {
  text-align: left;
  color: #ef7208;
}
.cid-tfBKCLq86C {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/teatro-nohma-meta-736x552.jpg");
}
.cid-tfBKCLq86C .mbr-media {
  position: relative;
}
.cid-tfBKCLq86C .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-tfBKCLq86C .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tfBKCLq86C .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tfBKCLq86C .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tfBKCLq86C .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tfBKCLq86C .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tfBKCLq86C .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tfBKCLq86C .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfBKCLq86C .mbr-section-title {
  color: #14a0a7;
}
.cid-tfBD9pNK2d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tfBD9pNK2d img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tfBD9pNK2d .title {
  color: #14142b;
  width: auto;
}
.cid-tfBD9pNK2d .row.justify-content-between {
  align-items: center;
}
.cid-tfBD9pNK2d .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tfBD9pNK2d .row.margin:hover {
  transform: scale(1.05);
}
.cid-tfBD9pNK2d .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tfBD9pNK2d .left {
  max-width: 549px;
}
.cid-tfBD9pNK2d .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tfBD9pNK2d .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tfBD9pNK2d .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tfBD9pNK2d .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tfBD9pNK2d .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tfBD9pNK2d .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tfBD9pNK2d .socicon-bg-mail {
  background-color: #134785;
}
.cid-tfBD9pNK2d .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tfBD9pNK2d .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tfBD9pNK2d .btn-social:hover {
  color: #fff;
}
.cid-tfBD9pNK2d .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tfBD9pNK2d .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tfBD9pNK2d .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tfBD9pNK2d .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tfBD9pNK2d .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tfBD9pNK2d .mbr-section-title,
  .cid-tfBD9pNK2d .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tfBD9pNK2d .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tfBD9pNK2d .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tfBD9pNK2d .mbr-iconfont {
  margin-left: 0;
}
.cid-tifao9FtEE.popup-builder {
  background-color: #ffffff;
}
.cid-tifao9FtEE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tifao9FtEE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  height: 100%;
}
.cid-tifao9FtEE .modal-content,
.cid-tifao9FtEE .modal-dialog {
  height: auto;
}
.cid-tifao9FtEE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tifao9FtEE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tifao9FtEE .form-wrapper .mbr-form .form-group,
  .cid-tifao9FtEE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tifao9FtEE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tifao9FtEE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tifao9FtEE .mbr-text {
  text-align: left;
  color: #fcfcfc;
}
.cid-tifao9FtEE .pt-0 {
  padding-top: 0 !important;
}
.cid-tifao9FtEE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tifao9FtEE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tifao9FtEE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tifao9FtEE .modal-open {
  overflow: hidden;
}
.cid-tifao9FtEE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tifao9FtEE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tifao9FtEE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
.cid-tifao9FtEE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tifao9FtEE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tifao9FtEE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tifao9FtEE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tifao9FtEE .modal-content {
  background: #14a0a7;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  height: 100%;
  overflow: auto;
}
.cid-tifao9FtEE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tifao9FtEE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tifao9FtEE .modal-backdrop.fade {
  opacity: 0;
}
.cid-tifao9FtEE .modal-backdrop.show {
  opacity: .5;
}
.cid-tifao9FtEE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tifao9FtEE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tifao9FtEE .modal-header {
    padding: 1rem;
  }
}
.cid-tifao9FtEE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tifao9FtEE .modal-header .close svg {
  fill: #fcfcfc;
}
.cid-tifao9FtEE .modal-header .close:hover {
  opacity: 1;
}
.cid-tifao9FtEE .modal-header .close:focus {
  outline: none;
}
.cid-tifao9FtEE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tifao9FtEE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tifao9FtEE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tifao9FtEE .modal-body {
    padding: 1rem;
  }
}
.cid-tifao9FtEE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tifao9FtEE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tifao9FtEE .modal-footer {
    padding: 1rem;
  }
}
.cid-tifao9FtEE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tifao9FtEE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tifao9FtEE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tifao9FtEE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tifao9FtEE .modal-lg,
  .cid-tifao9FtEE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tifao9FtEE .modal-xl {
    max-width: 1140px;
  }
}
.cid-tifao9FtEE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tifao9FtEE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tifao9FtEE .form-group {
  margin-bottom: 1rem;
}
.cid-tifao9FtEE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tifao9FtEE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tifao9FtEE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tifao9FtEE .mbr-section-btn {
  margin: 0;
}
.cid-tifao9FtEE .mbr-section-btn .btn {
  margin: 0;
}
.cid-tfBD9qdnOJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfBD9qdnOJ .content {
    text-align: center;
  }
  .cid-tfBD9qdnOJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfBD9qdnOJ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfBD9qdnOJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfBD9qdnOJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfBD9qdnOJ .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfBD9qdnOJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfBD9qdnOJ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfBD9qdnOJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfBD9qdnOJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfBD9qdnOJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfBD9qdnOJ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfBD9qdnOJ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfBD9qdnOJ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfBD9qdnOJ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfBD9qdnOJ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfBD9qdnOJ .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfBD9qdnOJ H5 {
  color: #0dbe64;
}
.cid-tfBWgm2FBG {
  z-index: 1000;
  width: 100%;
}
.cid-tfBWgm2FBG nav.navbar {
  position: fixed;
}
.cid-tfBWgm2FBG .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-tfBWgm2FBG .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfBWgm2FBG .dropdown-item:hover,
.cid-tfBWgm2FBG .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfBWgm2FBG .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfBWgm2FBG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfBWgm2FBG .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfBWgm2FBG .container {
  display: flex;
  margin: auto;
}
.cid-tfBWgm2FBG .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfBWgm2FBG .dropdown-menu,
.cid-tfBWgm2FBG .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfBWgm2FBG .nav-item:focus,
.cid-tfBWgm2FBG .nav-link:focus {
  outline: none;
}
.cid-tfBWgm2FBG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfBWgm2FBG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfBWgm2FBG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfBWgm2FBG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfBWgm2FBG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfBWgm2FBG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfBWgm2FBG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfBWgm2FBG .navbar.opened {
  transition: all 0.3s;
}
.cid-tfBWgm2FBG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfBWgm2FBG .navbar .navbar-logo img {
  width: auto;
}
.cid-tfBWgm2FBG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfBWgm2FBG .navbar.collapsed {
  justify-content: center;
}
.cid-tfBWgm2FBG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfBWgm2FBG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfBWgm2FBG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfBWgm2FBG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfBWgm2FBG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfBWgm2FBG .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-tfBWgm2FBG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfBWgm2FBG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfBWgm2FBG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfBWgm2FBG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfBWgm2FBG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfBWgm2FBG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfBWgm2FBG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfBWgm2FBG .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-tfBWgm2FBG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfBWgm2FBG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfBWgm2FBG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfBWgm2FBG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfBWgm2FBG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfBWgm2FBG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfBWgm2FBG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfBWgm2FBG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfBWgm2FBG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfBWgm2FBG .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-tfBWgm2FBG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfBWgm2FBG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfBWgm2FBG .dropdown-item.active,
.cid-tfBWgm2FBG .dropdown-item:active {
  background-color: transparent;
}
.cid-tfBWgm2FBG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfBWgm2FBG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfBWgm2FBG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfBWgm2FBG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfBWgm2FBG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfBWgm2FBG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfBWgm2FBG ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfBWgm2FBG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfBWgm2FBG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfBWgm2FBG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfBWgm2FBG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfBWgm2FBG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfBWgm2FBG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfBWgm2FBG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfBWgm2FBG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfBWgm2FBG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfBWgm2FBG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfBWgm2FBG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfBWgm2FBG .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfBWgm2FBG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfBWgm2FBG .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-tfBWgm2FBG .navbar {
    height: 70px;
  }
  .cid-tfBWgm2FBG .navbar.opened {
    height: auto;
  }
  .cid-tfBWgm2FBG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfBWgm2FBG a {
  display: inline;
}
.cid-tfBWgm2FBG img {
  display: inline;
  padding-right: 10px;
}
.cid-tfBWgm2FBG .dropdown-toggle:after {
  display: none;
}
.cid-tfBWgm2FBG .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfBWgm2FBG .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfBWgm2FBG .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfBWgm2FBG .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfBWgm2FBG .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfBWgm2FBG .nav-item {
  margin-right: 32px;
}
.cid-tfBWgm2FBG .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfBWgm2FBG ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfBWgm2FBG .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfBWgm2FBG .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfBWgm2FBG .navbar-nav {
  margin: auto;
}
.cid-tfBWgm2FBG .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfBWgm2FBG .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfBWgm2FBG .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfBWgm2FBG .btn {
  border-radius: 1000px !important;
}
.cid-tfBWgm2FBG .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfBWgm2FBG .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfBWgm2FBG .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-tfBWgm2FBG .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-tfBWgm2FBG .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfBWgm2FBG .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfBWgm2FBG .top {
    margin-top: 25px;
  }
}
.cid-tfBWgm2FBG .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfBWgm2FBG .container,
  .cid-tfBWgm2FBG .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfBWgm2FBG li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfBWgm2FBG ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfBWgm2FBG .icons-menu {
    min-width: initial !important;
  }
  .cid-tfBWgm2FBG a.btn {
    margin-top: 10px;
  }
}
.cid-tfBWgm2FBG a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfBWgmCexS {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-passaporto-2.jpg");
}
.cid-tfBWgmCexS .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfBWgmCexS .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tfBWgmCexS .button-align {
  text-align: center;
}
.cid-tfBWgmCexS .mbr-section-btn {
  display: block;
}
.cid-tfBWgmCexS .container {
  max-width: 739px;
}
.cid-tfBWgmCexS .btn {
  margin-top: 20px;
}
.cid-tfBWgmCexS a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfBWgmCexS .mbr-text,
.cid-tfBWgmCexS .button-align {
  text-align: left;
}
.cid-tfBWgmXjg9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tfBWgmXjg9 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tfBWgmXjg9 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #ef7208;
}
.cid-tfBWgmXjg9 .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tfBWgmXjg9 .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tfBWgmXjg9 .right-side {
  max-width: 554px;
}
.cid-tfBWgmXjg9 .rs {
  margin-right: 60px;
}
.cid-tfBWgmXjg9 .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tfBWgmXjg9 .margin {
  margin-right: 14px;
}
.cid-tfBWgmXjg9 .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tfBWgmXjg9 img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tfBWgmXjg9 .gray {
    padding: 0px 0 5px;
  }
  .cid-tfBWgmXjg9 img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tfBWgmXjg9 .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tfBWgmXjg9 .b {
    margin-bottom: 10px;
  }
}
.cid-tfBWgmXjg9 .btn {
  margin-top: 20px;
}
.cid-tfBWgmXjg9 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfBWgmXjg9 .mbr-text,
.cid-tfBWgmXjg9 .button-align {
  color: #0d646f;
}
.cid-tfBWgnjNUg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tfBWgnjNUg img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tfBWgnjNUg .title {
  color: #14142b;
  width: auto;
}
.cid-tfBWgnjNUg .row.justify-content-between {
  align-items: center;
}
.cid-tfBWgnjNUg .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tfBWgnjNUg .row.margin:hover {
  transform: scale(1.05);
}
.cid-tfBWgnjNUg .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tfBWgnjNUg .left {
  max-width: 549px;
}
.cid-tfBWgnjNUg .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tfBWgnjNUg .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tfBWgnjNUg .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tfBWgnjNUg .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tfBWgnjNUg .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tfBWgnjNUg .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tfBWgnjNUg .socicon-bg-mail {
  background-color: #134785;
}
.cid-tfBWgnjNUg .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tfBWgnjNUg .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tfBWgnjNUg .btn-social:hover {
  color: #fff;
}
.cid-tfBWgnjNUg .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tfBWgnjNUg .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tfBWgnjNUg .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tfBWgnjNUg .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tfBWgnjNUg .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tfBWgnjNUg .mbr-section-title,
  .cid-tfBWgnjNUg .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tfBWgnjNUg .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tfBWgnjNUg .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tfBWgnjNUg .mbr-iconfont {
  margin-left: 0;
}
.cid-tfBWgnGZ5B {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfBWgnGZ5B .content {
    text-align: center;
  }
  .cid-tfBWgnGZ5B .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfBWgnGZ5B .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfBWgnGZ5B .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfBWgnGZ5B .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfBWgnGZ5B .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfBWgnGZ5B .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfBWgnGZ5B .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfBWgnGZ5B .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfBWgnGZ5B .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfBWgnGZ5B .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfBWgnGZ5B .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfBWgnGZ5B .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfBWgnGZ5B .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfBWgnGZ5B .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfBWgnGZ5B .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfBWgnGZ5B .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfBWgnGZ5B H5 {
  color: #0dbe64;
}
.cid-tfC8qoCEW0 {
  z-index: 1000;
  width: 100%;
}
.cid-tfC8qoCEW0 nav.navbar {
  position: fixed;
}
.cid-tfC8qoCEW0 .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-tfC8qoCEW0 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfC8qoCEW0 .dropdown-item:hover,
.cid-tfC8qoCEW0 .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfC8qoCEW0 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfC8qoCEW0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfC8qoCEW0 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfC8qoCEW0 .container {
  display: flex;
  margin: auto;
}
.cid-tfC8qoCEW0 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfC8qoCEW0 .dropdown-menu,
.cid-tfC8qoCEW0 .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfC8qoCEW0 .nav-item:focus,
.cid-tfC8qoCEW0 .nav-link:focus {
  outline: none;
}
.cid-tfC8qoCEW0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfC8qoCEW0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfC8qoCEW0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfC8qoCEW0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfC8qoCEW0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfC8qoCEW0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfC8qoCEW0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfC8qoCEW0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tfC8qoCEW0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfC8qoCEW0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tfC8qoCEW0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfC8qoCEW0 .navbar.collapsed {
  justify-content: center;
}
.cid-tfC8qoCEW0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfC8qoCEW0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfC8qoCEW0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfC8qoCEW0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfC8qoCEW0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfC8qoCEW0 .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-tfC8qoCEW0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfC8qoCEW0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfC8qoCEW0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfC8qoCEW0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfC8qoCEW0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfC8qoCEW0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfC8qoCEW0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfC8qoCEW0 .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-tfC8qoCEW0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfC8qoCEW0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfC8qoCEW0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfC8qoCEW0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfC8qoCEW0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfC8qoCEW0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfC8qoCEW0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfC8qoCEW0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfC8qoCEW0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfC8qoCEW0 .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-tfC8qoCEW0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfC8qoCEW0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfC8qoCEW0 .dropdown-item.active,
.cid-tfC8qoCEW0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tfC8qoCEW0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfC8qoCEW0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfC8qoCEW0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfC8qoCEW0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfC8qoCEW0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfC8qoCEW0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfC8qoCEW0 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfC8qoCEW0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfC8qoCEW0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfC8qoCEW0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfC8qoCEW0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfC8qoCEW0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfC8qoCEW0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfC8qoCEW0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfC8qoCEW0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfC8qoCEW0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfC8qoCEW0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfC8qoCEW0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfC8qoCEW0 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfC8qoCEW0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfC8qoCEW0 .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-tfC8qoCEW0 .navbar {
    height: 70px;
  }
  .cid-tfC8qoCEW0 .navbar.opened {
    height: auto;
  }
  .cid-tfC8qoCEW0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfC8qoCEW0 a {
  display: inline;
}
.cid-tfC8qoCEW0 img {
  display: inline;
  padding-right: 10px;
}
.cid-tfC8qoCEW0 .dropdown-toggle:after {
  display: none;
}
.cid-tfC8qoCEW0 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfC8qoCEW0 .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfC8qoCEW0 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfC8qoCEW0 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfC8qoCEW0 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfC8qoCEW0 .nav-item {
  margin-right: 32px;
}
.cid-tfC8qoCEW0 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfC8qoCEW0 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfC8qoCEW0 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfC8qoCEW0 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfC8qoCEW0 .navbar-nav {
  margin: auto;
}
.cid-tfC8qoCEW0 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfC8qoCEW0 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfC8qoCEW0 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfC8qoCEW0 .btn {
  border-radius: 1000px !important;
}
.cid-tfC8qoCEW0 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfC8qoCEW0 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfC8qoCEW0 .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-tfC8qoCEW0 .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-tfC8qoCEW0 .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfC8qoCEW0 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfC8qoCEW0 .top {
    margin-top: 25px;
  }
}
.cid-tfC8qoCEW0 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfC8qoCEW0 .container,
  .cid-tfC8qoCEW0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfC8qoCEW0 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfC8qoCEW0 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfC8qoCEW0 .icons-menu {
    min-width: initial !important;
  }
  .cid-tfC8qoCEW0 a.btn {
    margin-top: 10px;
  }
}
.cid-tfC8qoCEW0 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfC8Fc9FiX {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tfC8Fc9FiX .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tfC8Fc9FiX .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfC8Fc9FiX .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tfC8Fc9FiX .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tfC8Fc9FiX .right-side {
  max-width: 554px;
}
.cid-tfC8Fc9FiX .rs {
  margin-right: 60px;
}
.cid-tfC8Fc9FiX .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tfC8Fc9FiX .margin {
  margin-right: 14px;
}
.cid-tfC8Fc9FiX .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tfC8Fc9FiX img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tfC8Fc9FiX .gray {
    padding: 0px 0 5px;
  }
  .cid-tfC8Fc9FiX img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tfC8Fc9FiX .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tfC8Fc9FiX .b {
    margin-bottom: 10px;
  }
}
.cid-tfC8Fc9FiX .btn {
  margin-top: 20px;
}
.cid-tfC8Fc9FiX a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfC8Fc9FiX .mbr-text,
.cid-tfC8Fc9FiX .button-align {
  color: #0d646f;
}
.cid-tfC8KCNuay {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfC8KCNuay .card-heading {
  padding-bottom: 32px;
  color: #14a0a7;
}
.cid-tfC8KCNuay .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tfC8KCNuay .p:last-child {
  padding-bottom: 0;
}
.cid-tfC8KCNuay .row {
  justify-content: center;
}
.cid-tfC8LkSet6 {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tfC8LkSet6 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tfC8LkSet6 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfC8LkSet6 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfC8LkSet6 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tfC8LkSet6 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f23801;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #f23801, #f7e4d6);
}
.cid-tfC8LkSet6 .icon-focus,
.cid-tfC8LkSet6 .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tfC8LkSet6 .icon-focus:before,
.cid-tfC8LkSet6 .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tfC8LkSet6 .icon-video {
  font-size: 1.5rem !important;
}
.cid-tfC8LkSet6 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tfC8LkSet6 ul {
  font-size: 0;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #f23801 !important;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tfC8LkSet6 .mbr-gallery-filter ul li.active .btn:after {
  border-color: #f23801;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li:first-child,
.cid-tfC8LkSet6 .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tfC8LkSet6 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tfC8LkSet6 .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tfC8LkSet6 .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tfC8LkSet6 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tfC8LkSet6 .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfC8LkSet6 .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-tfC8LkSet6 .mbr-section-title,
.cid-tfC8LkSet6 .mbr-gallery-filter ul {
  color: #14a0a7;
}
.cid-tfC8LkSet6 .mbr-gallery-item > div > span {
  color: #232323;
}
.cid-tfC8qpW0As {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfC8qpW0As .content {
    text-align: center;
  }
  .cid-tfC8qpW0As .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfC8qpW0As .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfC8qpW0As .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfC8qpW0As .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfC8qpW0As .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfC8qpW0As .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfC8qpW0As .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfC8qpW0As .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfC8qpW0As .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfC8qpW0As .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfC8qpW0As .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfC8qpW0As .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfC8qpW0As .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfC8qpW0As .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfC8qpW0As .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfC8qpW0As .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfC8qpW0As H5 {
  color: #0dbe64;
}
.cid-tfTz2rjanm {
  z-index: 1000;
  width: 100%;
}
.cid-tfTz2rjanm nav.navbar {
  position: fixed;
}
.cid-tfTz2rjanm .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-tfTz2rjanm .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfTz2rjanm .dropdown-item:hover,
.cid-tfTz2rjanm .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfTz2rjanm .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfTz2rjanm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfTz2rjanm .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfTz2rjanm .container {
  display: flex;
  margin: auto;
}
.cid-tfTz2rjanm .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfTz2rjanm .dropdown-menu,
.cid-tfTz2rjanm .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfTz2rjanm .nav-item:focus,
.cid-tfTz2rjanm .nav-link:focus {
  outline: none;
}
.cid-tfTz2rjanm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfTz2rjanm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfTz2rjanm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfTz2rjanm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfTz2rjanm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfTz2rjanm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfTz2rjanm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfTz2rjanm .navbar.opened {
  transition: all 0.3s;
}
.cid-tfTz2rjanm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfTz2rjanm .navbar .navbar-logo img {
  width: auto;
}
.cid-tfTz2rjanm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfTz2rjanm .navbar.collapsed {
  justify-content: center;
}
.cid-tfTz2rjanm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfTz2rjanm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfTz2rjanm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfTz2rjanm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfTz2rjanm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfTz2rjanm .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-tfTz2rjanm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfTz2rjanm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfTz2rjanm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfTz2rjanm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfTz2rjanm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfTz2rjanm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfTz2rjanm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfTz2rjanm .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-tfTz2rjanm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfTz2rjanm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfTz2rjanm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfTz2rjanm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfTz2rjanm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfTz2rjanm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfTz2rjanm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfTz2rjanm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfTz2rjanm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfTz2rjanm .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-tfTz2rjanm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfTz2rjanm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfTz2rjanm .dropdown-item.active,
.cid-tfTz2rjanm .dropdown-item:active {
  background-color: transparent;
}
.cid-tfTz2rjanm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfTz2rjanm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfTz2rjanm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfTz2rjanm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfTz2rjanm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfTz2rjanm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfTz2rjanm ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfTz2rjanm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfTz2rjanm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfTz2rjanm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfTz2rjanm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfTz2rjanm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfTz2rjanm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfTz2rjanm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfTz2rjanm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfTz2rjanm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfTz2rjanm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfTz2rjanm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfTz2rjanm .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfTz2rjanm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfTz2rjanm .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-tfTz2rjanm .navbar {
    height: 70px;
  }
  .cid-tfTz2rjanm .navbar.opened {
    height: auto;
  }
  .cid-tfTz2rjanm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfTz2rjanm a {
  display: inline;
}
.cid-tfTz2rjanm img {
  display: inline;
  padding-right: 10px;
}
.cid-tfTz2rjanm .dropdown-toggle:after {
  display: none;
}
.cid-tfTz2rjanm .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfTz2rjanm .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfTz2rjanm .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfTz2rjanm .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfTz2rjanm .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfTz2rjanm .nav-item {
  margin-right: 32px;
}
.cid-tfTz2rjanm .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfTz2rjanm ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfTz2rjanm .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfTz2rjanm .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfTz2rjanm .navbar-nav {
  margin: auto;
}
.cid-tfTz2rjanm .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfTz2rjanm .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfTz2rjanm .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfTz2rjanm .btn {
  border-radius: 1000px !important;
}
.cid-tfTz2rjanm .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfTz2rjanm .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfTz2rjanm .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-tfTz2rjanm .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-tfTz2rjanm .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfTz2rjanm .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfTz2rjanm .top {
    margin-top: 25px;
  }
}
.cid-tfTz2rjanm .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfTz2rjanm .container,
  .cid-tfTz2rjanm .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfTz2rjanm li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfTz2rjanm ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfTz2rjanm .icons-menu {
    min-width: initial !important;
  }
  .cid-tfTz2rjanm a.btn {
    margin-top: 10px;
  }
}
.cid-tfTz2rjanm a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfTz2rQkZi {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tfTz2rQkZi .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfTz2rQkZi .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tfTz2rQkZi .button-align {
  text-align: center;
}
.cid-tfTz2rQkZi .mbr-section-btn {
  display: block;
}
.cid-tfTz2rQkZi .container {
  max-width: 739px;
}
.cid-tfTz2rQkZi .btn {
  margin-top: 20px;
}
.cid-tfTz2rQkZi a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfTz2rQkZi .mbr-text,
.cid-tfTz2rQkZi .button-align {
  text-align: left;
  color: #0d646f;
}
.cid-tfTALF3mrg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfTALF3mrg .mbr-section-subtitle {
  color: #ffeee6;
  text-align: center;
  margin: auto;
  padding: 119px 95px;
  background-color: #14a0a7;
}
.cid-tfTALF3mrg .row {
  align-items: center;
  height: 100%;
}
.cid-tfTALF3mrg .wrapper {
  margin: auto;
}
@media (max-width: 770px) {
  .cid-tfTALF3mrg .mbr-section-subtitle {
    padding: 70px 75px;
  }
}
@media (max-width: 576px) {
  .cid-tfTALF3mrg .mbr-section-subtitle {
    padding: 45px 35px;
  }
}
.cid-tfTz2s7UE7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tfTz2s7UE7 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tfTz2s7UE7 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfTz2s7UE7 .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tfTz2s7UE7 .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tfTz2s7UE7 .right-side {
  max-width: 554px;
}
.cid-tfTz2s7UE7 .rs {
  margin-right: 60px;
}
.cid-tfTz2s7UE7 .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tfTz2s7UE7 .margin {
  margin-right: 14px;
}
.cid-tfTz2s7UE7 .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tfTz2s7UE7 img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tfTz2s7UE7 .gray {
    padding: 0px 0 5px;
  }
  .cid-tfTz2s7UE7 img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tfTz2s7UE7 .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tfTz2s7UE7 .b {
    margin-bottom: 10px;
  }
}
.cid-tfTz2s7UE7 .btn {
  margin-top: 20px;
}
.cid-tfTz2s7UE7 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfTz2s7UE7 .mbr-text,
.cid-tfTz2s7UE7 .button-align {
  color: #0d646f;
}
.cid-tfTC1cWlX6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfTC1cWlX6 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tfTC1cWlX6 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfTC1cWlX6 .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tfTC1cWlX6 .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tfTC1cWlX6 .right-side {
  max-width: 554px;
}
.cid-tfTC1cWlX6 .rs {
  margin-right: 60px;
}
.cid-tfTC1cWlX6 .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tfTC1cWlX6 .margin {
  margin-right: 14px;
}
.cid-tfTC1cWlX6 .gray {
  padding: 45px 0;
  background-color: #14a0a7;
}
.cid-tfTC1cWlX6 img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tfTC1cWlX6 .gray {
    padding: 0px 0 5px;
  }
  .cid-tfTC1cWlX6 img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tfTC1cWlX6 .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tfTC1cWlX6 .b {
    margin-bottom: 10px;
  }
}
.cid-tfTC1cWlX6 .btn {
  margin-top: 20px;
}
.cid-tfTC1cWlX6 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfTC1cWlX6 .row {
  flex-direction: row-reverse;
}
.cid-tfTC1cWlX6 .mbr-text,
.cid-tfTC1cWlX6 .button-align {
  color: #0d646f;
}
.cid-tfTCtIYEmO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfTCtIYEmO .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tfTCtIYEmO .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfTCtIYEmO .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tfTCtIYEmO .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tfTCtIYEmO .right-side {
  max-width: 554px;
}
.cid-tfTCtIYEmO .rs {
  margin-right: 60px;
}
.cid-tfTCtIYEmO .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tfTCtIYEmO .margin {
  margin-right: 14px;
}
.cid-tfTCtIYEmO .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tfTCtIYEmO img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tfTCtIYEmO .gray {
    padding: 0px 0 5px;
  }
  .cid-tfTCtIYEmO img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tfTCtIYEmO .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tfTCtIYEmO .b {
    margin-bottom: 10px;
  }
}
.cid-tfTCtIYEmO .btn {
  margin-top: 20px;
}
.cid-tfTCtIYEmO a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfTCtIYEmO .mbr-text,
.cid-tfTCtIYEmO .button-align {
  color: #0d646f;
}
.cid-tfTDphNFmZ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfTDphNFmZ .mbr-section-subtitle {
  color: #0d646f;
  text-align: left;
  margin: auto;
}
.cid-tfTDphNFmZ .mbr-section-title {
  text-align: center;
  color: #14142b;
  padding-bottom: 24px;
  margin: auto;
}
.cid-tfTDphNFmZ .row {
  align-items: center;
  height: 100%;
}
.cid-tfTDphNFmZ .wrapper {
  margin: auto;
}
.cid-tfTDphNFmZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tfTz2sqkVn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tfTz2sqkVn img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tfTz2sqkVn .title {
  color: #14142b;
  width: auto;
}
.cid-tfTz2sqkVn .row.justify-content-between {
  align-items: center;
}
.cid-tfTz2sqkVn .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tfTz2sqkVn .row.margin:hover {
  transform: scale(1.05);
}
.cid-tfTz2sqkVn .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tfTz2sqkVn .left {
  max-width: 549px;
}
.cid-tfTz2sqkVn .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tfTz2sqkVn .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tfTz2sqkVn .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tfTz2sqkVn .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tfTz2sqkVn .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tfTz2sqkVn .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tfTz2sqkVn .socicon-bg-mail {
  background-color: #134785;
}
.cid-tfTz2sqkVn .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tfTz2sqkVn .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tfTz2sqkVn .btn-social:hover {
  color: #fff;
}
.cid-tfTz2sqkVn .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tfTz2sqkVn .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tfTz2sqkVn .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tfTz2sqkVn .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tfTz2sqkVn .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tfTz2sqkVn .mbr-section-title,
  .cid-tfTz2sqkVn .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tfTz2sqkVn .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tfTz2sqkVn .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tfTz2sqkVn .mbr-iconfont {
  margin-left: 0;
}
.cid-tfTz2sLca3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfTz2sLca3 .content {
    text-align: center;
  }
  .cid-tfTz2sLca3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfTz2sLca3 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfTz2sLca3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfTz2sLca3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfTz2sLca3 .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfTz2sLca3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfTz2sLca3 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfTz2sLca3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfTz2sLca3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfTz2sLca3 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfTz2sLca3 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfTz2sLca3 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfTz2sLca3 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfTz2sLca3 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfTz2sLca3 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfTz2sLca3 .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfTz2sLca3 H5 {
  color: #0dbe64;
}
.cid-tfTFbAASY0 {
  z-index: 1000;
  width: 100%;
}
.cid-tfTFbAASY0 nav.navbar {
  position: fixed;
}
.cid-tfTFbAASY0 .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-tfTFbAASY0 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfTFbAASY0 .dropdown-item:hover,
.cid-tfTFbAASY0 .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfTFbAASY0 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfTFbAASY0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfTFbAASY0 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfTFbAASY0 .container {
  display: flex;
  margin: auto;
}
.cid-tfTFbAASY0 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfTFbAASY0 .dropdown-menu,
.cid-tfTFbAASY0 .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfTFbAASY0 .nav-item:focus,
.cid-tfTFbAASY0 .nav-link:focus {
  outline: none;
}
.cid-tfTFbAASY0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfTFbAASY0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfTFbAASY0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfTFbAASY0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfTFbAASY0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfTFbAASY0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfTFbAASY0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfTFbAASY0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tfTFbAASY0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfTFbAASY0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tfTFbAASY0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfTFbAASY0 .navbar.collapsed {
  justify-content: center;
}
.cid-tfTFbAASY0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfTFbAASY0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfTFbAASY0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfTFbAASY0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfTFbAASY0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfTFbAASY0 .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-tfTFbAASY0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfTFbAASY0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfTFbAASY0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfTFbAASY0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfTFbAASY0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfTFbAASY0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfTFbAASY0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfTFbAASY0 .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-tfTFbAASY0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfTFbAASY0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfTFbAASY0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfTFbAASY0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfTFbAASY0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfTFbAASY0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfTFbAASY0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfTFbAASY0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfTFbAASY0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfTFbAASY0 .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-tfTFbAASY0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfTFbAASY0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfTFbAASY0 .dropdown-item.active,
.cid-tfTFbAASY0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tfTFbAASY0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfTFbAASY0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfTFbAASY0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfTFbAASY0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfTFbAASY0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfTFbAASY0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfTFbAASY0 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfTFbAASY0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfTFbAASY0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfTFbAASY0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfTFbAASY0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfTFbAASY0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfTFbAASY0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfTFbAASY0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfTFbAASY0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfTFbAASY0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfTFbAASY0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfTFbAASY0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfTFbAASY0 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfTFbAASY0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfTFbAASY0 .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-tfTFbAASY0 .navbar {
    height: 70px;
  }
  .cid-tfTFbAASY0 .navbar.opened {
    height: auto;
  }
  .cid-tfTFbAASY0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfTFbAASY0 a {
  display: inline;
}
.cid-tfTFbAASY0 img {
  display: inline;
  padding-right: 10px;
}
.cid-tfTFbAASY0 .dropdown-toggle:after {
  display: none;
}
.cid-tfTFbAASY0 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfTFbAASY0 .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfTFbAASY0 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfTFbAASY0 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfTFbAASY0 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfTFbAASY0 .nav-item {
  margin-right: 32px;
}
.cid-tfTFbAASY0 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfTFbAASY0 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfTFbAASY0 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfTFbAASY0 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfTFbAASY0 .navbar-nav {
  margin: auto;
}
.cid-tfTFbAASY0 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfTFbAASY0 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfTFbAASY0 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfTFbAASY0 .btn {
  border-radius: 1000px !important;
}
.cid-tfTFbAASY0 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfTFbAASY0 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfTFbAASY0 .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-tfTFbAASY0 .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-tfTFbAASY0 .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfTFbAASY0 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfTFbAASY0 .top {
    margin-top: 25px;
  }
}
.cid-tfTFbAASY0 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfTFbAASY0 .container,
  .cid-tfTFbAASY0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfTFbAASY0 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfTFbAASY0 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfTFbAASY0 .icons-menu {
    min-width: initial !important;
  }
  .cid-tfTFbAASY0 a.btn {
    margin-top: 10px;
  }
}
.cid-tfTFbAASY0 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tgFmL0tic1.popup-builder {
  background-color: #ffffff;
}
.cid-tgFmL0tic1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tgFmL0tic1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  height: 100%;
}
.cid-tgFmL0tic1 .modal-content,
.cid-tgFmL0tic1 .modal-dialog {
  height: auto;
}
.cid-tgFmL0tic1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tgFmL0tic1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tgFmL0tic1 .form-wrapper .mbr-form .form-group,
  .cid-tgFmL0tic1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tgFmL0tic1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tgFmL0tic1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tgFmL0tic1 .mbr-text {
  text-align: center;
}
.cid-tgFmL0tic1 .pt-0 {
  padding-top: 0 !important;
}
.cid-tgFmL0tic1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tgFmL0tic1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tgFmL0tic1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tgFmL0tic1 .modal-open {
  overflow: hidden;
}
.cid-tgFmL0tic1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tgFmL0tic1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tgFmL0tic1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
.cid-tgFmL0tic1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tgFmL0tic1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tgFmL0tic1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tgFmL0tic1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tgFmL0tic1 .modal-content {
  background: #050423;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  height: 100%;
  overflow: auto;
}
.cid-tgFmL0tic1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tgFmL0tic1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tgFmL0tic1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tgFmL0tic1 .modal-backdrop.show {
  opacity: .5;
}
.cid-tgFmL0tic1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tgFmL0tic1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tgFmL0tic1 .modal-header {
    padding: 1rem;
  }
}
.cid-tgFmL0tic1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tgFmL0tic1 .modal-header .close svg {
  fill: #ef7208;
}
.cid-tgFmL0tic1 .modal-header .close:hover {
  opacity: 1;
}
.cid-tgFmL0tic1 .modal-header .close:focus {
  outline: none;
}
.cid-tgFmL0tic1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tgFmL0tic1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tgFmL0tic1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgFmL0tic1 .modal-body {
    padding: 1rem;
  }
}
.cid-tgFmL0tic1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tgFmL0tic1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgFmL0tic1 .modal-footer {
    padding: 1rem;
  }
}
.cid-tgFmL0tic1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tgFmL0tic1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tgFmL0tic1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tgFmL0tic1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tgFmL0tic1 .modal-lg,
  .cid-tgFmL0tic1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tgFmL0tic1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tgFmL0tic1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tgFmL0tic1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tgFmL0tic1 .form-group {
  margin-bottom: 1rem;
}
.cid-tgFmL0tic1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tgFmL0tic1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tgFmL0tic1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tgFmL0tic1 .mbr-section-btn {
  margin: 0;
}
.cid-tgFmL0tic1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tfUlqMTvFr {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-onlife.jpg");
}
.cid-tfUlqMTvFr .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfUlqMTvFr .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tfUlqMTvFr .button-align {
  text-align: center;
}
.cid-tfUlqMTvFr .mbr-section-btn {
  display: block;
}
.cid-tfUlqMTvFr .container {
  max-width: 739px;
}
.cid-tfUlqMTvFr .btn {
  margin-top: 20px;
}
.cid-tfUlqMTvFr a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfUlqMTvFr .mbr-text,
.cid-tfUlqMTvFr .button-align {
  color: #ffffff;
}
.cid-tfTFbBGQaV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tfTFbBGQaV .card-heading {
  padding-bottom: 32px;
  color: #ef7208;
}
.cid-tfTFbBGQaV .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tfTFbBGQaV .p:last-child {
  padding-bottom: 0;
}
.cid-tfTFbBGQaV .row {
  justify-content: center;
}
.cid-tfUm8mzRIU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tfUm8mzRIU .card-title {
  padding-bottom: 18px;
  margin: 0;
  color: #14a0a7;
  text-align: left;
}
.cid-tfUm8mzRIU .align-left {
  max-width: 547px;
}
.cid-tfUm8mzRIU .mbr-text,
.cid-tfUm8mzRIU .mbr-section-btn {
  color: #0d646f;
  text-align: left;
}
.cid-tfUm8mzRIU .left-side {
  margin-right: 20px;
}
.cid-tfUm8mzRIU .right-side {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .cid-tfUm8mzRIU .left-side {
    margin-right: 0px;
  }
  .cid-tfUm8mzRIU .right-side {
    padding-top: 20px;
    margin-left: 0px;
  }
}
.cid-tfUm9Sy6va {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fbfbfa;
}
.cid-tfUm9Sy6va .card-heading {
  padding-top: 32px;
  padding-bottom: 16px;
  color: #14a0a7;
}
.cid-tfUm9Sy6va .p1 {
  padding-bottom: 24px;
  color: #272727;
}
.cid-tfUm9Sy6va .p {
  color: #0d646f;
}
.cid-tfUm9Sy6va .p:last-child {
  padding-bottom: 0;
}
.cid-tfUm9Sy6va .row {
  justify-content: center;
}
.cid-tfUm9Sy6va .heading {
  padding-bottom: 24px;
  text-align: center;
  color: #14a0a7;
}
.cid-tfUoiyFCxd {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tfUoiyFCxd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfUoiyFCxd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfUoiyFCxd .container {
  max-width: 1280px;
}
.cid-tfUoiyFCxd .row {
  justify-content: center;
}
.cid-tfUoiyFCxd .col-title {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .cid-tfUoiyFCxd .col-title {
    margin-bottom: 50px;
  }
}
.cid-tfUoiyFCxd .mbr-section-title {
  color: #FFDD65;
}
.cid-tfUoiyFCxd .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tfUoiyFCxd .col-video {
  display: flex;
}
.cid-tfUoiyFCxd .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.76rem;
}
@media (max-width: 767px) {
  .cid-tfUoiyFCxd .col-video {
    height: 350px;
  }
}
.cid-tfUoiyFCxd .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 2.08rem;
  position: relative;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  padding: 5px;
}
.cid-tfUoiyFCxd .col-video .box .box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.08rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-tfUoiyFCxd .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-tfUoiyFCxd .col-video .link {
  margin-right: 1rem;
}
.cid-tfUoiyFCxd .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1.76rem;
  overflow: hidden;
}
.cid-tfUoiyFCxd .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-tfUoiyFCxd .mbr-media {
  position: relative;
}
.cid-tfUoiyFCxd .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tfUoiyFCxd .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-tfUoiyFCxd .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-tfUoiyFCxd .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tfUoiyFCxd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tfUoiyFCxd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tfUoiyFCxd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tfUoiyFCxd .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tfUoiyFCxd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tfUoiyFCxd a:hover {
  text-decoration-line: none !important;
}
.cid-tfTFbCUe4U {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfTFbCUe4U .content {
    text-align: center;
  }
  .cid-tfTFbCUe4U .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfTFbCUe4U .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfTFbCUe4U .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfTFbCUe4U .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfTFbCUe4U .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfTFbCUe4U .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfTFbCUe4U .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfTFbCUe4U .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfTFbCUe4U .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfTFbCUe4U .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfTFbCUe4U .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfTFbCUe4U .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfTFbCUe4U .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfTFbCUe4U .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfTFbCUe4U .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfTFbCUe4U .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfTFbCUe4U H5 {
  color: #0dbe64;
}
.cid-tfUuahCfCl {
  z-index: 1000;
  width: 100%;
}
.cid-tfUuahCfCl nav.navbar {
  position: fixed;
}
.cid-tfUuahCfCl .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-tfUuahCfCl .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfUuahCfCl .dropdown-item:hover,
.cid-tfUuahCfCl .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfUuahCfCl .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfUuahCfCl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfUuahCfCl .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfUuahCfCl .container {
  display: flex;
  margin: auto;
}
.cid-tfUuahCfCl .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfUuahCfCl .dropdown-menu,
.cid-tfUuahCfCl .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfUuahCfCl .nav-item:focus,
.cid-tfUuahCfCl .nav-link:focus {
  outline: none;
}
.cid-tfUuahCfCl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfUuahCfCl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfUuahCfCl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfUuahCfCl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfUuahCfCl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfUuahCfCl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfUuahCfCl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfUuahCfCl .navbar.opened {
  transition: all 0.3s;
}
.cid-tfUuahCfCl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfUuahCfCl .navbar .navbar-logo img {
  width: auto;
}
.cid-tfUuahCfCl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfUuahCfCl .navbar.collapsed {
  justify-content: center;
}
.cid-tfUuahCfCl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfUuahCfCl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfUuahCfCl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfUuahCfCl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfUuahCfCl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfUuahCfCl .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-tfUuahCfCl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfUuahCfCl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfUuahCfCl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfUuahCfCl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfUuahCfCl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfUuahCfCl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfUuahCfCl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfUuahCfCl .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-tfUuahCfCl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfUuahCfCl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfUuahCfCl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfUuahCfCl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfUuahCfCl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfUuahCfCl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfUuahCfCl .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfUuahCfCl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfUuahCfCl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfUuahCfCl .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-tfUuahCfCl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfUuahCfCl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfUuahCfCl .dropdown-item.active,
.cid-tfUuahCfCl .dropdown-item:active {
  background-color: transparent;
}
.cid-tfUuahCfCl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfUuahCfCl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfUuahCfCl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfUuahCfCl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfUuahCfCl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfUuahCfCl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfUuahCfCl ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfUuahCfCl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfUuahCfCl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfUuahCfCl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfUuahCfCl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfUuahCfCl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfUuahCfCl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfUuahCfCl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfUuahCfCl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfUuahCfCl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfUuahCfCl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfUuahCfCl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfUuahCfCl .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfUuahCfCl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfUuahCfCl .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-tfUuahCfCl .navbar {
    height: 70px;
  }
  .cid-tfUuahCfCl .navbar.opened {
    height: auto;
  }
  .cid-tfUuahCfCl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfUuahCfCl a {
  display: inline;
}
.cid-tfUuahCfCl img {
  display: inline;
  padding-right: 10px;
}
.cid-tfUuahCfCl .dropdown-toggle:after {
  display: none;
}
.cid-tfUuahCfCl .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfUuahCfCl .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfUuahCfCl .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfUuahCfCl .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfUuahCfCl .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfUuahCfCl .nav-item {
  margin-right: 32px;
}
.cid-tfUuahCfCl .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfUuahCfCl ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfUuahCfCl .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfUuahCfCl .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfUuahCfCl .navbar-nav {
  margin: auto;
}
.cid-tfUuahCfCl .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfUuahCfCl .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfUuahCfCl .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfUuahCfCl .btn {
  border-radius: 1000px !important;
}
.cid-tfUuahCfCl .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfUuahCfCl .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfUuahCfCl .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-tfUuahCfCl .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-tfUuahCfCl .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfUuahCfCl .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfUuahCfCl .top {
    margin-top: 25px;
  }
}
.cid-tfUuahCfCl .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfUuahCfCl .container,
  .cid-tfUuahCfCl .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfUuahCfCl li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfUuahCfCl ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfUuahCfCl .icons-menu {
    min-width: initial !important;
  }
  .cid-tfUuahCfCl a.btn {
    margin-top: 10px;
  }
}
.cid-tfUuahCfCl a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfUuaiaRl2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-stagioni.jpg");
}
.cid-tfUuaiaRl2 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfUuaiaRl2 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tfUuaiaRl2 .button-align {
  text-align: center;
}
.cid-tfUuaiaRl2 .mbr-section-btn {
  display: block;
}
.cid-tfUuaiaRl2 .container {
  max-width: 739px;
}
.cid-tfUuaiaRl2 .btn {
  margin-top: 20px;
}
.cid-tfUuaiaRl2 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfUuaiaRl2 .mbr-text,
.cid-tfUuaiaRl2 .button-align {
  text-align: left;
}
.cid-tfUuaisLA3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfUuaisLA3 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tfUuaisLA3 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfUuaisLA3 .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tfUuaisLA3 .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tfUuaisLA3 .right-side {
  max-width: 554px;
}
.cid-tfUuaisLA3 .rs {
  margin-right: 60px;
}
.cid-tfUuaisLA3 .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tfUuaisLA3 .margin {
  margin-right: 14px;
}
.cid-tfUuaisLA3 .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tfUuaisLA3 img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tfUuaisLA3 .gray {
    padding: 0px 0 5px;
  }
  .cid-tfUuaisLA3 img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tfUuaisLA3 .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tfUuaisLA3 .b {
    margin-bottom: 10px;
  }
}
.cid-tfUuaisLA3 .btn {
  margin-top: 20px;
}
.cid-tfUuaisLA3 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfUuaisLA3 .mbr-text,
.cid-tfUuaisLA3 .button-align {
  color: #0d646f;
}
.cid-tP0kqbcgko {
  background-color: #ffffff;
}
.cid-tP0kqbcgko .mbr-section-head {
  position: absolute;
  transform: translate(2rem, 0rem) rotate(-90deg);
}
@media (max-width: 767px) {
  .cid-tP0kqbcgko .mbr-section-head {
    transform: translate(-1rem, 0rem) rotate(-90deg);
  }
}
.cid-tP0kqbcgko .wrap {
  padding: 0 1rem;
}
.cid-tP0kqbcgko .mbr-text {
  min-height: 250px;
  text-align: left;
}
.cid-tP0kqbcgko img,
.cid-tP0kqbcgko .item-img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-tP0kqbcgko img,
  .cid-tP0kqbcgko .item-img {
    height: 420px;
  }
}
.cid-tP0kqbcgko .col-10,
.cid-tP0kqbcgko .col-2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-tP0kqbcgko .col-10 {
  background-color: #ffffff;
}
.cid-tP0kqbcgko .item:focus,
.cid-tP0kqbcgko span:focus {
  outline: none;
}
.cid-tP0kqbcgko .item-wrapper {
  position: relative;
}
.cid-tP0kqbcgko .embla {
  position: relative;
}
.cid-tP0kqbcgko .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tP0kqbcgko .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 500px;
  max-width: 500px;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .cid-tP0kqbcgko .embla__slide {
    min-width: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .cid-tP0kqbcgko .embla__slide {
    min-width: 235px;
    max-width: 235px;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-tP0kqbcgko .embla__button--next,
.cid-tP0kqbcgko .embla__button--prev {
  display: flex;
}
.cid-tP0kqbcgko .btnSlider {
  display: flex;
  justify-content: flex-end;
}
.cid-tP0kqbcgko .embla__button {
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #0d646f;
  border: 1px solid #0d646f;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tP0kqbcgko .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tP0kqbcgko .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tP0kqbcgko .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tP0kqbcgko .embla__button {
    top: auto;
  }
}
.cid-tP0kqbcgko .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tP0kqbcgko .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 992px) {
  .cid-tP0kqbcgko .mbr-section-title {
    font-size: 64px;
  }
}
.cid-tP0kqbcgko .mbr-subtitle {
  color: #0d646f;
}
.cid-tP0kqbcgko .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-tP0kqbcgko .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-tP0kqbcgko .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-tP0kqbcgko .mbr-title {
  color: #14a0a7;
}
.cid-tP0kqbcgko .mbr-text,
.cid-tP0kqbcgko .link-title {
  color: #023b42;
}
.cid-tP0kqbcgko .mbr-section-subtitle {
  color: #14a0a7;
}
.cid-tP4xBTzVqH {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP4xBTzVqH .mbr-section-subtitle {
  color: #0d646f;
  text-align: left;
  margin: auto;
}
.cid-tP4xBTzVqH .mbr-section-title {
  text-align: center;
  color: #14a0a7;
  padding-bottom: 24px;
  margin: auto;
}
.cid-tP4xBTzVqH .row {
  align-items: center;
  height: 100%;
}
.cid-tP4xBTzVqH .wrapper {
  margin: auto;
}
.cid-tfUuaiMZed {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tfUuaiMZed img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tfUuaiMZed .title {
  color: #14142b;
  width: auto;
}
.cid-tfUuaiMZed .row.justify-content-between {
  align-items: center;
}
.cid-tfUuaiMZed .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tfUuaiMZed .row.margin:hover {
  transform: scale(1.05);
}
.cid-tfUuaiMZed .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tfUuaiMZed .left {
  max-width: 549px;
}
.cid-tfUuaiMZed .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tfUuaiMZed .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tfUuaiMZed .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tfUuaiMZed .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tfUuaiMZed .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tfUuaiMZed .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tfUuaiMZed .socicon-bg-mail {
  background-color: #134785;
}
.cid-tfUuaiMZed .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tfUuaiMZed .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tfUuaiMZed .btn-social:hover {
  color: #fff;
}
.cid-tfUuaiMZed .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tfUuaiMZed .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tfUuaiMZed .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tfUuaiMZed .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tfUuaiMZed .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tfUuaiMZed .mbr-section-title,
  .cid-tfUuaiMZed .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tfUuaiMZed .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tfUuaiMZed .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tfUuaiMZed .mbr-iconfont {
  margin-left: 0;
}
.cid-tfUuaj97vE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfUuaj97vE .content {
    text-align: center;
  }
  .cid-tfUuaj97vE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfUuaj97vE .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfUuaj97vE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfUuaj97vE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfUuaj97vE .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfUuaj97vE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfUuaj97vE .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfUuaj97vE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfUuaj97vE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfUuaj97vE .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfUuaj97vE .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfUuaj97vE .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfUuaj97vE .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfUuaj97vE .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfUuaj97vE .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfUuaj97vE .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfUuaj97vE H5 {
  color: #0dbe64;
}
.cid-tfV6b7rBGZ {
  z-index: 1000;
  width: 100%;
}
.cid-tfV6b7rBGZ nav.navbar {
  position: fixed;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfV6b7rBGZ .dropdown-item:hover,
.cid-tfV6b7rBGZ .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfV6b7rBGZ .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfV6b7rBGZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfV6b7rBGZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfV6b7rBGZ .container {
  display: flex;
  margin: auto;
}
.cid-tfV6b7rBGZ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfV6b7rBGZ .dropdown-menu,
.cid-tfV6b7rBGZ .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfV6b7rBGZ .nav-item:focus,
.cid-tfV6b7rBGZ .nav-link:focus {
  outline: none;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfV6b7rBGZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfV6b7rBGZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfV6b7rBGZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfV6b7rBGZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tfV6b7rBGZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfV6b7rBGZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tfV6b7rBGZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfV6b7rBGZ .navbar.collapsed {
  justify-content: center;
}
.cid-tfV6b7rBGZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfV6b7rBGZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfV6b7rBGZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfV6b7rBGZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfV6b7rBGZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfV6b7rBGZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfV6b7rBGZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfV6b7rBGZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfV6b7rBGZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfV6b7rBGZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfV6b7rBGZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfV6b7rBGZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfV6b7rBGZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfV6b7rBGZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfV6b7rBGZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfV6b7rBGZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfV6b7rBGZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfV6b7rBGZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfV6b7rBGZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfV6b7rBGZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfV6b7rBGZ .dropdown-item.active,
.cid-tfV6b7rBGZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tfV6b7rBGZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfV6b7rBGZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfV6b7rBGZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfV6b7rBGZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfV6b7rBGZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfV6b7rBGZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfV6b7rBGZ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfV6b7rBGZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfV6b7rBGZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfV6b7rBGZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar {
    height: 70px;
  }
  .cid-tfV6b7rBGZ .navbar.opened {
    height: auto;
  }
  .cid-tfV6b7rBGZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfV6b7rBGZ a {
  display: inline;
}
.cid-tfV6b7rBGZ img {
  display: inline;
  padding-right: 10px;
}
.cid-tfV6b7rBGZ .dropdown-toggle:after {
  display: none;
}
.cid-tfV6b7rBGZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfV6b7rBGZ .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfV6b7rBGZ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfV6b7rBGZ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfV6b7rBGZ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfV6b7rBGZ .nav-item {
  margin-right: 32px;
}
.cid-tfV6b7rBGZ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfV6b7rBGZ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfV6b7rBGZ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfV6b7rBGZ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfV6b7rBGZ .navbar-nav {
  margin: auto;
}
.cid-tfV6b7rBGZ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfV6b7rBGZ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfV6b7rBGZ .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfV6b7rBGZ .btn {
  border-radius: 1000px !important;
}
.cid-tfV6b7rBGZ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfV6b7rBGZ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .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-tfV6b7rBGZ .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfV6b7rBGZ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfV6b7rBGZ .top {
    margin-top: 25px;
  }
}
.cid-tfV6b7rBGZ .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfV6b7rBGZ .container,
  .cid-tfV6b7rBGZ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfV6b7rBGZ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfV6b7rBGZ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfV6b7rBGZ .icons-menu {
    min-width: initial !important;
  }
  .cid-tfV6b7rBGZ a.btn {
    margin-top: 10px;
  }
}
.cid-tfV6b7rBGZ a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfV6b7MWPy {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/head-sotriaesempio.jpg");
}
.cid-tfV6b7MWPy .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfV6b7MWPy .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tfV6b7MWPy .button-align {
  text-align: center;
}
.cid-tfV6b7MWPy .mbr-section-btn {
  display: block;
}
.cid-tfV6b7MWPy .container {
  max-width: 739px;
}
.cid-tfV6b7MWPy .btn {
  margin-top: 20px;
}
.cid-tfV6b7MWPy a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfV6b7MWPy .mbr-text,
.cid-tfV6b7MWPy .button-align {
  text-align: center;
  color: #0d646f;
}
.cid-tfV6b80txA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tfV6b80txA .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tfV6b80txA .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tfV6b80txA .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tfV6b80txA .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tfV6b80txA .right-side {
  max-width: 554px;
}
.cid-tfV6b80txA .rs {
  margin-right: 60px;
}
.cid-tfV6b80txA .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tfV6b80txA .margin {
  margin-right: 14px;
}
.cid-tfV6b80txA .gray {
  padding: 45px 0;
  background-color: #0d646f;
}
.cid-tfV6b80txA img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tfV6b80txA .gray {
    padding: 0px 0 5px;
  }
  .cid-tfV6b80txA img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tfV6b80txA .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tfV6b80txA .b {
    margin-bottom: 10px;
  }
}
.cid-tfV6b80txA .btn {
  margin-top: 20px;
}
.cid-tfV6b80txA a.btn > span {
  margin-left: 0.5rem;
}
.cid-tfV6b80txA .mbr-text,
.cid-tfV6b80txA .button-align {
  color: #0d646f;
}
.cid-thC9trA0bs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f5f4f4;
}
.cid-thC9trA0bs .row {
  align-items: center;
  justify-content: space-between;
}
.cid-thC9trA0bs .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  color: #14a0a7;
}
.cid-thC9trA0bs .mbr-text {
  color: #8c8c95;
  margin-bottom: 32px;
}
.cid-thC9trA0bs .mbr-section-btn {
  width: auto;
  display: block;
}
.cid-thC9trA0bs ul {
  padding-inline-start: 20px;
  margin-bottom: 28px;
}
.cid-thC9trA0bs li::marker {
  color: #fedb01;
  width: 10px;
}
.cid-thC9trA0bs li {
  margin-bottom: 7px;
  color: #14142b;
}
.cid-thC9trA0bs img {
  width: 90%;
}
.cid-thC9trA0bs .gray {
  background-color: #eff0f6;
  width: 80%;
  height: 430px;
  margin: auto;
  position: relative;
}
.cid-thC9trA0bs .b {
  max-width: 598px;
}
.cid-thC9trA0bs .first {
  position: absolute;
  top: -10%;
  right: 25%;
}
.cid-thC9trA0bs .second {
  position: absolute;
  bottom: -10%;
  left: 25%;
}
@media (max-width: 992px) {
  .cid-thC9trA0bs .t {
    padding-top: 90px;
  }
  .cid-thC9trA0bs .b {
    max-width: initial;
  }
  .cid-thC9trA0bs .gray {
    width: 50%;
  }
}
@media (max-width: 750px) {
  .cid-thC9trA0bs .gray {
    height: 330px;
  }
}
@media (max-width: 630px) {
  .cid-thC9trA0bs .gray {
    height: 230px;
  }
}
@media (max-width: 450px) {
  .cid-thC9trA0bs .gray {
    height: 200px;
    width: 70%;
  }
}
.cid-thC9trA0bs .btn {
  margin-top: 20px;
}
.cid-thC9trA0bs .t {
  max-width: 542px;
}
.cid-thC9trA0bs .mbr-text,
.cid-thC9trA0bs .button-align,
.cid-thC9trA0bs .list {
  color: #0d646f;
}
.cid-thCctVwabJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f5f4f4;
}
.cid-thCctVwabJ .card-heading {
  padding-bottom: 32px;
  color: #14a0a7;
}
.cid-thCctVwabJ .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-thCctVwabJ .p:last-child {
  padding-bottom: 0;
}
.cid-thCctVwabJ .row {
  justify-content: center;
}
.cid-tfV6b8hGVj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f5f4f4;
}
.cid-tfV6b8hGVj img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tfV6b8hGVj .title {
  color: #14142b;
  width: auto;
}
.cid-tfV6b8hGVj .row.justify-content-between {
  align-items: center;
}
.cid-tfV6b8hGVj .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tfV6b8hGVj .row.margin:hover {
  transform: scale(1.05);
}
.cid-tfV6b8hGVj .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tfV6b8hGVj .left {
  max-width: 549px;
}
.cid-tfV6b8hGVj .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tfV6b8hGVj .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tfV6b8hGVj .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tfV6b8hGVj .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tfV6b8hGVj .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tfV6b8hGVj .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tfV6b8hGVj .socicon-bg-mail {
  background-color: #134785;
}
.cid-tfV6b8hGVj .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tfV6b8hGVj .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tfV6b8hGVj .btn-social:hover {
  color: #fff;
}
.cid-tfV6b8hGVj .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tfV6b8hGVj .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tfV6b8hGVj .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tfV6b8hGVj .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tfV6b8hGVj .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tfV6b8hGVj .mbr-section-title,
  .cid-tfV6b8hGVj .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tfV6b8hGVj .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tfV6b8hGVj .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tfV6b8hGVj .mbr-iconfont {
  margin-left: 0;
}
.cid-tfV6b8AlI6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfV6b8AlI6 .content {
    text-align: center;
  }
  .cid-tfV6b8AlI6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfV6b8AlI6 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfV6b8AlI6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfV6b8AlI6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfV6b8AlI6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfV6b8AlI6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfV6b8AlI6 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfV6b8AlI6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfV6b8AlI6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfV6b8AlI6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfV6b8AlI6 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfV6b8AlI6 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfV6b8AlI6 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfV6b8AlI6 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfV6b8AlI6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfV6b8AlI6 .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfV6b8AlI6 H5 {
  color: #0dbe64;
}
.cid-tifhXgg3DX {
  z-index: 1000;
  width: 100%;
}
.cid-tifhXgg3DX nav.navbar {
  position: fixed;
}
.cid-tifhXgg3DX .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-tifhXgg3DX .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifhXgg3DX .dropdown-item:hover,
.cid-tifhXgg3DX .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifhXgg3DX .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifhXgg3DX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifhXgg3DX .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifhXgg3DX .container {
  display: flex;
  margin: auto;
}
.cid-tifhXgg3DX .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifhXgg3DX .dropdown-menu,
.cid-tifhXgg3DX .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifhXgg3DX .nav-item:focus,
.cid-tifhXgg3DX .nav-link:focus {
  outline: none;
}
.cid-tifhXgg3DX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifhXgg3DX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifhXgg3DX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifhXgg3DX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifhXgg3DX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifhXgg3DX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifhXgg3DX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifhXgg3DX .navbar.opened {
  transition: all 0.3s;
}
.cid-tifhXgg3DX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifhXgg3DX .navbar .navbar-logo img {
  width: auto;
}
.cid-tifhXgg3DX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifhXgg3DX .navbar.collapsed {
  justify-content: center;
}
.cid-tifhXgg3DX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifhXgg3DX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifhXgg3DX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifhXgg3DX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifhXgg3DX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifhXgg3DX .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-tifhXgg3DX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifhXgg3DX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifhXgg3DX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifhXgg3DX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifhXgg3DX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifhXgg3DX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifhXgg3DX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifhXgg3DX .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-tifhXgg3DX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifhXgg3DX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifhXgg3DX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifhXgg3DX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifhXgg3DX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifhXgg3DX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifhXgg3DX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifhXgg3DX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifhXgg3DX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifhXgg3DX .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-tifhXgg3DX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifhXgg3DX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifhXgg3DX .dropdown-item.active,
.cid-tifhXgg3DX .dropdown-item:active {
  background-color: transparent;
}
.cid-tifhXgg3DX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifhXgg3DX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifhXgg3DX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifhXgg3DX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifhXgg3DX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifhXgg3DX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifhXgg3DX ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifhXgg3DX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifhXgg3DX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifhXgg3DX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifhXgg3DX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifhXgg3DX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifhXgg3DX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifhXgg3DX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifhXgg3DX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifhXgg3DX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifhXgg3DX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifhXgg3DX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifhXgg3DX .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifhXgg3DX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifhXgg3DX .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-tifhXgg3DX .navbar {
    height: 70px;
  }
  .cid-tifhXgg3DX .navbar.opened {
    height: auto;
  }
  .cid-tifhXgg3DX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifhXgg3DX a {
  display: inline;
}
.cid-tifhXgg3DX img {
  display: inline;
  padding-right: 10px;
}
.cid-tifhXgg3DX .dropdown-toggle:after {
  display: none;
}
.cid-tifhXgg3DX .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifhXgg3DX .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifhXgg3DX .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifhXgg3DX .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifhXgg3DX .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifhXgg3DX .nav-item {
  margin-right: 32px;
}
.cid-tifhXgg3DX .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifhXgg3DX ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifhXgg3DX .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifhXgg3DX .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifhXgg3DX .navbar-nav {
  margin: auto;
}
.cid-tifhXgg3DX .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifhXgg3DX .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifhXgg3DX .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifhXgg3DX .btn {
  border-radius: 1000px !important;
}
.cid-tifhXgg3DX .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifhXgg3DX .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifhXgg3DX .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-tifhXgg3DX .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-tifhXgg3DX .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifhXgg3DX .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifhXgg3DX .top {
    margin-top: 25px;
  }
}
.cid-tifhXgg3DX .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifhXgg3DX .container,
  .cid-tifhXgg3DX .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifhXgg3DX li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifhXgg3DX ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifhXgg3DX .icons-menu {
    min-width: initial !important;
  }
  .cid-tifhXgg3DX a.btn {
    margin-top: 10px;
  }
}
.cid-tifhXgg3DX a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifhXgPGk8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/stagioninterno1-1920x1001.jpg");
}
.cid-tifhXgPGk8 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #ffffff;
}
.cid-tifhXgPGk8 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifhXgPGk8 .button-align {
  text-align: center;
}
.cid-tifhXgPGk8 .mbr-section-btn {
  display: block;
}
.cid-tifhXgPGk8 .container {
  max-width: 739px;
}
.cid-tifhXgPGk8 .btn {
  margin-top: 20px;
}
.cid-tifhXgPGk8 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifhXgPGk8 .mbr-text,
.cid-tifhXgPGk8 .button-align {
  text-align: center;
  color: #f7f7f7;
}
.cid-tifhXjA10H {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stagioninterno3-1920x1001.jpg");
}
.cid-tifhXjA10H .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tifhXjA10H .panel-title {
  display: flex;
  align-items: center;
}
.cid-tifhXjA10H .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #e5570f;
}
.cid-tifhXjA10H .panel-body,
.cid-tifhXjA10H .card-header {
  padding: 1rem 0;
}
.cid-tifhXjA10H .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-tifhXjA10H .panel-title-edit {
  color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-tifhXjA10H .panel-text {
  max-width: 466px;
  color: #ffffff;
}
.cid-tifhXjA10H .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-tifhXjA10H .section-head {
  margin-bottom: 56px;
}
.cid-tifhXjA10H .card {
  margin-bottom: 32px;
}
.cid-tifhXjA10H H3 {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-tifhXjA10H .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-tifhXjA10H .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tifkid6ufL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/stagioninterno3-1920x1001.jpg");
}
.cid-tifkid6ufL .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tifkid6ufL .panel-title {
  display: flex;
  align-items: center;
}
.cid-tifkid6ufL .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #acaebd;
}
.cid-tifkid6ufL .panel-body,
.cid-tifkid6ufL .card-header {
  padding: 1rem 0;
}
.cid-tifkid6ufL .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-tifkid6ufL .panel-title-edit {
  color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-tifkid6ufL .panel-text {
  max-width: 466px;
  color: #ffffff;
}
.cid-tifkid6ufL .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-tifkid6ufL .section-head {
  margin-bottom: 56px;
}
.cid-tifkid6ufL .card {
  margin-bottom: 32px;
}
.cid-tifkid6ufL H3 {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-tifkid6ufL .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-tifkid6ufL .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tifqVAiM5c {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tifqVAiM5c .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-tifqVAiM5c .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifqVAiM5c .button-align {
  text-align: center;
}
.cid-tifqVAiM5c .mbr-section-btn {
  display: block;
}
.cid-tifqVAiM5c .container {
  max-width: 739px;
}
.cid-tifqVAiM5c .btn {
  margin-top: 20px;
}
.cid-tifqVAiM5c a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifqVAiM5c .mbr-text,
.cid-tifqVAiM5c .button-align {
  color: #0d646f;
}
.cid-tifhXk4myZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifhXk4myZ .content {
    text-align: center;
  }
  .cid-tifhXk4myZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifhXk4myZ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifhXk4myZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifhXk4myZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifhXk4myZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifhXk4myZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifhXk4myZ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifhXk4myZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifhXk4myZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifhXk4myZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifhXk4myZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifhXk4myZ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifhXk4myZ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifhXk4myZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifhXk4myZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifhXk4myZ .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifhXk4myZ H5 {
  color: #0dbe64;
}
.cid-tifHZLJJGy {
  z-index: 1000;
  width: 100%;
}
.cid-tifHZLJJGy nav.navbar {
  position: fixed;
}
.cid-tifHZLJJGy .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-tifHZLJJGy .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifHZLJJGy .dropdown-item:hover,
.cid-tifHZLJJGy .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifHZLJJGy .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifHZLJJGy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifHZLJJGy .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifHZLJJGy .container {
  display: flex;
  margin: auto;
}
.cid-tifHZLJJGy .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifHZLJJGy .dropdown-menu,
.cid-tifHZLJJGy .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifHZLJJGy .nav-item:focus,
.cid-tifHZLJJGy .nav-link:focus {
  outline: none;
}
.cid-tifHZLJJGy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifHZLJJGy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifHZLJJGy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifHZLJJGy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifHZLJJGy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifHZLJJGy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifHZLJJGy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifHZLJJGy .navbar.opened {
  transition: all 0.3s;
}
.cid-tifHZLJJGy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifHZLJJGy .navbar .navbar-logo img {
  width: auto;
}
.cid-tifHZLJJGy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifHZLJJGy .navbar.collapsed {
  justify-content: center;
}
.cid-tifHZLJJGy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifHZLJJGy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifHZLJJGy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifHZLJJGy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifHZLJJGy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifHZLJJGy .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-tifHZLJJGy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifHZLJJGy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifHZLJJGy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifHZLJJGy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifHZLJJGy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifHZLJJGy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifHZLJJGy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifHZLJJGy .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-tifHZLJJGy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifHZLJJGy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifHZLJJGy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifHZLJJGy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifHZLJJGy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifHZLJJGy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifHZLJJGy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifHZLJJGy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifHZLJJGy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifHZLJJGy .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-tifHZLJJGy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifHZLJJGy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifHZLJJGy .dropdown-item.active,
.cid-tifHZLJJGy .dropdown-item:active {
  background-color: transparent;
}
.cid-tifHZLJJGy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifHZLJJGy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifHZLJJGy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifHZLJJGy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifHZLJJGy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifHZLJJGy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifHZLJJGy ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifHZLJJGy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifHZLJJGy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifHZLJJGy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifHZLJJGy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifHZLJJGy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifHZLJJGy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifHZLJJGy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifHZLJJGy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifHZLJJGy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifHZLJJGy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifHZLJJGy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifHZLJJGy .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifHZLJJGy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifHZLJJGy .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-tifHZLJJGy .navbar {
    height: 70px;
  }
  .cid-tifHZLJJGy .navbar.opened {
    height: auto;
  }
  .cid-tifHZLJJGy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifHZLJJGy a {
  display: inline;
}
.cid-tifHZLJJGy img {
  display: inline;
  padding-right: 10px;
}
.cid-tifHZLJJGy .dropdown-toggle:after {
  display: none;
}
.cid-tifHZLJJGy .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifHZLJJGy .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifHZLJJGy .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifHZLJJGy .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifHZLJJGy .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifHZLJJGy .nav-item {
  margin-right: 32px;
}
.cid-tifHZLJJGy .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifHZLJJGy ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifHZLJJGy .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifHZLJJGy .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifHZLJJGy .navbar-nav {
  margin: auto;
}
.cid-tifHZLJJGy .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifHZLJJGy .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifHZLJJGy .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifHZLJJGy .btn {
  border-radius: 1000px !important;
}
.cid-tifHZLJJGy .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifHZLJJGy .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifHZLJJGy .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-tifHZLJJGy .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-tifHZLJJGy .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifHZLJJGy .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifHZLJJGy .top {
    margin-top: 25px;
  }
}
.cid-tifHZLJJGy .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifHZLJJGy .container,
  .cid-tifHZLJJGy .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifHZLJJGy li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifHZLJJGy ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifHZLJJGy .icons-menu {
    min-width: initial !important;
  }
  .cid-tifHZLJJGy a.btn {
    margin-top: 10px;
  }
}
.cid-tifHZLJJGy a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifHZMbha7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-5.png");
}
.cid-tifHZMbha7 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tifHZMbha7 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifHZMbha7 .button-align {
  text-align: center;
}
.cid-tifHZMbha7 .mbr-section-btn {
  display: block;
}
.cid-tifHZMbha7 .container {
  max-width: 739px;
}
.cid-tifHZMbha7 .btn {
  margin-top: 20px;
}
.cid-tifHZMbha7 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifHZMbha7 .mbr-text,
.cid-tifHZMbha7 .button-align {
  text-align: left;
  color: #ffe3e1;
}
.cid-tifHZMRXjC {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tifHZMRXjC .mbr-section-subtitle {
  text-align: center;
  color: #ef7208;
}
.cid-tifHZMRXjC .title-block {
  justify-content: space-between;
  margin: auto;
  margin-bottom: 58px;
  align-items: center;
  max-width: 571px;
}
.cid-tifHZMRXjC .card-title {
  color: #4c4c4c;
  text-align: left;
  margin-bottom: 16px;
}
.cid-tifHZMRXjC H3 {
  color: #1d1d1f;
}
.cid-tifHZMRXjC .card-subtitle {
  text-align: left;
}
.cid-tifHZMRXjC .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-tifHZMRXjC .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tifHZMRXjC .card-title,
.cid-tifHZMRXjC .iconfont-wrapper {
  text-align: center;
  color: #14142b;
}
.cid-tifHZMRXjC .mbr-section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tifHZMRXjC .card-text {
  color: #8c8c95;
}
.cid-tifHZMRXjC .year-title {
  text-align: center;
  color: #ef7208;
  margin-bottom: 20px;
  position: relative;
}
.cid-tifHZMRXjC .year-subtitle {
  text-align: center;
  color: #0d646f;
}
.cid-tifHZMRXjC .line {
  width: 20px;
  background-color: #e2e3e9;
  height: 2px;
  margin-top: -20px;
}
.cid-tifHZMRXjC .accent {
  width: 25px;
  min-height: 25px;
  min-width: 25px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  border-radius: 1000px;
}
.cid-tifHZMRXjC .accent1 {
  background-color: #b77cd8;
}
.cid-tifHZMRXjC .accent2 {
  background-color: #925bb0;
}
.cid-tifHZMRXjC .accent3 {
  background-color: #6c38ff;
}
.cid-tifHZMRXjC .accent4 {
  background-color: #ff9417;
}
.cid-tifHZMRXjC .accent5 {
  background-color: #4cc9f0;
}
.cid-tifHZMRXjC .timeline {
  align-items: center;
}
.cid-tifHZMRXjC .year-title:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: none;
  margin: 11px 40px 0px 0px;
  border-style: solid;
  border-width: 5px;
  border-color: #fff;
  position: absolute;
  left: -40px;
  top: 15px;
}
.cid-tifHZMRXjC .year-title.year1:before {
  background-color: #b77cd8;
}
.cid-tifHZMRXjC .year-title.year2:before {
  background-color: #925bb0;
}
.cid-tifHZMRXjC .year-title.year3:before {
  background-color: #6c38ff;
}
.cid-tifHZMRXjC .year-title.year4:before {
  background-color: #ff9417;
}
.cid-tifHZMRXjC .year-title.year5:before {
  background-color: #4cc9f0;
}
.cid-tifHZMRXjC .timeline-year-accent {
  width: 25px;
  min-height: 25px;
}
@media (max-width: 1120px) {
  .cid-tifHZMRXjC .main {
    display: flex;
    justify-content: space-between;
    max-width: 849px;
  }
  .cid-tifHZMRXjC .timeline.row {
    flex-direction: column;
    position: relative;
    max-width: 307px;
  }
  .cid-tifHZMRXjC .year {
    flex-direction: row;
  }
  .cid-tifHZMRXjC .year-title {
    text-align: left;
    margin-bottom: 4px;
  }
  .cid-tifHZMRXjC .year-title:before {
    display: block;
  }
  .cid-tifHZMRXjC .accent {
    display: none;
  }
  .cid-tifHZMRXjC .row.title-block {
    margin: initial;
    max-width: 407px;
    align-items: flex-start;
  }
  .cid-tifHZMRXjC .line {
    display: none;
  }
  .cid-tifHZMRXjC .line1 {
    display: block;
    height: 100%;
    width: 2px;
    background-color: #e2e3e9;
    margin-top: -20px;
    margin-left: -15px;
    padding: 0 !important;
    position: absolute;
    left: 0;
  }
  .cid-tifHZMRXjC .year-subtitle {
    margin-bottom: 60px;
    text-align: left;
  }
  .cid-tifHZMRXjC .row.title-block > .col-12 {
    padding: 0 !important;
  }
}
.cid-tifHZMRXjC .no-padd {
  margin-bottom: 0px !important;
}
@media (max-width: 750px) {
  .cid-tifHZMRXjC .main {
    flex-direction: column;
  }
  .cid-tifHZMRXjC .row.title-block,
  .cid-tifHZMRXjC .timeline {
    margin: auto;
  }
  .cid-tifHZMRXjC .row.title-block {
    padding-bottom: 40px;
    width: 90%;
  }
  .cid-tifHZMRXjC .button-align {
    margin-top: 16px;
  }
}
.cid-tifHZMRXjC .btn {
  margin-top: 20px;
}
.cid-tifHZMRXjC a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifHZNFQWq {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifHZNFQWq .content {
    text-align: center;
  }
  .cid-tifHZNFQWq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifHZNFQWq .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifHZNFQWq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifHZNFQWq .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifHZNFQWq .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifHZNFQWq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifHZNFQWq .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifHZNFQWq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifHZNFQWq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifHZNFQWq .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifHZNFQWq .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifHZNFQWq .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifHZNFQWq .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifHZNFQWq .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifHZNFQWq .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifHZNFQWq .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifHZNFQWq H5 {
  color: #0dbe64;
}
.cid-tifLA9DMFD {
  z-index: 1000;
  width: 100%;
}
.cid-tifLA9DMFD nav.navbar {
  position: fixed;
}
.cid-tifLA9DMFD .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-tifLA9DMFD .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifLA9DMFD .dropdown-item:hover,
.cid-tifLA9DMFD .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifLA9DMFD .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifLA9DMFD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifLA9DMFD .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifLA9DMFD .container {
  display: flex;
  margin: auto;
}
.cid-tifLA9DMFD .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifLA9DMFD .dropdown-menu,
.cid-tifLA9DMFD .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifLA9DMFD .nav-item:focus,
.cid-tifLA9DMFD .nav-link:focus {
  outline: none;
}
.cid-tifLA9DMFD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifLA9DMFD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifLA9DMFD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifLA9DMFD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifLA9DMFD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifLA9DMFD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifLA9DMFD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifLA9DMFD .navbar.opened {
  transition: all 0.3s;
}
.cid-tifLA9DMFD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifLA9DMFD .navbar .navbar-logo img {
  width: auto;
}
.cid-tifLA9DMFD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifLA9DMFD .navbar.collapsed {
  justify-content: center;
}
.cid-tifLA9DMFD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifLA9DMFD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifLA9DMFD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifLA9DMFD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifLA9DMFD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifLA9DMFD .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-tifLA9DMFD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifLA9DMFD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifLA9DMFD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifLA9DMFD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifLA9DMFD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifLA9DMFD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifLA9DMFD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifLA9DMFD .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-tifLA9DMFD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifLA9DMFD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifLA9DMFD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifLA9DMFD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifLA9DMFD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifLA9DMFD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifLA9DMFD .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifLA9DMFD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifLA9DMFD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifLA9DMFD .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-tifLA9DMFD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifLA9DMFD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifLA9DMFD .dropdown-item.active,
.cid-tifLA9DMFD .dropdown-item:active {
  background-color: transparent;
}
.cid-tifLA9DMFD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifLA9DMFD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifLA9DMFD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifLA9DMFD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifLA9DMFD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifLA9DMFD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifLA9DMFD ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifLA9DMFD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifLA9DMFD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifLA9DMFD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifLA9DMFD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifLA9DMFD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifLA9DMFD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifLA9DMFD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifLA9DMFD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifLA9DMFD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifLA9DMFD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifLA9DMFD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifLA9DMFD .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifLA9DMFD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifLA9DMFD .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-tifLA9DMFD .navbar {
    height: 70px;
  }
  .cid-tifLA9DMFD .navbar.opened {
    height: auto;
  }
  .cid-tifLA9DMFD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifLA9DMFD a {
  display: inline;
}
.cid-tifLA9DMFD img {
  display: inline;
  padding-right: 10px;
}
.cid-tifLA9DMFD .dropdown-toggle:after {
  display: none;
}
.cid-tifLA9DMFD .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifLA9DMFD .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifLA9DMFD .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifLA9DMFD .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifLA9DMFD .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifLA9DMFD .nav-item {
  margin-right: 32px;
}
.cid-tifLA9DMFD .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifLA9DMFD ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifLA9DMFD .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifLA9DMFD .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifLA9DMFD .navbar-nav {
  margin: auto;
}
.cid-tifLA9DMFD .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifLA9DMFD .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifLA9DMFD .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifLA9DMFD .btn {
  border-radius: 1000px !important;
}
.cid-tifLA9DMFD .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifLA9DMFD .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifLA9DMFD .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-tifLA9DMFD .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-tifLA9DMFD .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifLA9DMFD .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifLA9DMFD .top {
    margin-top: 25px;
  }
}
.cid-tifLA9DMFD .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifLA9DMFD .container,
  .cid-tifLA9DMFD .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifLA9DMFD li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifLA9DMFD ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifLA9DMFD .icons-menu {
    min-width: initial !important;
  }
  .cid-tifLA9DMFD a.btn {
    margin-top: 10px;
  }
}
.cid-tifLA9DMFD a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifLAafe6j {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifLAafe6j .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tifLAafe6j .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifLAafe6j .button-align {
  text-align: center;
}
.cid-tifLAafe6j .mbr-section-btn {
  display: block;
}
.cid-tifLAafe6j .container {
  max-width: 739px;
}
.cid-tifLAafe6j .btn {
  margin-top: 20px;
}
.cid-tifLAafe6j a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifLAafe6j .mbr-text,
.cid-tifLAafe6j .button-align {
  text-align: left;
  color: #e5570f;
}
.cid-tifLAaV008 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tifLAaV008 .card-heading {
  padding-bottom: 32px;
  color: #000000;
}
.cid-tifLAaV008 .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tifLAaV008 .p:last-child {
  padding-bottom: 0;
}
.cid-tifLAaV008 .row {
  justify-content: center;
}
.cid-tifNfnkxPm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tifNfnkxPm .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tifNfnkxPm .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tifNfnkxPm .button-align {
  text-align: center;
}
.cid-tifNfnkxPm .margin {
  margin-right: 14px;
}
.cid-tifNfnkxPm .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tifNfnkxPm .margin {
    margin-right: 0px;
  }
  .cid-tifNfnkxPm .b {
    margin-bottom: 20px;
  }
}
.cid-tifNfnkxPm .btn {
  margin-top: 20px;
}
.cid-tifNfnkxPm a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifNfnkxPm .mbr-text,
.cid-tifNfnkxPm .button-align {
  text-align: center;
  color: #0d646f;
}
.cid-tifLAcFt08 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifLAcFt08 img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tifLAcFt08 .title {
  color: #14142b;
  width: auto;
}
.cid-tifLAcFt08 .row.justify-content-between {
  align-items: center;
}
.cid-tifLAcFt08 .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tifLAcFt08 .row.margin:hover {
  transform: scale(1.05);
}
.cid-tifLAcFt08 .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tifLAcFt08 .left {
  max-width: 549px;
}
.cid-tifLAcFt08 .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tifLAcFt08 .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tifLAcFt08 .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tifLAcFt08 .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tifLAcFt08 .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tifLAcFt08 .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tifLAcFt08 .socicon-bg-mail {
  background-color: #134785;
}
.cid-tifLAcFt08 .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tifLAcFt08 .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tifLAcFt08 .btn-social:hover {
  color: #fff;
}
.cid-tifLAcFt08 .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tifLAcFt08 .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tifLAcFt08 .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tifLAcFt08 .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tifLAcFt08 .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tifLAcFt08 .mbr-section-title,
  .cid-tifLAcFt08 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tifLAcFt08 .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tifLAcFt08 .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tifLAcFt08 .mbr-iconfont {
  margin-left: 0;
}
.cid-tifLAdGnPX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifLAdGnPX .content {
    text-align: center;
  }
  .cid-tifLAdGnPX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifLAdGnPX .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifLAdGnPX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifLAdGnPX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifLAdGnPX .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifLAdGnPX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifLAdGnPX .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifLAdGnPX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifLAdGnPX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifLAdGnPX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifLAdGnPX .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifLAdGnPX .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifLAdGnPX .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifLAdGnPX .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifLAdGnPX .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifLAdGnPX .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifLAdGnPX H5 {
  color: #0dbe64;
}
.cid-tifQjNQNgX {
  z-index: 1000;
  width: 100%;
}
.cid-tifQjNQNgX nav.navbar {
  position: fixed;
}
.cid-tifQjNQNgX .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-tifQjNQNgX .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifQjNQNgX .dropdown-item:hover,
.cid-tifQjNQNgX .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifQjNQNgX .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifQjNQNgX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifQjNQNgX .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifQjNQNgX .container {
  display: flex;
  margin: auto;
}
.cid-tifQjNQNgX .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifQjNQNgX .dropdown-menu,
.cid-tifQjNQNgX .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifQjNQNgX .nav-item:focus,
.cid-tifQjNQNgX .nav-link:focus {
  outline: none;
}
.cid-tifQjNQNgX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifQjNQNgX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifQjNQNgX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifQjNQNgX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifQjNQNgX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifQjNQNgX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifQjNQNgX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifQjNQNgX .navbar.opened {
  transition: all 0.3s;
}
.cid-tifQjNQNgX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifQjNQNgX .navbar .navbar-logo img {
  width: auto;
}
.cid-tifQjNQNgX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifQjNQNgX .navbar.collapsed {
  justify-content: center;
}
.cid-tifQjNQNgX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifQjNQNgX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifQjNQNgX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifQjNQNgX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifQjNQNgX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifQjNQNgX .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-tifQjNQNgX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifQjNQNgX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifQjNQNgX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifQjNQNgX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifQjNQNgX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifQjNQNgX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifQjNQNgX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifQjNQNgX .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-tifQjNQNgX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifQjNQNgX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifQjNQNgX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifQjNQNgX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifQjNQNgX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifQjNQNgX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifQjNQNgX .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifQjNQNgX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifQjNQNgX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifQjNQNgX .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-tifQjNQNgX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifQjNQNgX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifQjNQNgX .dropdown-item.active,
.cid-tifQjNQNgX .dropdown-item:active {
  background-color: transparent;
}
.cid-tifQjNQNgX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifQjNQNgX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifQjNQNgX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifQjNQNgX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifQjNQNgX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifQjNQNgX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifQjNQNgX ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifQjNQNgX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifQjNQNgX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifQjNQNgX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifQjNQNgX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifQjNQNgX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifQjNQNgX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifQjNQNgX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifQjNQNgX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifQjNQNgX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifQjNQNgX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifQjNQNgX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifQjNQNgX .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifQjNQNgX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifQjNQNgX .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-tifQjNQNgX .navbar {
    height: 70px;
  }
  .cid-tifQjNQNgX .navbar.opened {
    height: auto;
  }
  .cid-tifQjNQNgX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifQjNQNgX a {
  display: inline;
}
.cid-tifQjNQNgX img {
  display: inline;
  padding-right: 10px;
}
.cid-tifQjNQNgX .dropdown-toggle:after {
  display: none;
}
.cid-tifQjNQNgX .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifQjNQNgX .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifQjNQNgX .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifQjNQNgX .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifQjNQNgX .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifQjNQNgX .nav-item {
  margin-right: 32px;
}
.cid-tifQjNQNgX .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifQjNQNgX ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifQjNQNgX .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifQjNQNgX .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifQjNQNgX .navbar-nav {
  margin: auto;
}
.cid-tifQjNQNgX .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifQjNQNgX .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifQjNQNgX .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifQjNQNgX .btn {
  border-radius: 1000px !important;
}
.cid-tifQjNQNgX .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifQjNQNgX .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifQjNQNgX .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-tifQjNQNgX .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-tifQjNQNgX .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifQjNQNgX .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifQjNQNgX .top {
    margin-top: 25px;
  }
}
.cid-tifQjNQNgX .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifQjNQNgX .container,
  .cid-tifQjNQNgX .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifQjNQNgX li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifQjNQNgX ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifQjNQNgX .icons-menu {
    min-width: initial !important;
  }
  .cid-tifQjNQNgX a.btn {
    margin-top: 10px;
  }
}
.cid-tifQjNQNgX a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifQjOlWqo {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifQjOlWqo .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tifQjOlWqo .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifQjOlWqo .button-align {
  text-align: center;
}
.cid-tifQjOlWqo .mbr-section-btn {
  display: block;
}
.cid-tifQjOlWqo .container {
  max-width: 739px;
}
.cid-tifQjOlWqo .btn {
  margin-top: 20px;
}
.cid-tifQjOlWqo a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifQjOlWqo .mbr-text,
.cid-tifQjOlWqo .button-align {
  text-align: center;
  color: #e5570f;
}
.cid-tifQjODUPQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tifQjODUPQ .card-heading {
  padding-bottom: 32px;
  color: #14a0a7;
  text-align: center;
}
.cid-tifQjODUPQ .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tifQjODUPQ .p:last-child {
  padding-bottom: 0;
}
.cid-tifQjODUPQ .row {
  justify-content: center;
}
.cid-tifQjP3uYF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tifQjP3uYF .mbr-section-title {
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
  display: inline-block;
}
.cid-tifQjP3uYF .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
  max-width: 739px;
  margin: auto;
}
.cid-tifQjP3uYF .button-align {
  text-align: center;
}
.cid-tifQjP3uYF .margin {
  margin-right: 14px;
}
.cid-tifQjP3uYF .mbr-section-btn {
  display: block;
}
@media (max-width: 440px) {
  .cid-tifQjP3uYF .margin {
    margin-right: 0px;
  }
  .cid-tifQjP3uYF .b {
    margin-bottom: 20px;
  }
}
.cid-tifQjP3uYF .btn {
  margin-top: 20px;
}
.cid-tifQjP3uYF a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifQjP3uYF .mbr-text,
.cid-tifQjP3uYF .button-align {
  text-align: center;
  color: #0d646f;
}
.cid-tifQjPlwTg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifQjPlwTg img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tifQjPlwTg .title {
  color: #14142b;
  width: auto;
}
.cid-tifQjPlwTg .row.justify-content-between {
  align-items: center;
}
.cid-tifQjPlwTg .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tifQjPlwTg .row.margin:hover {
  transform: scale(1.05);
}
.cid-tifQjPlwTg .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tifQjPlwTg .left {
  max-width: 549px;
}
.cid-tifQjPlwTg .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tifQjPlwTg .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tifQjPlwTg .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tifQjPlwTg .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tifQjPlwTg .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tifQjPlwTg .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tifQjPlwTg .socicon-bg-mail {
  background-color: #134785;
}
.cid-tifQjPlwTg .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tifQjPlwTg .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tifQjPlwTg .btn-social:hover {
  color: #fff;
}
.cid-tifQjPlwTg .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tifQjPlwTg .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tifQjPlwTg .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tifQjPlwTg .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tifQjPlwTg .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tifQjPlwTg .mbr-section-title,
  .cid-tifQjPlwTg .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tifQjPlwTg .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tifQjPlwTg .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tifQjPlwTg .mbr-iconfont {
  margin-left: 0;
}
.cid-tifQjPLKrU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifQjPLKrU .content {
    text-align: center;
  }
  .cid-tifQjPLKrU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifQjPLKrU .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifQjPLKrU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifQjPLKrU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifQjPLKrU .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifQjPLKrU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifQjPLKrU .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifQjPLKrU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifQjPLKrU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifQjPLKrU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifQjPLKrU .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifQjPLKrU .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifQjPLKrU .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifQjPLKrU .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifQjPLKrU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifQjPLKrU .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifQjPLKrU H5 {
  color: #0dbe64;
}
.cid-tifS7TnQgQ {
  z-index: 1000;
  width: 100%;
}
.cid-tifS7TnQgQ nav.navbar {
  position: fixed;
}
.cid-tifS7TnQgQ .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-tifS7TnQgQ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifS7TnQgQ .dropdown-item:hover,
.cid-tifS7TnQgQ .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifS7TnQgQ .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifS7TnQgQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifS7TnQgQ .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifS7TnQgQ .container {
  display: flex;
  margin: auto;
}
.cid-tifS7TnQgQ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifS7TnQgQ .dropdown-menu,
.cid-tifS7TnQgQ .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifS7TnQgQ .nav-item:focus,
.cid-tifS7TnQgQ .nav-link:focus {
  outline: none;
}
.cid-tifS7TnQgQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifS7TnQgQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifS7TnQgQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifS7TnQgQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifS7TnQgQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifS7TnQgQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifS7TnQgQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifS7TnQgQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tifS7TnQgQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifS7TnQgQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tifS7TnQgQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifS7TnQgQ .navbar.collapsed {
  justify-content: center;
}
.cid-tifS7TnQgQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifS7TnQgQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifS7TnQgQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifS7TnQgQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifS7TnQgQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifS7TnQgQ .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-tifS7TnQgQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifS7TnQgQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifS7TnQgQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifS7TnQgQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifS7TnQgQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifS7TnQgQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifS7TnQgQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifS7TnQgQ .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-tifS7TnQgQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifS7TnQgQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifS7TnQgQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifS7TnQgQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifS7TnQgQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifS7TnQgQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifS7TnQgQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifS7TnQgQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifS7TnQgQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifS7TnQgQ .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-tifS7TnQgQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifS7TnQgQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifS7TnQgQ .dropdown-item.active,
.cid-tifS7TnQgQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tifS7TnQgQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifS7TnQgQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifS7TnQgQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifS7TnQgQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifS7TnQgQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifS7TnQgQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifS7TnQgQ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifS7TnQgQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifS7TnQgQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifS7TnQgQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifS7TnQgQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifS7TnQgQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifS7TnQgQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifS7TnQgQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifS7TnQgQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifS7TnQgQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifS7TnQgQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifS7TnQgQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifS7TnQgQ .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifS7TnQgQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifS7TnQgQ .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-tifS7TnQgQ .navbar {
    height: 70px;
  }
  .cid-tifS7TnQgQ .navbar.opened {
    height: auto;
  }
  .cid-tifS7TnQgQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifS7TnQgQ a {
  display: inline;
}
.cid-tifS7TnQgQ img {
  display: inline;
  padding-right: 10px;
}
.cid-tifS7TnQgQ .dropdown-toggle:after {
  display: none;
}
.cid-tifS7TnQgQ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifS7TnQgQ .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifS7TnQgQ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifS7TnQgQ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifS7TnQgQ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifS7TnQgQ .nav-item {
  margin-right: 32px;
}
.cid-tifS7TnQgQ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifS7TnQgQ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifS7TnQgQ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifS7TnQgQ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifS7TnQgQ .navbar-nav {
  margin: auto;
}
.cid-tifS7TnQgQ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifS7TnQgQ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifS7TnQgQ .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifS7TnQgQ .btn {
  border-radius: 1000px !important;
}
.cid-tifS7TnQgQ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifS7TnQgQ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifS7TnQgQ .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-tifS7TnQgQ .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-tifS7TnQgQ .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifS7TnQgQ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifS7TnQgQ .top {
    margin-top: 25px;
  }
}
.cid-tifS7TnQgQ .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifS7TnQgQ .container,
  .cid-tifS7TnQgQ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifS7TnQgQ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifS7TnQgQ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifS7TnQgQ .icons-menu {
    min-width: initial !important;
  }
  .cid-tifS7TnQgQ a.btn {
    margin-top: 10px;
  }
}
.cid-tifS7TnQgQ a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifS7TSWy4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tifS7TSWy4 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tifS7TSWy4 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifS7TSWy4 .button-align {
  text-align: center;
}
.cid-tifS7TSWy4 .mbr-section-btn {
  display: block;
}
.cid-tifS7TSWy4 .container {
  max-width: 739px;
}
.cid-tifS7TSWy4 .btn {
  margin-top: 20px;
}
.cid-tifS7TSWy4 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifS7TSWy4 .mbr-text,
.cid-tifS7TSWy4 .button-align {
  text-align: left;
  color: #e5570f;
}
.cid-tTGHCVPnvL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTGHCVPnvL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTGHCVPnvL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTGHCVPnvL .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tTGHCVPnvL .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tTGHCVPnvL .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tTGHCVPnvL .mbr-section-title {
  color: #0d646f;
}
.cid-tTGHCVPnvL .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tTGHCVPnvL .items-row {
  row-gap: 24px;
}
.cid-tTGHCVPnvL .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tTGHCVPnvL .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tTGHCVPnvL .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tTGHCVPnvL .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tTGHCVPnvL .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-tTGHCVPnvL .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-tTGHCVPnvL .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tTGHCVPnvL .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-tTGHCVPnvL .card-title {
  color: #131313;
}
.cid-tTGHCVPnvL .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tTGHCVPnvL .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-tTGHCVPnvL .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tTGHCVPnvL .link-text {
    margin-top: 5px;
  }
}
.cid-tTGHCVPnvL .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tTGHCVPnvL .mbr-section-btn {
  margin-top: 5px;
}
.cid-tTGIzKgwHX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTGIzKgwHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTGIzKgwHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTGIzKgwHX .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tTGIzKgwHX .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tTGIzKgwHX .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tTGIzKgwHX .mbr-section-title {
  color: #0d646f;
}
.cid-tTGIzKgwHX .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tTGIzKgwHX .items-row {
  row-gap: 24px;
}
.cid-tTGIzKgwHX .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tTGIzKgwHX .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tTGIzKgwHX .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tTGIzKgwHX .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tTGIzKgwHX .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-tTGIzKgwHX .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-tTGIzKgwHX .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tTGIzKgwHX .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-tTGIzKgwHX .card-title {
  color: #131313;
}
.cid-tTGIzKgwHX .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tTGIzKgwHX .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-tTGIzKgwHX .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tTGIzKgwHX .link-text {
    margin-top: 5px;
  }
}
.cid-tTGIzKgwHX .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tTGIzKgwHX .mbr-section-btn {
  margin-top: 5px;
}
.cid-tTGJoktpIG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTGJoktpIG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTGJoktpIG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTGJoktpIG .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tTGJoktpIG .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tTGJoktpIG .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tTGJoktpIG .mbr-section-title {
  color: #0d646f;
}
.cid-tTGJoktpIG .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tTGJoktpIG .items-row {
  row-gap: 24px;
}
.cid-tTGJoktpIG .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tTGJoktpIG .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tTGJoktpIG .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tTGJoktpIG .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tTGJoktpIG .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 4);
}
.cid-tTGJoktpIG .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-tTGJoktpIG .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tTGJoktpIG .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-tTGJoktpIG .card-title {
  color: #131313;
}
.cid-tTGJoktpIG .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tTGJoktpIG .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-tTGJoktpIG .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tTGJoktpIG .link-text {
    margin-top: 5px;
  }
}
.cid-tTGJoktpIG .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tTGJoktpIG .mbr-section-btn {
  margin-top: 5px;
}
.cid-tifS7WbFnQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tifS7WbFnQ img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tifS7WbFnQ .title {
  color: #14142b;
  width: auto;
}
.cid-tifS7WbFnQ .row.justify-content-between {
  align-items: center;
}
.cid-tifS7WbFnQ .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tifS7WbFnQ .row.margin:hover {
  transform: scale(1.05);
}
.cid-tifS7WbFnQ .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tifS7WbFnQ .left {
  max-width: 549px;
}
.cid-tifS7WbFnQ .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tifS7WbFnQ .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tifS7WbFnQ .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tifS7WbFnQ .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tifS7WbFnQ .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tifS7WbFnQ .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tifS7WbFnQ .socicon-bg-mail {
  background-color: #134785;
}
.cid-tifS7WbFnQ .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tifS7WbFnQ .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tifS7WbFnQ .btn-social:hover {
  color: #fff;
}
.cid-tifS7WbFnQ .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tifS7WbFnQ .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tifS7WbFnQ .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tifS7WbFnQ .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tifS7WbFnQ .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tifS7WbFnQ .mbr-section-title,
  .cid-tifS7WbFnQ .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tifS7WbFnQ .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tifS7WbFnQ .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tifS7WbFnQ .mbr-iconfont {
  margin-left: 0;
}
.cid-tifS7WDl6B {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifS7WDl6B .content {
    text-align: center;
  }
  .cid-tifS7WDl6B .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifS7WDl6B .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifS7WDl6B .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifS7WDl6B .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifS7WDl6B .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifS7WDl6B .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifS7WDl6B .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifS7WDl6B .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifS7WDl6B .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifS7WDl6B .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifS7WDl6B .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifS7WDl6B .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifS7WDl6B .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifS7WDl6B .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifS7WDl6B .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifS7WDl6B .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifS7WDl6B H5 {
  color: #0dbe64;
}
.cid-tifSPApGki {
  z-index: 1000;
  width: 100%;
}
.cid-tifSPApGki nav.navbar {
  position: fixed;
}
.cid-tifSPApGki .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-tifSPApGki .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifSPApGki .dropdown-item:hover,
.cid-tifSPApGki .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifSPApGki .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifSPApGki .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifSPApGki .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifSPApGki .container {
  display: flex;
  margin: auto;
}
.cid-tifSPApGki .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifSPApGki .dropdown-menu,
.cid-tifSPApGki .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifSPApGki .nav-item:focus,
.cid-tifSPApGki .nav-link:focus {
  outline: none;
}
.cid-tifSPApGki .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifSPApGki .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifSPApGki .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifSPApGki .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifSPApGki .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifSPApGki .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifSPApGki .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifSPApGki .navbar.opened {
  transition: all 0.3s;
}
.cid-tifSPApGki .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifSPApGki .navbar .navbar-logo img {
  width: auto;
}
.cid-tifSPApGki .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifSPApGki .navbar.collapsed {
  justify-content: center;
}
.cid-tifSPApGki .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifSPApGki .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifSPApGki .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifSPApGki .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifSPApGki .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifSPApGki .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-tifSPApGki .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifSPApGki .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifSPApGki .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifSPApGki .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifSPApGki .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifSPApGki .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifSPApGki .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifSPApGki .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-tifSPApGki .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifSPApGki .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifSPApGki .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifSPApGki .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifSPApGki .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifSPApGki .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifSPApGki .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifSPApGki .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifSPApGki .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifSPApGki .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-tifSPApGki .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifSPApGki .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifSPApGki .dropdown-item.active,
.cid-tifSPApGki .dropdown-item:active {
  background-color: transparent;
}
.cid-tifSPApGki .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifSPApGki .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifSPApGki .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifSPApGki .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifSPApGki .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifSPApGki .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifSPApGki ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifSPApGki .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifSPApGki button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifSPApGki button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifSPApGki button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifSPApGki button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifSPApGki button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifSPApGki button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifSPApGki nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifSPApGki nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifSPApGki nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifSPApGki nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifSPApGki .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifSPApGki a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifSPApGki .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-tifSPApGki .navbar {
    height: 70px;
  }
  .cid-tifSPApGki .navbar.opened {
    height: auto;
  }
  .cid-tifSPApGki .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifSPApGki a {
  display: inline;
}
.cid-tifSPApGki img {
  display: inline;
  padding-right: 10px;
}
.cid-tifSPApGki .dropdown-toggle:after {
  display: none;
}
.cid-tifSPApGki .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifSPApGki .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifSPApGki .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifSPApGki .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifSPApGki .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifSPApGki .nav-item {
  margin-right: 32px;
}
.cid-tifSPApGki .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifSPApGki ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifSPApGki .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifSPApGki .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifSPApGki .navbar-nav {
  margin: auto;
}
.cid-tifSPApGki .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifSPApGki .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifSPApGki .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifSPApGki .btn {
  border-radius: 1000px !important;
}
.cid-tifSPApGki .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifSPApGki .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifSPApGki .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-tifSPApGki .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-tifSPApGki .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifSPApGki .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifSPApGki .top {
    margin-top: 25px;
  }
}
.cid-tifSPApGki .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifSPApGki .container,
  .cid-tifSPApGki .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifSPApGki li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifSPApGki ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifSPApGki .icons-menu {
    min-width: initial !important;
  }
  .cid-tifSPApGki a.btn {
    margin-top: 10px;
  }
}
.cid-tifSPApGki a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifSPATWyh {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifSPATWyh .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tifSPATWyh .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifSPATWyh .button-align {
  text-align: center;
}
.cid-tifSPATWyh .mbr-section-btn {
  display: block;
}
.cid-tifSPATWyh .container {
  max-width: 739px;
}
.cid-tifSPATWyh .btn {
  margin-top: 20px;
}
.cid-tifSPATWyh a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifSPATWyh .mbr-text,
.cid-tifSPATWyh .button-align {
  text-align: center;
  color: #e5570f;
}
.cid-tifSPBcuvD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tifSPBcuvD .card-heading {
  padding-bottom: 32px;
  color: #ef7208;
  text-align: center;
}
.cid-tifSPBcuvD .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tifSPBcuvD .p:last-child {
  padding-bottom: 0;
}
.cid-tifSPBcuvD .row {
  justify-content: center;
}
.cid-tifSPBQfhB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifSPBQfhB img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tifSPBQfhB .title {
  color: #14142b;
  width: auto;
}
.cid-tifSPBQfhB .row.justify-content-between {
  align-items: center;
}
.cid-tifSPBQfhB .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tifSPBQfhB .row.margin:hover {
  transform: scale(1.05);
}
.cid-tifSPBQfhB .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tifSPBQfhB .left {
  max-width: 549px;
}
.cid-tifSPBQfhB .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tifSPBQfhB .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tifSPBQfhB .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tifSPBQfhB .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tifSPBQfhB .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tifSPBQfhB .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tifSPBQfhB .socicon-bg-mail {
  background-color: #134785;
}
.cid-tifSPBQfhB .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tifSPBQfhB .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tifSPBQfhB .btn-social:hover {
  color: #fff;
}
.cid-tifSPBQfhB .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tifSPBQfhB .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tifSPBQfhB .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tifSPBQfhB .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tifSPBQfhB .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tifSPBQfhB .mbr-section-title,
  .cid-tifSPBQfhB .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tifSPBQfhB .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tifSPBQfhB .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tifSPBQfhB .mbr-iconfont {
  margin-left: 0;
}
.cid-tifSPCd9Fu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifSPCd9Fu .content {
    text-align: center;
  }
  .cid-tifSPCd9Fu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifSPCd9Fu .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifSPCd9Fu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifSPCd9Fu .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifSPCd9Fu .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifSPCd9Fu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifSPCd9Fu .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifSPCd9Fu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifSPCd9Fu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifSPCd9Fu .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifSPCd9Fu .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifSPCd9Fu .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifSPCd9Fu .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifSPCd9Fu .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifSPCd9Fu .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifSPCd9Fu .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifSPCd9Fu H5 {
  color: #0dbe64;
}
.cid-tifTHlRz00 {
  z-index: 1000;
  width: 100%;
}
.cid-tifTHlRz00 nav.navbar {
  position: fixed;
}
.cid-tifTHlRz00 .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-tifTHlRz00 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifTHlRz00 .dropdown-item:hover,
.cid-tifTHlRz00 .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifTHlRz00 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifTHlRz00 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifTHlRz00 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifTHlRz00 .container {
  display: flex;
  margin: auto;
}
.cid-tifTHlRz00 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifTHlRz00 .dropdown-menu,
.cid-tifTHlRz00 .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifTHlRz00 .nav-item:focus,
.cid-tifTHlRz00 .nav-link:focus {
  outline: none;
}
.cid-tifTHlRz00 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifTHlRz00 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifTHlRz00 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifTHlRz00 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifTHlRz00 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifTHlRz00 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifTHlRz00 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifTHlRz00 .navbar.opened {
  transition: all 0.3s;
}
.cid-tifTHlRz00 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifTHlRz00 .navbar .navbar-logo img {
  width: auto;
}
.cid-tifTHlRz00 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifTHlRz00 .navbar.collapsed {
  justify-content: center;
}
.cid-tifTHlRz00 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifTHlRz00 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifTHlRz00 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifTHlRz00 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifTHlRz00 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifTHlRz00 .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-tifTHlRz00 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifTHlRz00 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifTHlRz00 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifTHlRz00 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifTHlRz00 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifTHlRz00 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifTHlRz00 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifTHlRz00 .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-tifTHlRz00 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifTHlRz00 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifTHlRz00 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifTHlRz00 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifTHlRz00 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifTHlRz00 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifTHlRz00 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifTHlRz00 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifTHlRz00 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifTHlRz00 .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-tifTHlRz00 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifTHlRz00 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifTHlRz00 .dropdown-item.active,
.cid-tifTHlRz00 .dropdown-item:active {
  background-color: transparent;
}
.cid-tifTHlRz00 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifTHlRz00 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifTHlRz00 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifTHlRz00 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifTHlRz00 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifTHlRz00 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifTHlRz00 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifTHlRz00 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifTHlRz00 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifTHlRz00 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifTHlRz00 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifTHlRz00 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifTHlRz00 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifTHlRz00 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifTHlRz00 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifTHlRz00 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifTHlRz00 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifTHlRz00 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifTHlRz00 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifTHlRz00 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifTHlRz00 .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-tifTHlRz00 .navbar {
    height: 70px;
  }
  .cid-tifTHlRz00 .navbar.opened {
    height: auto;
  }
  .cid-tifTHlRz00 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifTHlRz00 a {
  display: inline;
}
.cid-tifTHlRz00 img {
  display: inline;
  padding-right: 10px;
}
.cid-tifTHlRz00 .dropdown-toggle:after {
  display: none;
}
.cid-tifTHlRz00 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifTHlRz00 .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifTHlRz00 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifTHlRz00 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifTHlRz00 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifTHlRz00 .nav-item {
  margin-right: 32px;
}
.cid-tifTHlRz00 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifTHlRz00 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifTHlRz00 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifTHlRz00 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifTHlRz00 .navbar-nav {
  margin: auto;
}
.cid-tifTHlRz00 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifTHlRz00 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifTHlRz00 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifTHlRz00 .btn {
  border-radius: 1000px !important;
}
.cid-tifTHlRz00 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifTHlRz00 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifTHlRz00 .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-tifTHlRz00 .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-tifTHlRz00 .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifTHlRz00 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifTHlRz00 .top {
    margin-top: 25px;
  }
}
.cid-tifTHlRz00 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifTHlRz00 .container,
  .cid-tifTHlRz00 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifTHlRz00 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifTHlRz00 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifTHlRz00 .icons-menu {
    min-width: initial !important;
  }
  .cid-tifTHlRz00 a.btn {
    margin-top: 10px;
  }
}
.cid-tifTHlRz00 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifTHmvYkT {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifTHmvYkT .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tifTHmvYkT .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifTHmvYkT .button-align {
  text-align: center;
}
.cid-tifTHmvYkT .mbr-section-btn {
  display: block;
}
.cid-tifTHmvYkT .container {
  max-width: 739px;
}
.cid-tifTHmvYkT .btn {
  margin-top: 20px;
}
.cid-tifTHmvYkT a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifTHmvYkT .mbr-text,
.cid-tifTHmvYkT .button-align {
  text-align: center;
  color: #e5570f;
}
.cid-tifTHmRMvy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tifTHmRMvy .card-heading {
  padding-bottom: 32px;
  color: #14a0a7;
  text-align: center;
}
.cid-tifTHmRMvy .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tifTHmRMvy .p:last-child {
  padding-bottom: 0;
}
.cid-tifTHmRMvy .row {
  justify-content: center;
}
.cid-tifTHnlU5U {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifTHnlU5U img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tifTHnlU5U .title {
  color: #14142b;
  width: auto;
}
.cid-tifTHnlU5U .row.justify-content-between {
  align-items: center;
}
.cid-tifTHnlU5U .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tifTHnlU5U .row.margin:hover {
  transform: scale(1.05);
}
.cid-tifTHnlU5U .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tifTHnlU5U .left {
  max-width: 549px;
}
.cid-tifTHnlU5U .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tifTHnlU5U .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tifTHnlU5U .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tifTHnlU5U .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tifTHnlU5U .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tifTHnlU5U .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tifTHnlU5U .socicon-bg-mail {
  background-color: #134785;
}
.cid-tifTHnlU5U .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tifTHnlU5U .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tifTHnlU5U .btn-social:hover {
  color: #fff;
}
.cid-tifTHnlU5U .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tifTHnlU5U .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tifTHnlU5U .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tifTHnlU5U .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tifTHnlU5U .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tifTHnlU5U .mbr-section-title,
  .cid-tifTHnlU5U .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tifTHnlU5U .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tifTHnlU5U .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tifTHnlU5U .mbr-iconfont {
  margin-left: 0;
}
.cid-tifTHnPRen {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifTHnPRen .content {
    text-align: center;
  }
  .cid-tifTHnPRen .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifTHnPRen .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifTHnPRen .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifTHnPRen .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifTHnPRen .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifTHnPRen .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifTHnPRen .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifTHnPRen .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifTHnPRen .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifTHnPRen .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifTHnPRen .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifTHnPRen .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifTHnPRen .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifTHnPRen .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifTHnPRen .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifTHnPRen .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifTHnPRen H5 {
  color: #0dbe64;
}
.cid-tifUiD2sOs {
  z-index: 1000;
  width: 100%;
}
.cid-tifUiD2sOs nav.navbar {
  position: fixed;
}
.cid-tifUiD2sOs .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-tifUiD2sOs .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tifUiD2sOs .dropdown-item:hover,
.cid-tifUiD2sOs .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tifUiD2sOs .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tifUiD2sOs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tifUiD2sOs .nav-link {
  position: relative;
  padding: 0;
}
.cid-tifUiD2sOs .container {
  display: flex;
  margin: auto;
}
.cid-tifUiD2sOs .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tifUiD2sOs .dropdown-menu,
.cid-tifUiD2sOs .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tifUiD2sOs .nav-item:focus,
.cid-tifUiD2sOs .nav-link:focus {
  outline: none;
}
.cid-tifUiD2sOs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tifUiD2sOs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tifUiD2sOs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tifUiD2sOs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tifUiD2sOs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tifUiD2sOs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tifUiD2sOs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tifUiD2sOs .navbar.opened {
  transition: all 0.3s;
}
.cid-tifUiD2sOs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tifUiD2sOs .navbar .navbar-logo img {
  width: auto;
}
.cid-tifUiD2sOs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tifUiD2sOs .navbar.collapsed {
  justify-content: center;
}
.cid-tifUiD2sOs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tifUiD2sOs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tifUiD2sOs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tifUiD2sOs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tifUiD2sOs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tifUiD2sOs .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-tifUiD2sOs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tifUiD2sOs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tifUiD2sOs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tifUiD2sOs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tifUiD2sOs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tifUiD2sOs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tifUiD2sOs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tifUiD2sOs .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-tifUiD2sOs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tifUiD2sOs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tifUiD2sOs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tifUiD2sOs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tifUiD2sOs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tifUiD2sOs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tifUiD2sOs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tifUiD2sOs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tifUiD2sOs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tifUiD2sOs .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-tifUiD2sOs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tifUiD2sOs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tifUiD2sOs .dropdown-item.active,
.cid-tifUiD2sOs .dropdown-item:active {
  background-color: transparent;
}
.cid-tifUiD2sOs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tifUiD2sOs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tifUiD2sOs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tifUiD2sOs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tifUiD2sOs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tifUiD2sOs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tifUiD2sOs ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tifUiD2sOs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tifUiD2sOs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tifUiD2sOs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tifUiD2sOs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tifUiD2sOs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifUiD2sOs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tifUiD2sOs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tifUiD2sOs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifUiD2sOs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tifUiD2sOs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tifUiD2sOs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tifUiD2sOs .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tifUiD2sOs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tifUiD2sOs .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-tifUiD2sOs .navbar {
    height: 70px;
  }
  .cid-tifUiD2sOs .navbar.opened {
    height: auto;
  }
  .cid-tifUiD2sOs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tifUiD2sOs a {
  display: inline;
}
.cid-tifUiD2sOs img {
  display: inline;
  padding-right: 10px;
}
.cid-tifUiD2sOs .dropdown-toggle:after {
  display: none;
}
.cid-tifUiD2sOs .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tifUiD2sOs .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tifUiD2sOs .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tifUiD2sOs .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tifUiD2sOs .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tifUiD2sOs .nav-item {
  margin-right: 32px;
}
.cid-tifUiD2sOs .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tifUiD2sOs ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tifUiD2sOs .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tifUiD2sOs .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tifUiD2sOs .navbar-nav {
  margin: auto;
}
.cid-tifUiD2sOs .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tifUiD2sOs .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tifUiD2sOs .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tifUiD2sOs .btn {
  border-radius: 1000px !important;
}
.cid-tifUiD2sOs .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tifUiD2sOs .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tifUiD2sOs .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-tifUiD2sOs .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-tifUiD2sOs .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tifUiD2sOs .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tifUiD2sOs .top {
    margin-top: 25px;
  }
}
.cid-tifUiD2sOs .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tifUiD2sOs .container,
  .cid-tifUiD2sOs .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tifUiD2sOs li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tifUiD2sOs ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tifUiD2sOs .icons-menu {
    min-width: initial !important;
  }
  .cid-tifUiD2sOs a.btn {
    margin-top: 10px;
  }
}
.cid-tifUiD2sOs a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifUiDCWt5 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifUiDCWt5 .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tifUiDCWt5 .mbr-text {
  color: #8c8c95;
  margin-bottom: 26px;
  text-align: center;
}
.cid-tifUiDCWt5 .button-align {
  text-align: center;
}
.cid-tifUiDCWt5 .mbr-section-btn {
  display: block;
}
.cid-tifUiDCWt5 .container {
  max-width: 739px;
}
.cid-tifUiDCWt5 .btn {
  margin-top: 20px;
}
.cid-tifUiDCWt5 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tifUiDCWt5 .mbr-text,
.cid-tifUiDCWt5 .button-align {
  text-align: center;
  color: #0d646f;
}
.cid-tifUiDVsEr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/teatronohma-4-1920x1280.jpg");
}
.cid-tifUiDVsEr .card-heading {
  padding-bottom: 32px;
  color: #14a0a7;
  text-align: center;
}
.cid-tifUiDVsEr .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tifUiDVsEr .p:last-child {
  padding-bottom: 0;
}
.cid-tifUiDVsEr .row {
  justify-content: center;
}
.cid-tifUiElxtN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tifUiElxtN img {
  width: auto;
  max-height: 60px;
  display: inline-block;
  padding: 0;
}
.cid-tifUiElxtN .title {
  color: #14142b;
  width: auto;
}
.cid-tifUiElxtN .row.justify-content-between {
  align-items: center;
}
.cid-tifUiElxtN .row.margin {
  transition-property: transform, -webkit-transform;
  align-items: center;
  transition: all 300ms ease;
}
.cid-tifUiElxtN .row.margin:hover {
  transform: scale(1.05);
}
.cid-tifUiElxtN .mbr-section-title {
  color: #14a0a7;
  margin-bottom: 24px;
}
.cid-tifUiElxtN .left {
  max-width: 549px;
}
.cid-tifUiElxtN .right {
  max-width: 452px;
  overflow: visible;
}
.cid-tifUiElxtN .shadow {
  padding: 40px 61px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 452px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tifUiElxtN .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tifUiElxtN .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tifUiElxtN .socicon-bg-twitter {
  background-color: #ff00a3;
}
.cid-tifUiElxtN .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tifUiElxtN .socicon-bg-mail {
  background-color: #134785;
}
.cid-tifUiElxtN .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 42px;
  height: 42px;
  line-height: 44px;
  margin: 0 16px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #14a0a7;
  cursor: pointer;
}
.cid-tifUiElxtN .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tifUiElxtN .btn-social:hover {
  color: #fff;
}
.cid-tifUiElxtN .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tifUiElxtN .card-text {
  margin-bottom: 24px;
  color: #14142b;
}
.cid-tifUiElxtN .mbr-section-subtitle {
  color: #8c8c95;
}
@media (max-width: 850px) {
  .cid-tifUiElxtN .shadow {
    padding: 40px 31px;
  }
}
@media (max-width: 992px) {
  .cid-tifUiElxtN .left {
    margin-bottom: 40px;
    max-width: initial;
  }
  .cid-tifUiElxtN .mbr-section-title,
  .cid-tifUiElxtN .mbr-section-subtitle {
    text-align: center;
  }
  .cid-tifUiElxtN .shadow {
    margin: auto;
  }
}
@media (max-width: 700px) {
  .cid-tifUiElxtN .btn-social {
    margin-right: 6px !important;
    width: 35px;
    height: 35px;
  }
}
.cid-tifUiElxtN .mbr-iconfont {
  margin-left: 0;
}
.cid-tifUiEH4a6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tifUiEH4a6 .content {
    text-align: center;
  }
  .cid-tifUiEH4a6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tifUiEH4a6 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tifUiEH4a6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tifUiEH4a6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tifUiEH4a6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-tifUiEH4a6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tifUiEH4a6 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tifUiEH4a6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tifUiEH4a6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tifUiEH4a6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tifUiEH4a6 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tifUiEH4a6 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tifUiEH4a6 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tifUiEH4a6 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tifUiEH4a6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tifUiEH4a6 .list {
  list-style-type: none;
  padding: 0;
}
.cid-tifUiEH4a6 H5 {
  color: #0dbe64;
}
.cid-tfV6b7rBGZ {
  z-index: 1000;
  width: 100%;
}
.cid-tfV6b7rBGZ nav.navbar {
  position: fixed;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tfV6b7rBGZ .dropdown-item:hover,
.cid-tfV6b7rBGZ .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tfV6b7rBGZ .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tfV6b7rBGZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfV6b7rBGZ .nav-link {
  position: relative;
  padding: 0;
}
.cid-tfV6b7rBGZ .container {
  display: flex;
  margin: auto;
}
.cid-tfV6b7rBGZ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tfV6b7rBGZ .dropdown-menu,
.cid-tfV6b7rBGZ .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tfV6b7rBGZ .nav-item:focus,
.cid-tfV6b7rBGZ .nav-link:focus {
  outline: none;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfV6b7rBGZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfV6b7rBGZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tfV6b7rBGZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tfV6b7rBGZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tfV6b7rBGZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tfV6b7rBGZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfV6b7rBGZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tfV6b7rBGZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tfV6b7rBGZ .navbar.collapsed {
  justify-content: center;
}
.cid-tfV6b7rBGZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tfV6b7rBGZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tfV6b7rBGZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tfV6b7rBGZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tfV6b7rBGZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tfV6b7rBGZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tfV6b7rBGZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tfV6b7rBGZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfV6b7rBGZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfV6b7rBGZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfV6b7rBGZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfV6b7rBGZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfV6b7rBGZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfV6b7rBGZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfV6b7rBGZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfV6b7rBGZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfV6b7rBGZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tfV6b7rBGZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tfV6b7rBGZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfV6b7rBGZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tfV6b7rBGZ .dropdown-item.active,
.cid-tfV6b7rBGZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tfV6b7rBGZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfV6b7rBGZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfV6b7rBGZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfV6b7rBGZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tfV6b7rBGZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfV6b7rBGZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfV6b7rBGZ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tfV6b7rBGZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tfV6b7rBGZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfV6b7rBGZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfV6b7rBGZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfV6b7rBGZ .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tfV6b7rBGZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .navbar {
    height: 70px;
  }
  .cid-tfV6b7rBGZ .navbar.opened {
    height: auto;
  }
  .cid-tfV6b7rBGZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfV6b7rBGZ a {
  display: inline;
}
.cid-tfV6b7rBGZ img {
  display: inline;
  padding-right: 10px;
}
.cid-tfV6b7rBGZ .dropdown-toggle:after {
  display: none;
}
.cid-tfV6b7rBGZ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tfV6b7rBGZ .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tfV6b7rBGZ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tfV6b7rBGZ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tfV6b7rBGZ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tfV6b7rBGZ .nav-item {
  margin-right: 32px;
}
.cid-tfV6b7rBGZ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tfV6b7rBGZ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tfV6b7rBGZ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tfV6b7rBGZ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tfV6b7rBGZ .navbar-nav {
  margin: auto;
}
.cid-tfV6b7rBGZ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tfV6b7rBGZ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tfV6b7rBGZ .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tfV6b7rBGZ .btn {
  border-radius: 1000px !important;
}
.cid-tfV6b7rBGZ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tfV6b7rBGZ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tfV6b7rBGZ .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-tfV6b7rBGZ .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-tfV6b7rBGZ .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tfV6b7rBGZ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tfV6b7rBGZ .top {
    margin-top: 25px;
  }
}
.cid-tfV6b7rBGZ .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tfV6b7rBGZ .container,
  .cid-tfV6b7rBGZ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tfV6b7rBGZ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tfV6b7rBGZ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tfV6b7rBGZ .icons-menu {
    min-width: initial !important;
  }
  .cid-tfV6b7rBGZ a.btn {
    margin-top: 10px;
  }
}
.cid-tfV6b7rBGZ a.btn > span {
  margin-left: 0.5rem;
}
.cid-tIntUjQYyD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIntUjQYyD .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tIntUjQYyD .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tIntUjQYyD .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tIntUjQYyD .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tIntUjQYyD .right-side {
  max-width: 554px;
}
.cid-tIntUjQYyD .rs {
  margin-right: 60px;
}
.cid-tIntUjQYyD .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tIntUjQYyD .margin {
  margin-right: 14px;
}
.cid-tIntUjQYyD .gray {
  padding: 45px 0;
  background-color: #ffffff;
}
.cid-tIntUjQYyD img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tIntUjQYyD .gray {
    padding: 0px 0 5px;
  }
  .cid-tIntUjQYyD img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tIntUjQYyD .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tIntUjQYyD .b {
    margin-bottom: 10px;
  }
}
.cid-tIntUjQYyD .btn {
  margin-top: 20px;
}
.cid-tIntUjQYyD a.btn > span {
  margin-left: 0.5rem;
}
.cid-tIntUjQYyD .mbr-text,
.cid-tIntUjQYyD .button-align {
  color: #0d646f;
}
.cid-tInuDgcGek {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tInuDgcGek .content_box {
  position: relative;
  text-align: center;
  height: 325px;
}
.cid-tInuDgcGek .mbr-section-subtitle {
  font-size: 200px;
  color: #0d646f;
  letter-spacing: -0.075em;
  font-weight: 500;
}
.cid-tInuDgcGek .mbr-text {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #14a0a7;
}
@media (max-width: 767px) {
  .cid-tInuDgcGek .mbr-text {
    top: 0;
  }
  .cid-tInuDgcGek .content_box {
    height: 200px;
  }
}
.cid-tInw6n4hK8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tInw6n4hK8 .mbr-section-subtitle {
  color: #0d646f;
  text-align: left;
  margin: auto;
}
.cid-tInw6n4hK8 .mbr-section-title {
  text-align: left;
  color: #14a0a7;
  padding-bottom: 24px;
  margin: auto;
}
.cid-tInw6n4hK8 .row {
  align-items: center;
  height: 100%;
}
.cid-tInw6n4hK8 .wrapper {
  margin: auto;
}
.cid-tInwU5sD7F {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tInwU5sD7F .card-heading {
  padding-bottom: 32px;
  color: #14a0a7;
}
.cid-tInwU5sD7F .p {
  padding-bottom: 26px;
  color: #0d646f;
}
.cid-tInwU5sD7F .p:last-child {
  padding-bottom: 0;
}
.cid-tInwU5sD7F .row {
  justify-content: center;
}
.cid-tInxIf7aLd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tInxIf7aLd .shadow {
  margin: auto;
  max-width: 713px;
  padding: 60px 50px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tInxIf7aLd .card-subtitle {
  color: #fcfcfc;
  padding: 16px 25px;
  border-radius: 1000px;
  background-color: #14a0a7;
  display: inline-block;
}
.cid-tInxIf7aLd .card-text {
  color: #8c8c95;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 470px) {
  .cid-tInxIf7aLd .shadow {
    padding: 40px;
  }
}
.cid-tInxIf7aLd .card-text,
.cid-tInxIf7aLd .align {
  color: #0d646f;
}
.cid-tfV6b8AlI6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tfV6b8AlI6 .content {
    text-align: center;
  }
  .cid-tfV6b8AlI6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tfV6b8AlI6 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tfV6b8AlI6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tfV6b8AlI6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tfV6b8AlI6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-tfV6b8AlI6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tfV6b8AlI6 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tfV6b8AlI6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tfV6b8AlI6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfV6b8AlI6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tfV6b8AlI6 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tfV6b8AlI6 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tfV6b8AlI6 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tfV6b8AlI6 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tfV6b8AlI6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tfV6b8AlI6 .list {
  list-style-type: none;
  padding: 0;
}
.cid-tfV6b8AlI6 H5 {
  color: #0dbe64;
}
.cid-tcf6tlPGC6 {
  z-index: 1000;
  width: 100%;
}
.cid-tcf6tlPGC6 nav.navbar {
  position: fixed;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-tcf6tlPGC6 .dropdown-item:hover,
.cid-tcf6tlPGC6 .dropdown-item:focus {
  color: #14a0a7 !important;
}
.cid-tcf6tlPGC6 .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcf6tlPGC6 .nav-link {
  position: relative;
  padding: 0;
}
.cid-tcf6tlPGC6 .container {
  display: flex;
  margin: auto;
}
.cid-tcf6tlPGC6 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcf6tlPGC6 .dropdown-menu,
.cid-tcf6tlPGC6 .navbar.opened {
  background: #14a0a7 !important;
}
.cid-tcf6tlPGC6 .nav-item:focus,
.cid-tcf6tlPGC6 .nav-link:focus {
  outline: none;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcf6tlPGC6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcf6tlPGC6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcf6tlPGC6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcf6tlPGC6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(20, 160, 167, 0.7);
}
.cid-tcf6tlPGC6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcf6tlPGC6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcf6tlPGC6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcf6tlPGC6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tcf6tlPGC6 .navbar.collapsed {
  justify-content: center;
}
.cid-tcf6tlPGC6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcf6tlPGC6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcf6tlPGC6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tcf6tlPGC6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcf6tlPGC6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcf6tlPGC6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcf6tlPGC6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcf6tlPGC6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcf6tlPGC6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcf6tlPGC6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcf6tlPGC6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcf6tlPGC6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcf6tlPGC6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcf6tlPGC6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tcf6tlPGC6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcf6tlPGC6 .dropdown-item.active,
.cid-tcf6tlPGC6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcf6tlPGC6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcf6tlPGC6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcf6tlPGC6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a0a7;
}
.cid-tcf6tlPGC6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcf6tlPGC6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcf6tlPGC6 ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-tcf6tlPGC6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tcf6tlPGC6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tcf6tlPGC6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tcf6tlPGC6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcf6tlPGC6 .navbar-dropdown {
  padding: 19px 1rem;
  position: fixed;
}
.cid-tcf6tlPGC6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .navbar {
    height: 70px;
  }
  .cid-tcf6tlPGC6 .navbar.opened {
    height: auto;
  }
  .cid-tcf6tlPGC6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcf6tlPGC6 a {
  display: inline;
}
.cid-tcf6tlPGC6 img {
  display: inline;
  padding-right: 10px;
}
.cid-tcf6tlPGC6 .dropdown-toggle:after {
  display: none;
}
.cid-tcf6tlPGC6 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-tcf6tlPGC6 .dropdown-item:hover {
  color: #0d646f !important;
}
@media (max-width: 990px) {
  .cid-tcf6tlPGC6 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tcf6tlPGC6 .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-tcf6tlPGC6 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-tcf6tlPGC6 .nav-item {
  margin-right: 32px;
}
.cid-tcf6tlPGC6 .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-tcf6tlPGC6 ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-tcf6tlPGC6 .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-tcf6tlPGC6 .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-tcf6tlPGC6 .navbar-nav {
  margin: auto;
}
.cid-tcf6tlPGC6 .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-tcf6tlPGC6 .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-tcf6tlPGC6 .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-tcf6tlPGC6 .btn {
  border-radius: 1000px !important;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-tcf6tlPGC6 .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-tcf6tlPGC6 .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-tcf6tlPGC6 .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-tcf6tlPGC6 .dropdown-item:focus {
  color: #0d646f !important;
}
@media (max-width: 945px) {
  .cid-tcf6tlPGC6 .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-tcf6tlPGC6 .top {
    margin-top: 25px;
  }
}
.cid-tcf6tlPGC6 .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-tcf6tlPGC6 .container,
  .cid-tcf6tlPGC6 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcf6tlPGC6 li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-tcf6tlPGC6 ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-tcf6tlPGC6 .icons-menu {
    min-width: initial !important;
  }
  .cid-tcf6tlPGC6 a.btn {
    margin-top: 10px;
  }
}
.cid-tcf6tlPGC6 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcB0gjjLU0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/head-inviaggio.jpg");
}
.cid-tcB0gjjLU0 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tcB0gjjLU0 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14a0a7;
}
.cid-tcB0gjjLU0 .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tcB0gjjLU0 .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-tcB0gjjLU0 .right-side {
  max-width: 554px;
}
.cid-tcB0gjjLU0 .rs {
  margin-right: 60px;
}
.cid-tcB0gjjLU0 .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tcB0gjjLU0 .margin {
  margin-right: 14px;
}
.cid-tcB0gjjLU0 .gray {
  padding: 45px 0;
  background-color: #14a0a7;
}
.cid-tcB0gjjLU0 img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-tcB0gjjLU0 .gray {
    padding: 0px 0 5px;
  }
  .cid-tcB0gjjLU0 img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-tcB0gjjLU0 .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-tcB0gjjLU0 .b {
    margin-bottom: 10px;
  }
}
.cid-tcB0gjjLU0 .btn {
  margin-top: 20px;
}
.cid-tcB0gjjLU0 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tcB0gjjLU0 .mbr-text,
.cid-tcB0gjjLU0 .button-align {
  color: #0d646f;
}
.cid-tcB0s9C5iw {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fcfcfc;
}
.cid-tcB0s9C5iw .mbr-section-subtitle {
  color: #0d646f;
  text-align: left;
  margin: auto;
}
.cid-tcB0s9C5iw .mbr-section-title {
  text-align: left;
  color: #14a0a7;
  padding-bottom: 24px;
  margin: auto;
}
.cid-tcB0s9C5iw .row {
  align-items: center;
  height: 100%;
}
.cid-tcB0s9C5iw .wrapper {
  margin: auto;
}
.cid-tcB0hQgeKf {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fcfcfc;
}
.cid-tcB0hQgeKf .title-block {
  margin-bottom: 32px;
  align-items: center;
}
.cid-tcB0hQgeKf .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-tcB0hQgeKf .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tcB0hQgeKf .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-tcB0hQgeKf .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tcB0hQgeKf .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tcB0hQgeKf .shadow:hover .mbr-iconfont,
.cid-tcB0hQgeKf .shadow:hover .number,
.cid-tcB0hQgeKf .shadow:hover .card-title {
  color: #0d646f !important;
}
.cid-tcB0hQgeKf .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-tcB0hQgeKf .card-title {
  margin-bottom: 18px;
  color: #14a0a7;
  transition: 0.35s;
}
.cid-tcB0hQgeKf .card-text {
  margin-bottom: 17px;
  color: #8c8c95;
}
.cid-tcB0hQgeKf H3 {
  color: #14142b;
  text-align: center;
}
.cid-tcB0hQgeKf img {
  width: auto;
  height: 70px;
}
.cid-tcB0hQgeKf .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-tcB0hQgeKf .date {
  margin-bottom: 24px;
  color: #5f5d68;
}
.cid-tcB0hQgeKf .link-title {
  display: inline-block;
}
.cid-tcB0hQgeKf .margin {
  margin-right: 14px;
}
.cid-tcB0hQgeKf .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
  color: #e5570f;
}
.cid-tcB0hQgeKf .link-row {
  align-items: center;
}
@media (max-width: 550px) {
  .cid-tcB0hQgeKf .title-block {
    flex-direction: column;
  }
  .cid-tcB0hQgeKf .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tcB0hQgeKf .card-wrapper {
    padding: 24px 25px 34px 25px;
  }
}
.cid-tcB0hQgeKf .item.features-image {
  margin-top: 30px;
}
.cid-tcB0hQgeKf .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-tcB0hQgeKf .item.features-image:nth-child(2) {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .cid-tcB0hQgeKf .item.features-image:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-tcB0hQgeKf .mbr-section-subtitle {
  color: #14a0a7;
}
.cid-ti9Hmh4XCn.popup-builder {
  background-color: #ffffff;
}
.cid-ti9Hmh4XCn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ti9Hmh4XCn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  height: 100%;
}
.cid-ti9Hmh4XCn .modal-content,
.cid-ti9Hmh4XCn .modal-dialog {
  height: auto;
}
.cid-ti9Hmh4XCn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ti9Hmh4XCn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ti9Hmh4XCn .form-wrapper .mbr-form .form-group,
  .cid-ti9Hmh4XCn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ti9Hmh4XCn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ti9Hmh4XCn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ti9Hmh4XCn .mbr-text {
  text-align: center;
  color: #fcfcfc;
}
.cid-ti9Hmh4XCn .pt-0 {
  padding-top: 0 !important;
}
.cid-ti9Hmh4XCn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ti9Hmh4XCn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ti9Hmh4XCn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ti9Hmh4XCn .modal-open {
  overflow: hidden;
}
.cid-ti9Hmh4XCn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ti9Hmh4XCn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ti9Hmh4XCn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
.cid-ti9Hmh4XCn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ti9Hmh4XCn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ti9Hmh4XCn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ti9Hmh4XCn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ti9Hmh4XCn .modal-content {
  background: #0d646f;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  height: 100%;
  overflow: auto;
}
.cid-ti9Hmh4XCn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ti9Hmh4XCn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ti9Hmh4XCn .modal-backdrop.fade {
  opacity: 0;
}
.cid-ti9Hmh4XCn .modal-backdrop.show {
  opacity: .5;
}
.cid-ti9Hmh4XCn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ti9Hmh4XCn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ti9Hmh4XCn .modal-header {
    padding: 1rem;
  }
}
.cid-ti9Hmh4XCn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ti9Hmh4XCn .modal-header .close svg {
  fill: #fcfcfc;
}
.cid-ti9Hmh4XCn .modal-header .close:hover {
  opacity: 1;
}
.cid-ti9Hmh4XCn .modal-header .close:focus {
  outline: none;
}
.cid-ti9Hmh4XCn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fcfcfc;
}
.cid-ti9Hmh4XCn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ti9Hmh4XCn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ti9Hmh4XCn .modal-body {
    padding: 1rem;
  }
}
.cid-ti9Hmh4XCn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ti9Hmh4XCn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ti9Hmh4XCn .modal-footer {
    padding: 1rem;
  }
}
.cid-ti9Hmh4XCn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ti9Hmh4XCn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ti9Hmh4XCn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ti9Hmh4XCn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ti9Hmh4XCn .modal-lg,
  .cid-ti9Hmh4XCn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ti9Hmh4XCn .modal-xl {
    max-width: 1140px;
  }
}
.cid-ti9Hmh4XCn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ti9Hmh4XCn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ti9Hmh4XCn .form-group {
  margin-bottom: 1rem;
}
.cid-ti9Hmh4XCn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ti9Hmh4XCn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ti9Hmh4XCn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ti9Hmh4XCn .mbr-section-btn {
  margin: 0;
}
.cid-ti9Hmh4XCn .mbr-section-btn .btn {
  margin: 0;
}
.cid-tcjnvkax5p {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .content {
    text-align: center;
  }
  .cid-tcjnvkax5p .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tcjnvkax5p .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tcjnvkax5p .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tcjnvkax5p .google-map {
  height: 25rem;
  position: relative;
}
.cid-tcjnvkax5p .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tcjnvkax5p .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tcjnvkax5p .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tcjnvkax5p .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tcjnvkax5p .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tcjnvkax5p .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tcjnvkax5p .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tcjnvkax5p .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tcjnvkax5p .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tcjnvkax5p .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tcjnvkax5p .list {
  list-style-type: none;
  padding: 0;
}
.cid-tcjnvkax5p H5 {
  color: #0dbe64;
}
