body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-2 {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.06rem;
}
/* ---- 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: 768px) {
  .display-1 {
    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))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #feffe3 !important;
}
.bg-success {
  background-color: #555555 !important;
}
.bg-info {
  background-color: #f2f3ae !important;
}
.bg-warning {
  background-color: #07d10c !important;
}
.bg-danger {
  background-color: #fdc525 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #feffe3 !important;
  border-color: #feffe3 !important;
  color: #dbe300 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #dbe300 !important;
  background-color: #feffe3 !important;
  border-color: #feffe3 !important;
}
.btn-primary:before {
  background-color: #fbff97 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #dbe300 !important;
  background-color: #fbff97 !important;
  border-color: #fbff97 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #987d5f !important;
  border-color: #987d5f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #987d5f !important;
  border-color: #987d5f !important;
}
.btn-secondary:before {
  background-color: #695642 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #695642 !important;
  border-color: #695642 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #f2f3ae !important;
  border-color: #f2f3ae !important;
  color: #8b8d15 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #8b8d15 !important;
  background-color: #f2f3ae !important;
  border-color: #f2f3ae !important;
}
.btn-info:before {
  background-color: #e7e96b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #8b8d15 !important;
  background-color: #e7e96b !important;
  border-color: #e7e96b !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #555555 !important;
  border-color: #555555 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #555555 !important;
  border-color: #555555 !important;
}
.btn-success:before {
  background-color: #2f2f2f !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2f2f2f !important;
  border-color: #2f2f2f !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #07d10c !important;
  border-color: #07d10c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #07d10c !important;
  border-color: #07d10c !important;
}
.btn-warning:before {
  background-color: #058708 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #058708 !important;
  border-color: #058708 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #fdc525 !important;
  border-color: #fdc525 !important;
  color: #231a00 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #231a00 !important;
  background-color: #fdc525 !important;
  border-color: #fdc525 !important;
}
.btn-danger:before {
  background-color: #d49d02 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #231a00 !important;
  background-color: #d49d02 !important;
  border-color: #d49d02 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #faff7d;
  color: #faff7d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #dbe300;
  border-color: #feffe3;
}
.btn-primary-outline:before {
  background-color: #feffe3;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #feffe3 !important;
  border-color: #feffe3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #594938;
  color: #594938;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #987d5f;
}
.btn-secondary-outline:before {
  background-color: #987d5f;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #987d5f !important;
  border-color: #987d5f !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #e4e655;
  color: #e4e655;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #8b8d15;
  border-color: #f2f3ae;
}
.btn-info-outline:before {
  background-color: #f2f3ae;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f2f3ae !important;
  border-color: #f2f3ae !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #222222;
  color: #222222;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #555555;
}
.btn-success-outline:before {
  background-color: #555555;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #555555 !important;
  border-color: #555555 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #046e06;
  color: #046e06;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #07d10c;
}
.btn-warning-outline:before {
  background-color: #07d10c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #07d10c !important;
  border-color: #07d10c !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #ba8a02;
  color: #ba8a02;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #231a00;
  border-color: #fdc525;
}
.btn-danger-outline:before {
  background-color: #fdc525;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #fdc525 !important;
  border-color: #fdc525 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
  border-radius: 100px;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #feffe3;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #feffe3 !important;
}
.text-secondary {
  color: #987d5f !important;
}
.text-success {
  color: #555555 !important;
}
.text-info {
  color: #f2f3ae !important;
}
.text-warning {
  color: #07d10c !important;
}
.text-danger {
  color: #fdc525 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #faff7d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #594938 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #222222 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #e4e655 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #046e06 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ba8a02 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f2f3ae;
}
.alert-warning {
  background-color: #07d10c;
}
.alert-danger {
  background-color: #fdc525;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #feffe3;
  border-color: #feffe3;
  color: #f3fc00;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #feffe3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c8c8c8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a8fcaa;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fffbef;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #feffe3;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  -webkit-justify-content: center;
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #feffe3;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #feffe3;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #feffe3;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #feffe3;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
/* Content */
.content11 .counter-container div .counter {
  background: #feffe3;
}
.content11 .counter-container div .counter {
  border-radius: 50%;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.display-7 {
  font-weight: 300;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #feffe3;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #feffe3;
  border-bottom-color: #feffe3;
}
.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: #feffe3 !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: #987d5f !important;
  box-shadow: none !important;
}
.cid-v2RBoh31v2 {
  background-image: url("../../../assets/images/disenosintitulo48-ezgif.com-video-to-gif-converter.gif");
}
.cid-v2RBoh31v2 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-v2RBoh31v2 .mbr-overlay {
  background: #ffffff;
  background: linear-gradient(#ffffff -10%, #232323 75%);
}
.cid-v2RBoh31v2 .mbr-section-title {
  margin: 0;
}
.cid-v2RBoh31v2 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-t5WUImTgPG .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-t5WUImTgPG .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-t5WUImTgPG .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-t5WUImTgPG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5WUImTgPG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t5WUImTgPG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t5WUImTgPG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t5WUImTgPG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t5WUImTgPG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t5WUImTgPG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t5WUImTgPG a {
  font-style: normal;
}
.cid-t5WUImTgPG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-t5WUImTgPG .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-t5WUImTgPG .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t5WUImTgPG .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-t5WUImTgPG .content-text {
  margin-bottom: 0;
}
.cid-t5WUImTgPG .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t5WUImTgPG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #feffe3;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t5WUImTgPG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-t5WUImTgPG .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-t5WUImTgPG .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-t5WUImTgPG .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-t5WUImTgPG .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t5WUImTgPG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t5WUImTgPG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t5WUImTgPG .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5WUImTgPG .nav-dropdown .link {
  font-weight: 400;
}
.cid-t5WUImTgPG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t5WUImTgPG .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-t5WUImTgPG .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-t5WUImTgPG .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-t5WUImTgPG .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-t5WUImTgPG .menu-content-top.show {
  display: block;
}
.cid-t5WUImTgPG .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-t5WUImTgPG .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-t5WUImTgPG .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-t5WUImTgPG .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-t5WUImTgPG .dropdown-item:before {
    display: none;
  }
  .cid-t5WUImTgPG .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-t5WUImTgPG .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-t5WUImTgPG img {
    height: 3.8rem !important;
  }
  .cid-t5WUImTgPG .btn {
    display: flex;
  }
  .cid-t5WUImTgPG button.navbar-toggler {
    display: block;
  }
  .cid-t5WUImTgPG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-t5WUImTgPG .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t5WUImTgPG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t5WUImTgPG .navbar-collapse.collapsing,
  .cid-t5WUImTgPG .navbar-collapse.show {
    display: block !important;
  }
  .cid-t5WUImTgPG .navbar-collapse.collapsing .navbar-nav,
  .cid-t5WUImTgPG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t5WUImTgPG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t5WUImTgPG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-t5WUImTgPG .navbar-collapse.collapsing .navbar-buttons,
  .cid-t5WUImTgPG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t5WUImTgPG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t5WUImTgPG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t5WUImTgPG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t5WUImTgPG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t5WUImTgPG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t5WUImTgPG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-t5WUImTgPG .navbar .menu-content-top {
    display: block;
  }
  .cid-t5WUImTgPG .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-t5WUImTgPG .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-t5WUImTgPG .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t5WUImTgPG .menu-bottom {
    display: flex;
  }
  .cid-t5WUImTgPG .navbar {
    display: block;
    padding: 0;
  }
  .cid-t5WUImTgPG .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t5WUImTgPG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-t5WUImTgPG .navbar-toggler {
    display: none;
  }
}
.cid-t5WUImTgPG .navbar-short .menu-content-top {
  border: none;
}
.cid-t5WUImTgPG .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5WUImTgPG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t5WUImTgPG .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-t5WUImTgPG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t5WUImTgPG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5WUImTgPG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t5WUImTgPG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t5WUImTgPG .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t5WUImTgPG .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t5WUImTgPG .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-t5WUImTgPG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t5WUImTgPG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t5WUImTgPG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t5WUImTgPG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t5WUImTgPG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5WUImTgPG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t5WUImTgPG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t5WUImTgPG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t5WUImTgPG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t5WUImTgPG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t5WUImTgPG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t5WUImTgPG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-t5WUImTgPG button.navbar-toggler:focus {
  outline: none;
}
.cid-t5WUImTgPG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #987d5f;
}
.cid-t5WUImTgPG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t5WUImTgPG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t5WUImTgPG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t5WUImTgPG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t5WUImTgPG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5WUImTgPG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t5WUImTgPG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t5WUImTgPG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5WUImTgPG .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t5WUImTgPG .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t5WUImTgPG .collapsed .menu-logo {
  margin-right: 0;
}
.cid-t5WUImTgPG .collapsed .btn {
  display: flex;
}
.cid-t5WUImTgPG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t5WUImTgPG .collapsed .navbar-collapse.collapsing,
.cid-t5WUImTgPG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t5WUImTgPG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t5WUImTgPG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t5WUImTgPG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t5WUImTgPG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t5WUImTgPG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t5WUImTgPG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t5WUImTgPG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t5WUImTgPG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t5WUImTgPG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 6.7rem  - 1rem);
  }
  .cid-t5WUImTgPG .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t5WUImTgPG .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5WUImTgPG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t5WUImTgPG .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t5WUImTgPG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-t5WUImTgPG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t5WUImTgPG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t5WUImTgPG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t5WUImTgPG .collapsed .dropdown-item:before {
  display: none;
}
.cid-t5WUImTgPG .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t5WUImTgPG .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t5WUImTgPG .nav-link:focus {
  outline: none;
}
.cid-t5WUImTgPG .navbar-toggler {
  position: relative;
}
.cid-t5WUImTgPG .dropdown-item.active,
.cid-t5WUImTgPG .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-t5WUImTgPG .nav-link:hover,
.cid-t5WUImTgPG .dropdown-item:hover {
  color: #987d5f;
}
.cid-uLSW322yHk {
  background-image: url("../../../assets/images/captura-de-pantalla-2025-11-18-a-las-12.00.25a.m.-2000x1124.png");
}
.cid-uLSW322yHk .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-uLSW322yHk .text-content .btn-bgr {
  z-index: 0;
}
.cid-uLSW322yHk .mbr-overlay {
  background: linear-gradient(90deg, #987d5f, #e6d5ac);
}
.cid-uLSW322yHk h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uLSW322yHk p {
  color: #464646;
}
.cid-uLSW322yHk h2 {
  color: #000000;
}
.cid-uLSW322yHk .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-uLSW322yHk .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uLSW322yHk .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #987d5f;
}
@media (max-width: 991px) {
  .cid-uLSW322yHk .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-uLSW322yHk .text-content {
    width: 100%;
  }
}
.cid-uLSW322yHk .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uLSW322yHk .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-uLSW322yHk .mbr-text {
    text-align: center;
  }
}
.cid-uLSW322yHk P {
  color: #ffffff;
  text-align: left;
}
.cid-uLSW322yHk .mbr-section-btn,
.cid-uLSW322yHk .mbr-section-title {
  color: #ffffff;
}
.cid-v2YcG0NbH0 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #333333;
}
.cid-v2SAQPbGld {
  padding-top: 120px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-v2SAQPbGld .media-content .btn-bgr {
  z-index: 0;
}
.cid-v2SAQPbGld .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-v2SAQPbGld h3 {
  color: #000000;
  font-weight: 300;
}
.cid-v2SAQPbGld p {
  color: #464646;
}
.cid-v2SAQPbGld h2 {
  color: #000000;
}
.cid-v2SAQPbGld .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-v2SAQPbGld .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-v2SAQPbGld .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-v2SAQPbGld .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-v2SAQPbGld .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2SAQPbGld .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-v2SAQPbGld .mbr-text {
    text-align: center;
  }
}
.cid-v9wK6jgXHr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-v9wK6jgXHr h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-v9wK6jgXHr .mbr-section-subtitle {
  color: #767676;
}
.cid-v9wK6jgXHr .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-v9wK6jgXHr .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-v9wK75qtzJ {
  background-image: url("../../../assets/images/captura-de-pantalla-2026-01-27-a-las-11.13.56a.m.-2000x1326.png");
}
.cid-v9wK75qtzJ .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-v9wK75qtzJ .text-content .btn-bgr {
  z-index: 0;
}
.cid-v9wK75qtzJ .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-v9wK75qtzJ h3 {
  color: #000000;
  font-weight: 300;
}
.cid-v9wK75qtzJ p {
  color: #464646;
}
.cid-v9wK75qtzJ h2 {
  color: #000000;
}
.cid-v9wK75qtzJ .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-v9wK75qtzJ .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-v9wK75qtzJ .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #efefef;
}
@media (max-width: 991px) {
  .cid-v9wK75qtzJ .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-v9wK75qtzJ .text-content {
    width: 100%;
  }
}
.cid-v9wK75qtzJ .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-v9wK75qtzJ .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-v9wK75qtzJ .mbr-text {
    text-align: center;
  }
}
.cid-v34c06y6r0 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo-2025-11-19t235356.963-1280x720.png");
}
.cid-v34c06y6r0 .media-content .btn-bgr {
  z-index: 0;
}
.cid-v34c06y6r0 .mbr-section-text {
  word-break: break-word;
}
.cid-v34c06y6r0 .mbr-overlay {
  background: linear-gradient(90deg, #000000, #987d5f);
}
@media (min-width: 992px) {
  .cid-v34c06y6r0 .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v34c06y6r0 .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v34c06y6r0 .mbr-text {
    text-align: center;
  }
}
.cid-v34c06y6r0 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-v34e23vW0K {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/diseo-sin-ttulo-2025-11-20t000226.738-1280x720.png");
}
.cid-v34e23vW0K .media-content .btn-bgr {
  z-index: 0;
}
.cid-v34e23vW0K .mbr-section-text {
  word-break: break-word;
}
.cid-v34e23vW0K .mbr-overlay {
  background: linear-gradient(90deg, #987d5f, #000000);
}
@media (min-width: 992px) {
  .cid-v34e23vW0K .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v34e23vW0K .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v34e23vW0K .mbr-text {
    text-align: center;
  }
}
.cid-uLWSeVEJHd {
  padding-top: 180px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/captura-de-pantalla-2025-11-18-a-las-11.24.37p.m.-2000x1225.png");
}
.cid-uLWSeVEJHd .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uLWSeVEJHd .mbr-overlay {
  background: linear-gradient(#987d5f -10%, #000000 75%);
}
.cid-v4cdIG5mHE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/aadir-un-ttulo-2.gif");
}
.cid-v4cdIG5mHE .nav-tabs .nav-item.open .nav-link:focus,
.cid-v4cdIG5mHE .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-v4cdIG5mHE .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #987d5f;
}
@media (max-width: 767px) {
  .cid-v4cdIG5mHE .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-v4cdIG5mHE .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-v4cdIG5mHE .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-v4cdIG5mHE .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-v4cdIG5mHE .nav-link,
.cid-v4cdIG5mHE .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-v4cdIG5mHE .nav-tabs .nav-link.active {
  color: #987d5f;
  border-bottom: 3px solid #987d5f;
}
.cid-v4cdIG5mHE H4 {
  text-align: center;
}
.cid-v4cdIG5mHE H3 {
  text-align: center;
}
.cid-v4cdIG5mHE P {
  text-align: left;
}
.cid-v2YjjUrC9F {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #333333;
}
.cid-v2YjjUrC9F h2,
.cid-v2YjjUrC9F h3,
.cid-v2YjjUrC9F p,
.cid-v2YjjUrC9F h4 {
  color: #0a0a0a;
}
.cid-v2YjjUrC9F .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-v2YjjUrC9F .mbr-iconfont {
  color: #feffe3;
  font-size: 2rem;
}
.cid-v2YjjUrC9F .form-control {
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
}
.cid-v2YjjUrC9F .mbr-text {
  color: #767676;
}
.cid-v2YjjUrC9F a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-v2YjjUrC9F .input-group-btn {
  display: block;
  text-align: center;
}
.cid-v2YjjUrC9F .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-v2YjjUrC9F textarea.form-control {
  resize: none;
}
.cid-v2YjjUrC9F .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-v2YjjUrC9F .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-v2YjjUrC9F .list-block {
  position: relative;
}
.cid-v2YjjUrC9F .list-block h4,
.cid-v2YjjUrC9F .list-block p {
  padding-left: 3.5rem;
}
.cid-v2YjjUrC9F .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-v2YjjUrC9F h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-v2YjjUrC9F .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-v2YjjUrC9F .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-v2YjjUrC9F .img-block-wrap {
    position: relative;
  }
  .cid-v2YjjUrC9F .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-v2YjjUrC9F .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-v2YjjUrC9F .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2YjjUrC9F .google-map {
    padding-bottom: 2rem;
  }
  .cid-v2YjjUrC9F .img-block {
    overflow: hidden;
  }
}
.cid-v2YjjUrC9F .content-title {
  color: #e6d5ac;
}
.cid-v2YjjUrC9F .content-subtitle {
  color: #ffffff;
}
.cid-v2YjjUrC9F .list-item-title {
  color: #ffffff;
}
.cid-v2YjjUrC9F .list-item-text {
  color: #ffffff;
}
