.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e6c63b !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !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: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #e6c63b;
  color: #e6c63b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b39617 !important;
  background-color: transparent!important;
  border-color: #b39617 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe885;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: #ffd82e !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #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: #e6c63b !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a68b15 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e6c63b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #ff9966;
}
.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: #e6c63b;
  border-color: #e6c63b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e6c63b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdfbf0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e6c63b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e6c63b;
}
/* 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: #e6c63b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e6c63b;
}
.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: #e6c63b;
  border-bottom-color: #e6c63b;
}
.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: #000000 !important;
  background-color: #e6c63b !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: #e43f3f !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='%23e6c63b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-toefybJJAb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toefybJJAb nav.navbar {
  position: fixed;
}
.cid-toefybJJAb .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-toefybJJAb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toefybJJAb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toefybJJAb .dropdown-item:hover,
.cid-toefybJJAb .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-toefybJJAb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toefybJJAb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toefybJJAb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toefybJJAb .nav-link {
  position: relative;
}
.cid-toefybJJAb .container {
  display: flex;
  margin: auto;
}
.cid-toefybJJAb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toefybJJAb .dropdown-menu,
.cid-toefybJJAb .navbar.opened {
  background: #ffffff !important;
}
.cid-toefybJJAb .nav-item:focus,
.cid-toefybJJAb .nav-link:focus {
  outline: none;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toefybJJAb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toefybJJAb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-toefybJJAb .navbar.opened {
  transition: all 0.3s;
}
.cid-toefybJJAb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toefybJJAb .navbar .navbar-logo img {
  width: auto;
}
.cid-toefybJJAb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toefybJJAb .navbar.collapsed {
  justify-content: center;
}
.cid-toefybJJAb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toefybJJAb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toefybJJAb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toefybJJAb .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-toefybJJAb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toefybJJAb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toefybJJAb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toefybJJAb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toefybJJAb .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-toefybJJAb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toefybJJAb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toefybJJAb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toefybJJAb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toefybJJAb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toefybJJAb .navbar.navbar-short {
  min-height: 60px;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toefybJJAb .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-toefybJJAb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toefybJJAb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toefybJJAb .dropdown-item.active,
.cid-toefybJJAb .dropdown-item:active {
  background-color: transparent;
}
.cid-toefybJJAb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toefybJJAb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toefybJJAb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toefybJJAb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toefybJJAb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toefybJJAb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toefybJJAb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toefybJJAb .navbar {
    height: 70px;
  }
  .cid-toefybJJAb .navbar.opened {
    height: auto;
  }
  .cid-toefybJJAb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tor4vHNJUO {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-tor4vHNJUO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tor4vHNJUO .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-tor4vHNJUO .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-tor4vHNJUO .mbr-section-title {
  color: #ffffff;
}
.cid-tsgXqO2Mtu {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsgXqO2Mtu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsgXqO2Mtu .row {
  flex-direction: row-reverse;
}
.cid-tsgXqO2Mtu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsgXqO2Mtu .text-wrapper {
    padding: 2rem;
  }
}
.cid-tor5i161qT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tor6ztnnXC {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-tor6ztnnXC .carousel {
  width: 100%;
}
.cid-tor6ztnnXC .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tor6ztnnXC .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tor6ztnnXC .carousel-caption {
  bottom: 40px;
}
.cid-tor6ztnnXC .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tor6ztnnXC .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tor6ztnnXC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tor6ztnnXC .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tor6ztnnXC .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tor6ztnnXC .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tor6ztnnXC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tor6ztnnXC .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tor6ztnnXC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tor6ztnnXC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tor6ztnnXC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tor6ztnnXC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tor6ztnnXC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tor6ztnnXC .carousel-indicators li.active,
.cid-tor6ztnnXC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tor6ztnnXC .carousel-indicators li::after,
.cid-tor6ztnnXC .carousel-indicators li::before {
  content: none;
}
.cid-tor6ztnnXC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tor6ztnnXC .carousel-indicators {
    display: none !important;
  }
}
.cid-tor8mJ4cCF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tor8mJ4cCF .container {
    max-width: 1400px;
  }
}
.cid-tor8mJ4cCF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-tor8mJ4cCF .card-wrapper {
  margin-top: 3rem;
}
.cid-tor8mJ4cCF .row {
  justify-content: center;
}
.cid-tore2l3QxY {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tore2l3QxY .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tore2l3QxY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tore2l3QxY .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #e6c63b;
}
.cid-tore2l3QxY .panel-body,
.cid-tore2l3QxY .card-header {
  padding: 1rem 0;
}
.cid-tore2l3QxY .panel-title-edit {
  color: #000000;
}
.cid-torcgNiPU2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-torcgNiPU2 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-torcgNiPU2 .card {
    margin-bottom: 2rem!important;
  }
  .cid-torcgNiPU2 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-torcgNiPU2 .link-wrap {
    align-items: center;
  }
}
.cid-torcgNiPU2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-torcgNiPU2 .mbr-text,
.cid-torcgNiPU2 .link-wrap,
.cid-torcgNiPU2 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-torcgNiPU2 .card-title,
.cid-torcgNiPU2 .card-box {
  text-align: left;
}
.cid-torhVFVyTj {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-torhVFVyTj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-torhVFVyTj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-torhVFVyTj .text-wrapper {
    padding: 2rem;
  }
}
.cid-torhVFVyTj .mbr-section-title {
  text-align: left;
}
.cid-toS2u8Wx33 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toS2u8Wx33 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toS2u8Wx33 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toS2u8Wx33 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toS2u8Wx33 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toS2u8Wx33 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toS2u8Wx33 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toS2u8Wx33 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toefybJJAb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toefybJJAb nav.navbar {
  position: fixed;
}
.cid-toefybJJAb .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-toefybJJAb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toefybJJAb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toefybJJAb .dropdown-item:hover,
.cid-toefybJJAb .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-toefybJJAb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toefybJJAb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toefybJJAb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toefybJJAb .nav-link {
  position: relative;
}
.cid-toefybJJAb .container {
  display: flex;
  margin: auto;
}
.cid-toefybJJAb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toefybJJAb .dropdown-menu,
.cid-toefybJJAb .navbar.opened {
  background: #ffffff !important;
}
.cid-toefybJJAb .nav-item:focus,
.cid-toefybJJAb .nav-link:focus {
  outline: none;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toefybJJAb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toefybJJAb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-toefybJJAb .navbar.opened {
  transition: all 0.3s;
}
.cid-toefybJJAb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toefybJJAb .navbar .navbar-logo img {
  width: auto;
}
.cid-toefybJJAb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toefybJJAb .navbar.collapsed {
  justify-content: center;
}
.cid-toefybJJAb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toefybJJAb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toefybJJAb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toefybJJAb .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-toefybJJAb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toefybJJAb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toefybJJAb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toefybJJAb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toefybJJAb .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-toefybJJAb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toefybJJAb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toefybJJAb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toefybJJAb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toefybJJAb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toefybJJAb .navbar.navbar-short {
  min-height: 60px;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toefybJJAb .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-toefybJJAb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toefybJJAb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toefybJJAb .dropdown-item.active,
.cid-toefybJJAb .dropdown-item:active {
  background-color: transparent;
}
.cid-toefybJJAb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toefybJJAb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toefybJJAb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toefybJJAb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toefybJJAb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toefybJJAb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toefybJJAb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toefybJJAb .navbar {
    height: 70px;
  }
  .cid-toefybJJAb .navbar.opened {
    height: auto;
  }
  .cid-toefybJJAb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toegy6e6B7 {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-toegy6e6B7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-toegy6e6B7 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-toegy6e6B7 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-toegy6e6B7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-toekZ8repy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-toekZ8repy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-toekZ8repy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-toekZ8repy .text-wrapper {
    padding: 2rem;
  }
}
.cid-toekZ8repy .mbr-section-title {
  text-align: left;
}
.cid-toekZ8repy .mbr-text {
  text-align: left;
}
.cid-uOBb1wuYSJ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/img-1137-2000x1333.jpg");
}
.cid-uOBb1wuYSJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOBb1wuYSJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOBb1wuYSJ .mbr-section-title,
.cid-uOBb1wuYSJ .mbr-text,
.cid-uOBb1wuYSJ .mbr-section-btn {
  text-align: center;
}
.cid-uOBb1wuYSJ .video-wrapper {
  margin: auto;
}
.cid-uOBb1wuYSJ .video-wrapper iframe {
  width: 100%;
}
.cid-toenXtPERe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-toenXtPERe img,
.cid-toenXtPERe .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-toenXtPERe .item:focus,
.cid-toenXtPERe span:focus {
  outline: none;
}
.cid-toenXtPERe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-toenXtPERe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-toenXtPERe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-toenXtPERe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-toenXtPERe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-toenXtPERe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-toenXtPERe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-toenXtPERe .mbr-section-title {
  color: #232323;
}
.cid-toenXtPERe .mbr-text,
.cid-toenXtPERe .mbr-section-btn {
  text-align: center;
}
.cid-toenXtPERe .item-title {
  text-align: center;
}
.cid-toenXtPERe .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-toepmUgNEE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-toepmUgNEE .line {
  background-color: #e43f3f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-toepb1olkV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-toepb1olkV .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-toepb1olkV .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-toepb1olkV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-toepb1olkV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
}
.cid-toepb1olkV .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #e43f3f;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-toepb1olkV .social-row .soc-item:hover {
  background-color: #e43f3f;
}
.cid-toepb1olkV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-toepb1olkV .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-toepb1olkV .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-toepb1olkV .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-toepb1olkV .card-title {
  text-align: left;
}
.cid-toepb1olkV .card-subtitle {
  text-align: center;
}
.cid-toepb1olkV .mbr-text,
.cid-toepb1olkV .social-row {
  text-align: left;
}
.cid-toel9AeQ3a {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-toel9AeQ3a .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-toel9AeQ3a .team-card:hover {
  transform: translateY(-10px);
}
.cid-toel9AeQ3a .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-toel9AeQ3a .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-toel9AeQ3a .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-toel9AeQ3a .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-toel9AeQ3a .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-toel9AeQ3a .social-row {
  text-align: center;
}
.cid-toel9AeQ3a .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
}
.cid-toel9AeQ3a .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #e43f3f;
  font-size: 1.5rem;
}
.cid-toel9AeQ3a .social-row .soc-item:hover {
  background-color: #e43f3f;
}
.cid-toel9AeQ3a .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tor1RZIcPA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-1052-2000x1333.jpg");
}
.cid-tor1RZIcPA .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tor1RZIcPA form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tor1RZIcPA form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tor1RZIcPA form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tor1RZIcPA .mbr-section-title {
  color: #ffffff;
}
.cid-tor1RZIcPA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-toS2mmSWfn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-toS2mmSWfn .google-map {
  height: 350px;
  position: relative;
}
.cid-toS2mmSWfn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-toS2mmSWfn .google-map [data-state-details] {
  color: #6b6763;
  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-toS2mmSWfn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-toS2mmSWfn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRTyxK9bFX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uRTyxK9bFX .google-map {
  height: 350px;
  position: relative;
}
.cid-uRTyxK9bFX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uRTyxK9bFX .google-map [data-state-details] {
  color: #6b6763;
  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-uRTyxK9bFX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRTyxK9bFX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-toS2u8Wx33 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toS2u8Wx33 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toS2u8Wx33 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toS2u8Wx33 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toS2u8Wx33 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toS2u8Wx33 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toS2u8Wx33 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toS2u8Wx33 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toefybJJAb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toefybJJAb nav.navbar {
  position: fixed;
}
.cid-toefybJJAb .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-toefybJJAb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toefybJJAb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toefybJJAb .dropdown-item:hover,
.cid-toefybJJAb .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-toefybJJAb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toefybJJAb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toefybJJAb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toefybJJAb .nav-link {
  position: relative;
}
.cid-toefybJJAb .container {
  display: flex;
  margin: auto;
}
.cid-toefybJJAb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toefybJJAb .dropdown-menu,
.cid-toefybJJAb .navbar.opened {
  background: #ffffff !important;
}
.cid-toefybJJAb .nav-item:focus,
.cid-toefybJJAb .nav-link:focus {
  outline: none;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toefybJJAb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toefybJJAb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-toefybJJAb .navbar.opened {
  transition: all 0.3s;
}
.cid-toefybJJAb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toefybJJAb .navbar .navbar-logo img {
  width: auto;
}
.cid-toefybJJAb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toefybJJAb .navbar.collapsed {
  justify-content: center;
}
.cid-toefybJJAb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toefybJJAb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toefybJJAb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toefybJJAb .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-toefybJJAb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toefybJJAb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toefybJJAb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toefybJJAb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toefybJJAb .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-toefybJJAb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toefybJJAb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toefybJJAb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toefybJJAb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toefybJJAb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toefybJJAb .navbar.navbar-short {
  min-height: 60px;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toefybJJAb .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-toefybJJAb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toefybJJAb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toefybJJAb .dropdown-item.active,
.cid-toefybJJAb .dropdown-item:active {
  background-color: transparent;
}
.cid-toefybJJAb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toefybJJAb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toefybJJAb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toefybJJAb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toefybJJAb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toefybJJAb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toefybJJAb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toefybJJAb .navbar {
    height: 70px;
  }
  .cid-toefybJJAb .navbar.opened {
    height: auto;
  }
  .cid-toefybJJAb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tq7MB3kVD5 {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-tq7MB3kVD5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tq7MB3kVD5 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-tq7MB3kVD5 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-tq7MB3kVD5 .mbr-section-title {
  color: #ffffff;
}
.cid-tq7OvXrUQz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tq7OvXrUQz .text-wrapper {
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-tq7OvXrUQz .text-wrapper {
    padding: 2rem;
  }
}
.cid-tq7OvXrUQz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tq7OvXrUQz .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tqvFMJKnKb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tpQwSkQWkP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tpQwSkQWkP .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tpQwSkQWkP .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tpQwSkQWkP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tpQwSkQWkP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tpQwSkQWkP .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tpQwSkQWkP .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tpQwSkQWkP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tpQwSkQWkP .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tpQwSkQWkP .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tpQwSkQWkP .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uRTEiB2cna {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uRTEiB2cna .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uRTEiB2cna .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-uRTEiB2cna .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uRTEiB2cna .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uRTEiB2cna .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uRTEiB2cna .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uRTEiB2cna .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uRTEiB2cna .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uRTEiB2cna .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRTEiB2cna .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-toS2u8Wx33 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toS2u8Wx33 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toS2u8Wx33 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toS2u8Wx33 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toS2u8Wx33 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toS2u8Wx33 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toS2u8Wx33 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toS2u8Wx33 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toefybJJAb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toefybJJAb nav.navbar {
  position: fixed;
}
.cid-toefybJJAb .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-toefybJJAb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toefybJJAb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toefybJJAb .dropdown-item:hover,
.cid-toefybJJAb .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-toefybJJAb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toefybJJAb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toefybJJAb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toefybJJAb .nav-link {
  position: relative;
}
.cid-toefybJJAb .container {
  display: flex;
  margin: auto;
}
.cid-toefybJJAb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toefybJJAb .dropdown-menu,
.cid-toefybJJAb .navbar.opened {
  background: #ffffff !important;
}
.cid-toefybJJAb .nav-item:focus,
.cid-toefybJJAb .nav-link:focus {
  outline: none;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toefybJJAb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toefybJJAb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-toefybJJAb .navbar.opened {
  transition: all 0.3s;
}
.cid-toefybJJAb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toefybJJAb .navbar .navbar-logo img {
  width: auto;
}
.cid-toefybJJAb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toefybJJAb .navbar.collapsed {
  justify-content: center;
}
.cid-toefybJJAb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toefybJJAb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toefybJJAb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toefybJJAb .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-toefybJJAb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toefybJJAb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toefybJJAb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toefybJJAb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toefybJJAb .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-toefybJJAb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toefybJJAb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toefybJJAb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toefybJJAb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toefybJJAb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toefybJJAb .navbar.navbar-short {
  min-height: 60px;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toefybJJAb .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-toefybJJAb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toefybJJAb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toefybJJAb .dropdown-item.active,
.cid-toefybJJAb .dropdown-item:active {
  background-color: transparent;
}
.cid-toefybJJAb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toefybJJAb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toefybJJAb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toefybJJAb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toefybJJAb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toefybJJAb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toefybJJAb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toefybJJAb .navbar {
    height: 70px;
  }
  .cid-toefybJJAb .navbar.opened {
    height: auto;
  }
  .cid-toefybJJAb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tquO15sRus {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-tquO15sRus .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tquO15sRus .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-tquO15sRus .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-tquO15sRus .mbr-section-title {
  color: #ffffff;
}
.cid-uRTFK5mJ0I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uRTFK5mJ0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRTFK5mJ0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRTFK5mJ0I .row {
    flex-direction: column-reverse;
  }
  .cid-uRTFK5mJ0I .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRTFK5mJ0I .google-map {
  height: 100%;
  position: relative;
}
.cid-uRTFK5mJ0I .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uRTFK5mJ0I .google-map [data-state-details] {
  color: #6b6763;
  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-uRTFK5mJ0I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRTFK5mJ0I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRTFK5mJ0I .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uRTFK5mJ0I .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uRTFK5mJ0I .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uRTFK5mJ0I .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRTFK5mJ0I .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uRTFK5mJ0I .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-uRTGcflWfC {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uRTGcflWfC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRTGcflWfC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRTGcflWfC .row {
    flex-direction: column-reverse;
  }
  .cid-uRTGcflWfC .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRTGcflWfC .google-map {
  height: 100%;
  position: relative;
}
.cid-uRTGcflWfC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uRTGcflWfC .google-map [data-state-details] {
  color: #6b6763;
  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-uRTGcflWfC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRTGcflWfC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRTGcflWfC .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uRTGcflWfC .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uRTGcflWfC .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uRTGcflWfC .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRTGcflWfC .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uRTGcflWfC .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-uRTGXTTv2T {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uRTGXTTv2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRTGXTTv2T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRTGXTTv2T .row {
    flex-direction: column-reverse;
  }
  .cid-uRTGXTTv2T .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRTGXTTv2T .google-map {
  height: 100%;
  position: relative;
}
.cid-uRTGXTTv2T .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uRTGXTTv2T .google-map [data-state-details] {
  color: #6b6763;
  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-uRTGXTTv2T .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRTGXTTv2T .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRTGXTTv2T .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uRTGXTTv2T .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uRTGXTTv2T .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uRTGXTTv2T .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRTGXTTv2T .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uRTGXTTv2T .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-uRTHI2Fdx1 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uRTHI2Fdx1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRTHI2Fdx1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRTHI2Fdx1 .row {
    flex-direction: column-reverse;
  }
  .cid-uRTHI2Fdx1 .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRTHI2Fdx1 .google-map {
  height: 100%;
  position: relative;
}
.cid-uRTHI2Fdx1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uRTHI2Fdx1 .google-map [data-state-details] {
  color: #6b6763;
  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-uRTHI2Fdx1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRTHI2Fdx1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRTHI2Fdx1 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uRTHI2Fdx1 .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uRTHI2Fdx1 .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uRTHI2Fdx1 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRTHI2Fdx1 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uRTHI2Fdx1 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tqvvUdrOos {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqvvUdrOos .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tqvvUdrOos .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tqvvUdrOos .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqvvUdrOos .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tqvvUdrOos .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tqvvUdrOos P {
  text-align: center;
}
.cid-tqvvUdrOos .card-title {
  text-align: center;
}
.cid-tqvy6xCICv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqvy6xCICv .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tqvy6xCICv .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tqvy6xCICv .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqvy6xCICv .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tqvy6xCICv .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-tqvy6xCICv P {
  text-align: center;
}
.cid-tqvy6xCICv .card-title {
  text-align: center;
}
.cid-uRTSyW6LIt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRTSyW6LIt .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uRTSyW6LIt .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uRTSyW6LIt .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRTSyW6LIt .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uRTSyW6LIt .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #e6c63b;
}
.cid-uRTSyW6LIt P {
  text-align: center;
}
.cid-uRTSyW6LIt .card-title {
  text-align: center;
}
.cid-ulWMClcKQ3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulWMClcKQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulWMClcKQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tquNRTLFNo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tquNRTLFNo .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tquNRTLFNo form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tquNRTLFNo form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tquNRTLFNo form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-toS2u8Wx33 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toS2u8Wx33 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toS2u8Wx33 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toS2u8Wx33 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toS2u8Wx33 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toS2u8Wx33 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toS2u8Wx33 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toS2u8Wx33 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toefybJJAb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toefybJJAb nav.navbar {
  position: fixed;
}
.cid-toefybJJAb .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-toefybJJAb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toefybJJAb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toefybJJAb .dropdown-item:hover,
.cid-toefybJJAb .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-toefybJJAb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toefybJJAb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toefybJJAb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toefybJJAb .nav-link {
  position: relative;
}
.cid-toefybJJAb .container {
  display: flex;
  margin: auto;
}
.cid-toefybJJAb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toefybJJAb .dropdown-menu,
.cid-toefybJJAb .navbar.opened {
  background: #ffffff !important;
}
.cid-toefybJJAb .nav-item:focus,
.cid-toefybJJAb .nav-link:focus {
  outline: none;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toefybJJAb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toefybJJAb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toefybJJAb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toefybJJAb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-toefybJJAb .navbar.opened {
  transition: all 0.3s;
}
.cid-toefybJJAb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toefybJJAb .navbar .navbar-logo img {
  width: auto;
}
.cid-toefybJJAb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toefybJJAb .navbar.collapsed {
  justify-content: center;
}
.cid-toefybJJAb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toefybJJAb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toefybJJAb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toefybJJAb .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-toefybJJAb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toefybJJAb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toefybJJAb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toefybJJAb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toefybJJAb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toefybJJAb .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-toefybJJAb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toefybJJAb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toefybJJAb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toefybJJAb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toefybJJAb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toefybJJAb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-toefybJJAb .navbar.navbar-short {
  min-height: 60px;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toefybJJAb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toefybJJAb .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-toefybJJAb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toefybJJAb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toefybJJAb .dropdown-item.active,
.cid-toefybJJAb .dropdown-item:active {
  background-color: transparent;
}
.cid-toefybJJAb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toefybJJAb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-toefybJJAb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toefybJJAb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toefybJJAb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toefybJJAb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toefybJJAb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toefybJJAb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toefybJJAb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toefybJJAb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toefybJJAb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toefybJJAb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-toefybJJAb .navbar {
    height: 70px;
  }
  .cid-toefybJJAb .navbar.opened {
    height: auto;
  }
  .cid-toefybJJAb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toAx0fHETb {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-toAx0fHETb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-toAx0fHETb .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-toAx0fHETb .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-toAx0fHETb .mbr-section-title {
  color: #ffffff;
}
.cid-toAvRdstPR {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-trUL14iDee {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-trUL14iDee .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-trUL14iDee .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-trUL14iDee .mbr-iconfont {
  font-size: 2rem;
  color: #e43f3f;
  padding-right: 1.5rem;
}
.cid-trUL6yayZU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-trUL6yayZU .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-trUL6yayZU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-trUL6yayZU .mbr-iconfont {
  font-size: 2rem;
  color: #e43f3f;
  padding-right: 1.5rem;
}
.cid-tsgmLucajg {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsgmLucajg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsgmLucajg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsgmLucajg .text-wrapper {
    padding: 2rem;
  }
}
.cid-tshdGryzdI {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tshdGryzdI .row {
  flex-direction: row-reverse;
}
.cid-tshdGryzdI .video-wrapper iframe {
  width: 100%;
}
.cid-tshdGryzdI .mbr-section-title,
.cid-tshdGryzdI .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tshdGryzdI .text-wrapper {
    padding: 2rem;
  }
}
.cid-trUPIwtxGV {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-trUPIwtxGV .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e6c63b;
  margin-left: 1rem;
}
.cid-trUPIwtxGV .panel-group {
  border: none;
}
.cid-trUPIwtxGV .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-trUPIwtxGV .panel-body,
.cid-trUPIwtxGV .card-header {
  padding: 1rem 0;
}
.cid-trUPIwtxGV .panel-title-edit {
  color: #000000;
}
.cid-trUPIwtxGV .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ulUfyyOIeU {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-ulUfyyOIeU .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulUfyyOIeU .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulUfyyOIeU .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulUfyyOIeU .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-ulUfyyOIeU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulUfyyOIeU .row {
  justify-content: center;
}
.cid-ulUfyyOIeU .card-text {
  color: #263d5a;
}
.cid-ulUfyyOIeU .card-title,
.cid-ulUfyyOIeU .iconfont-wrapper {
  color: #263d5a;
}
.cid-ulUfyyOIeU .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulUfyyOIeU .mbr-section-title {
  color: #263d5a;
}
.cid-ulUfyyOIeU .card-price,
.cid-ulUfyyOIeU .iconfont-wrapper {
  color: #263d5a;
}
.cid-toS2u8Wx33 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toS2u8Wx33 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toS2u8Wx33 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toS2u8Wx33 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toS2u8Wx33 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toS2u8Wx33 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toS2u8Wx33 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toS2u8Wx33 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toS2u8Wx33 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toS2u8Wx33 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toS2u8Wx33 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tsh6PPxxrx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsh6PPxxrx nav.navbar {
  position: fixed;
}
.cid-tsh6PPxxrx .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-tsh6PPxxrx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsh6PPxxrx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsh6PPxxrx .dropdown-item:hover,
.cid-tsh6PPxxrx .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tsh6PPxxrx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsh6PPxxrx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsh6PPxxrx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsh6PPxxrx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsh6PPxxrx .nav-link {
  position: relative;
}
.cid-tsh6PPxxrx .container {
  display: flex;
  margin: auto;
}
.cid-tsh6PPxxrx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsh6PPxxrx .dropdown-menu,
.cid-tsh6PPxxrx .navbar.opened {
  background: #ffffff !important;
}
.cid-tsh6PPxxrx .nav-item:focus,
.cid-tsh6PPxxrx .nav-link:focus {
  outline: none;
}
.cid-tsh6PPxxrx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsh6PPxxrx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsh6PPxxrx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsh6PPxxrx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsh6PPxxrx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsh6PPxxrx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsh6PPxxrx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tsh6PPxxrx .navbar.opened {
  transition: all 0.3s;
}
.cid-tsh6PPxxrx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsh6PPxxrx .navbar .navbar-logo img {
  width: auto;
}
.cid-tsh6PPxxrx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsh6PPxxrx .navbar.collapsed {
  justify-content: center;
}
.cid-tsh6PPxxrx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsh6PPxxrx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsh6PPxxrx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tsh6PPxxrx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsh6PPxxrx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsh6PPxxrx .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-tsh6PPxxrx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsh6PPxxrx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsh6PPxxrx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsh6PPxxrx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsh6PPxxrx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsh6PPxxrx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsh6PPxxrx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsh6PPxxrx .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-tsh6PPxxrx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsh6PPxxrx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsh6PPxxrx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsh6PPxxrx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsh6PPxxrx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsh6PPxxrx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tsh6PPxxrx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsh6PPxxrx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsh6PPxxrx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsh6PPxxrx .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-tsh6PPxxrx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsh6PPxxrx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsh6PPxxrx .dropdown-item.active,
.cid-tsh6PPxxrx .dropdown-item:active {
  background-color: transparent;
}
.cid-tsh6PPxxrx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsh6PPxxrx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsh6PPxxrx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsh6PPxxrx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tsh6PPxxrx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsh6PPxxrx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsh6PPxxrx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsh6PPxxrx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsh6PPxxrx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsh6PPxxrx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tsh6PPxxrx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsh6PPxxrx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsh6PPxxrx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsh6PPxxrx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsh6PPxxrx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsh6PPxxrx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsh6PPxxrx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsh6PPxxrx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsh6PPxxrx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsh6PPxxrx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsh6PPxxrx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsh6PPxxrx .navbar {
    height: 70px;
  }
  .cid-tsh6PPxxrx .navbar.opened {
    height: auto;
  }
  .cid-tsh6PPxxrx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsh6PQFJQ2 {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-tsh6PQFJQ2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tsh6PQFJQ2 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-tsh6PQFJQ2 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-tsh6PQFJQ2 .mbr-section-title {
  color: #ffffff;
}
.cid-tsh6PRycE2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsh6PRYye6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsh6PRYye6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsh6PRYye6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsh6PRYye6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tshaaMg5cl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tshaaMg5cl .row {
  flex-direction: row-reverse;
}
.cid-tshaaMg5cl .video-wrapper iframe {
  width: 100%;
}
.cid-tshaaMg5cl .mbr-section-title,
.cid-tshaaMg5cl .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tshaaMg5cl .text-wrapper {
    padding: 2rem;
  }
}
.cid-tshcKSbwXV {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tshcKSbwXV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tshcKSbwXV form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tshcKSbwXV form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tshcKSbwXV form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsh6PSOiAL {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tsh6PSOiAL .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tsh6PSOiAL .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tsh6PSOiAL .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tsh6PSOiAL .bg-instagram:hover {
  background: #bd005c;
}
.cid-tsh6PSOiAL .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-tsh6PSOiAL .bg-tiktok:hover {
  background: #000000;
}
.cid-tsh6PSOiAL .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tsh6PSOiAL [class^="socicon-"]:before,
.cid-tsh6PSOiAL [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tsh6PTHnyq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tsh6PTHnyq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tsh6PTHnyq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tsh6PTHnyq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tsh6PTHnyq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tsh6PTHnyq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tsh6PTHnyq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tsh6PTHnyq .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tsh6PTHnyq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsh6PTHnyq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tsh6PTHnyq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tsh6PTHnyq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsh6PTHnyq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsh6PTHnyq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tsh6PTHnyq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tsgniaJjuB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsgniaJjuB nav.navbar {
  position: fixed;
}
.cid-tsgniaJjuB .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-tsgniaJjuB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsgniaJjuB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsgniaJjuB .dropdown-item:hover,
.cid-tsgniaJjuB .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tsgniaJjuB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsgniaJjuB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsgniaJjuB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsgniaJjuB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsgniaJjuB .nav-link {
  position: relative;
}
.cid-tsgniaJjuB .container {
  display: flex;
  margin: auto;
}
.cid-tsgniaJjuB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsgniaJjuB .dropdown-menu,
.cid-tsgniaJjuB .navbar.opened {
  background: #ffffff !important;
}
.cid-tsgniaJjuB .nav-item:focus,
.cid-tsgniaJjuB .nav-link:focus {
  outline: none;
}
.cid-tsgniaJjuB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsgniaJjuB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsgniaJjuB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsgniaJjuB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsgniaJjuB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsgniaJjuB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsgniaJjuB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tsgniaJjuB .navbar.opened {
  transition: all 0.3s;
}
.cid-tsgniaJjuB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsgniaJjuB .navbar .navbar-logo img {
  width: auto;
}
.cid-tsgniaJjuB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsgniaJjuB .navbar.collapsed {
  justify-content: center;
}
.cid-tsgniaJjuB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsgniaJjuB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsgniaJjuB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tsgniaJjuB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsgniaJjuB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsgniaJjuB .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-tsgniaJjuB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsgniaJjuB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsgniaJjuB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsgniaJjuB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsgniaJjuB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsgniaJjuB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsgniaJjuB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsgniaJjuB .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-tsgniaJjuB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsgniaJjuB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsgniaJjuB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsgniaJjuB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsgniaJjuB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsgniaJjuB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tsgniaJjuB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsgniaJjuB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsgniaJjuB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsgniaJjuB .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-tsgniaJjuB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsgniaJjuB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsgniaJjuB .dropdown-item.active,
.cid-tsgniaJjuB .dropdown-item:active {
  background-color: transparent;
}
.cid-tsgniaJjuB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsgniaJjuB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsgniaJjuB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsgniaJjuB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tsgniaJjuB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsgniaJjuB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsgniaJjuB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsgniaJjuB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsgniaJjuB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsgniaJjuB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tsgniaJjuB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsgniaJjuB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsgniaJjuB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsgniaJjuB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsgniaJjuB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsgniaJjuB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsgniaJjuB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsgniaJjuB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsgniaJjuB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsgniaJjuB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsgniaJjuB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsgniaJjuB .navbar {
    height: 70px;
  }
  .cid-tsgniaJjuB .navbar.opened {
    height: auto;
  }
  .cid-tsgniaJjuB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsgnibgygi {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-tsgnibgygi .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tsgnibgygi .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-tsgnibgygi .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-tsgnibgygi .mbr-section-title {
  color: #ffffff;
}
.cid-tsgnibL6Sq {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsgoESU03g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsgoESU03g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsgoESU03g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsgoESU03g .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsgsjupr1W {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tsgt7md9VK {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tsgt7md9VK .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tsgt7md9VK .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tsgt7md9VK .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tsgt7md9VK .bg-instagram:hover {
  background: #bd005c;
}
.cid-tsgt7md9VK .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-tsgt7md9VK .bg-tiktok:hover {
  background: #000000;
}
.cid-tsgt7md9VK .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tsgt7md9VK [class^="socicon-"]:before,
.cid-tsgt7md9VK [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-ulWJOzW0Ur {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-ulWJOzW0Ur .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulWJOzW0Ur .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulWJOzW0Ur .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulWJOzW0Ur .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-ulWJOzW0Ur .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulWJOzW0Ur .row {
  justify-content: center;
}
.cid-ulWJOzW0Ur .card-text {
  color: #263d5a;
}
.cid-ulWJOzW0Ur .card-title,
.cid-ulWJOzW0Ur .iconfont-wrapper {
  color: #263d5a;
}
.cid-ulWJOzW0Ur .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulWJOzW0Ur .mbr-section-title {
  color: #263d5a;
}
.cid-ulWJOzW0Ur .card-price,
.cid-ulWJOzW0Ur .iconfont-wrapper {
  color: #263d5a;
}
.cid-tsgnidzWb6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tsgnidzWb6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tsgnidzWb6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tsgnidzWb6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tsgnidzWb6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tsgnidzWb6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tsgnidzWb6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tsgnidzWb6 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tsgnidzWb6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsgnidzWb6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tsgnidzWb6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tsgnidzWb6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsgnidzWb6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsgnidzWb6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tsgnidzWb6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tsLfTAGtpM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsLfTAGtpM nav.navbar {
  position: fixed;
}
.cid-tsLfTAGtpM .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-tsLfTAGtpM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsLfTAGtpM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsLfTAGtpM .dropdown-item:hover,
.cid-tsLfTAGtpM .dropdown-item:focus {
  background: #e6c63b !important;
  color: white !important;
}
.cid-tsLfTAGtpM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsLfTAGtpM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsLfTAGtpM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsLfTAGtpM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsLfTAGtpM .nav-link {
  position: relative;
}
.cid-tsLfTAGtpM .container {
  display: flex;
  margin: auto;
}
.cid-tsLfTAGtpM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsLfTAGtpM .dropdown-menu,
.cid-tsLfTAGtpM .navbar.opened {
  background: #ffffff !important;
}
.cid-tsLfTAGtpM .nav-item:focus,
.cid-tsLfTAGtpM .nav-link:focus {
  outline: none;
}
.cid-tsLfTAGtpM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsLfTAGtpM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsLfTAGtpM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsLfTAGtpM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsLfTAGtpM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsLfTAGtpM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsLfTAGtpM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tsLfTAGtpM .navbar.opened {
  transition: all 0.3s;
}
.cid-tsLfTAGtpM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsLfTAGtpM .navbar .navbar-logo img {
  width: auto;
}
.cid-tsLfTAGtpM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsLfTAGtpM .navbar.collapsed {
  justify-content: center;
}
.cid-tsLfTAGtpM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsLfTAGtpM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsLfTAGtpM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-tsLfTAGtpM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsLfTAGtpM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsLfTAGtpM .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-tsLfTAGtpM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsLfTAGtpM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsLfTAGtpM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsLfTAGtpM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsLfTAGtpM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsLfTAGtpM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsLfTAGtpM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsLfTAGtpM .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-tsLfTAGtpM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsLfTAGtpM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsLfTAGtpM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsLfTAGtpM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsLfTAGtpM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsLfTAGtpM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tsLfTAGtpM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsLfTAGtpM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsLfTAGtpM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsLfTAGtpM .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-tsLfTAGtpM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsLfTAGtpM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsLfTAGtpM .dropdown-item.active,
.cid-tsLfTAGtpM .dropdown-item:active {
  background-color: transparent;
}
.cid-tsLfTAGtpM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsLfTAGtpM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsLfTAGtpM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsLfTAGtpM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tsLfTAGtpM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsLfTAGtpM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsLfTAGtpM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsLfTAGtpM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsLfTAGtpM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsLfTAGtpM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tsLfTAGtpM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsLfTAGtpM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsLfTAGtpM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsLfTAGtpM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsLfTAGtpM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsLfTAGtpM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsLfTAGtpM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsLfTAGtpM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsLfTAGtpM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsLfTAGtpM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsLfTAGtpM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tsLfTAGtpM .navbar {
    height: 70px;
  }
  .cid-tsLfTAGtpM .navbar.opened {
    height: auto;
  }
  .cid-tsLfTAGtpM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsLfTBiXRU {
  background-image: url("../../../assets/images/header-pag-web-1-2000x1333.png");
}
.cid-tsLfTBiXRU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tsLfTBiXRU .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #e43f3f;
  transition: all 0.3s;
  color: #e43f3f;
}
.cid-tsLfTBiXRU .social-row .soc-item .mbr-iconfont:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
.cid-tsLfTBiXRU .mbr-section-title {
  color: #ffffff;
}
.cid-tsLfTBQwrQ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsLfTC63I7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsLfTC63I7 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tsLfTC63I7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsLfTC63I7 .mbr-iconfont {
  font-size: 2rem;
  color: #e43f3f;
  padding-right: 1.5rem;
}
.cid-tsLfTCBFAO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsLfTCBFAO .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tsLfTCBFAO .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsLfTCBFAO .mbr-iconfont {
  font-size: 2rem;
  color: #e43f3f;
  padding-right: 1.5rem;
}
.cid-tsLfTD3GBW {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsLfTD3GBW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tsLfTD3GBW .row {
  flex-direction: row-reverse;
}
.cid-tsLfTD3GBW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsLfTD3GBW .text-wrapper {
    padding: 2rem;
  }
}
.cid-tsLfTDlUCr {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsLfTDlUCr .video-wrapper iframe {
  width: 100%;
}
.cid-tsLfTDlUCr .mbr-section-title,
.cid-tsLfTDlUCr .mbr-section-subtitle,
.cid-tsLfTDlUCr .mbr-text {
  text-align: center;
}
.cid-ulWIZxyKNj {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-ulWIZxyKNj .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #379eeb;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 50%;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-ulWIZxyKNj .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-ulWIZxyKNj .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ulWIZxyKNj .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-ulWIZxyKNj .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulWIZxyKNj .row {
  justify-content: center;
}
.cid-ulWIZxyKNj .card-text {
  color: #263d5a;
}
.cid-ulWIZxyKNj .card-title,
.cid-ulWIZxyKNj .iconfont-wrapper {
  color: #263d5a;
}
.cid-ulWIZxyKNj .mbr-section-subtitle {
  color: #263d5a;
}
.cid-ulWIZxyKNj .mbr-section-title {
  color: #263d5a;
}
.cid-ulWIZxyKNj .card-price,
.cid-ulWIZxyKNj .iconfont-wrapper {
  color: #263d5a;
}
.cid-tsLfTDEyV4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tsLfTDEyV4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tsLfTDEyV4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tsLfTDEyV4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tsLfTDEyV4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tsLfTDEyV4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tsLfTDEyV4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tsLfTDEyV4 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tsLfTDEyV4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tsLfTDEyV4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tsLfTDEyV4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tsLfTDEyV4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tsLfTDEyV4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tsLfTDEyV4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tsLfTDEyV4 .media-container-row .row-copirayt p {
  width: 100%;
}
