body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Futura Bold';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Futura Bold';
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Futura Bold';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Open Sans', 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: #ffdb5f !important;
}
.bg-success {
  background-color: #0193de !important;
}
.bg-info {
  background-color: #021a8b !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #0c0178 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffdb5f !important;
  border-color: #ffdb5f !important;
  color: #5f4a00 !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: #080600 !important;
  background-color: #ffc708 !important;
  border-color: #ffc708 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #5f4a00 !important;
  background-color: #ffc708 !important;
  border-color: #ffc708 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #40c351 !important;
  border-color: #40c351 !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: #298335 !important;
  border-color: #298335 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #298335 !important;
  border-color: #298335 !important;
}
.btn-info,
.btn-info:active {
  background-color: #021a8b !important;
  border-color: #021a8b !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: #010a36 !important;
  border-color: #010a36 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #010a36 !important;
  border-color: #010a36 !important;
}
.btn-success,
.btn-success:active {
  background-color: #0193de !important;
  border-color: #0193de !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: #015a88 !important;
  border-color: #015a88 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #015a88 !important;
  border-color: #015a88 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0c0178 !important;
  border-color: #0c0178 !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: #030022 !important;
  border-color: #030022 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #030022 !important;
  border-color: #030022 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdb5f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffc708 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #5f4a00 !important;
  background-color: #ffdb5f !important;
  border-color: #ffdb5f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40c351;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #298335 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #40c351 !important;
  border-color: #40c351 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #021a8b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #010a36 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #021a8b !important;
  border-color: #021a8b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0193de;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #015a88 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0193de !important;
  border-color: #0193de !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0c0178;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #030022 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0c0178 !important;
  border-color: #0c0178 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffdb5f !important;
}
.text-secondary {
  color: #40c351 !important;
}
.text-success {
  color: #0193de !important;
}
.text-info {
  color: #021a8b !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #0c0178 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f8c000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #267730 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #015078 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #010726 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #020013 !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: #ffdb5f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #021a8b;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #0c0178;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffdb5f;
  border-color: #ffdb5f;
  color: #795d00;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffdb5f;
}
.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: #ace3ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #113afc;
}
.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: #1902f6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffdb5f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ffdb5f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffdb5f;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffdb5f;
}
.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: #ffdb5f;
  border-bottom-color: #ffdb5f;
}
.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: #ffdb5f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #40c351 !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='%23ffdb5f' %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-uG0c1xqf4f .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-uG0c1xqf4f .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-uG0c1xqf4f .dropdown-menu {
  padding: 0;
  background: #ffdb5f !important;
}
.cid-uG0c1xqf4f .dropdown-item {
  color: #000000 !important;
}
.cid-uG0c1xqf4f .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uG0c1xqf4f .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-uG0c1xqf4f .nav-link:hover {
  color: #ff7f12 !important;
}
.cid-uG0c1xqf4f .nav-link:hover:before {
  opacity: 1;
}
.cid-uG0c1xqf4f .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ff7f12;
}
.cid-uG0c1xqf4f .btn-white {
  color: #ffdb5f !important;
}
.cid-uG0c1xqf4f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uG0c1xqf4f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uG0c1xqf4f .container {
  display: flex;
  margin: auto;
}
.cid-uG0c1xqf4f .navbar-caption {
  padding-right: 3rem;
}
.cid-uG0c1xqf4f .navbar.opened {
  background: #ffffff !important;
}
.cid-uG0c1xqf4f .nav-item:focus,
.cid-uG0c1xqf4f .nav-link:focus {
  outline: none;
}
.cid-uG0c1xqf4f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uG0c1xqf4f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG0c1xqf4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uG0c1xqf4f .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-uG0c1xqf4f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uG0c1xqf4f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uG0c1xqf4f .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uG0c1xqf4f .navbar.opened {
  transition: all .3s;
}
.cid-uG0c1xqf4f .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-uG0c1xqf4f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uG0c1xqf4f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uG0c1xqf4f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uG0c1xqf4f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uG0c1xqf4f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uG0c1xqf4f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uG0c1xqf4f .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: 55%;
}
.cid-uG0c1xqf4f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uG0c1xqf4f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uG0c1xqf4f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uG0c1xqf4f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG0c1xqf4f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG0c1xqf4f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG0c1xqf4f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG0c1xqf4f .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: 55%;
  }
  .cid-uG0c1xqf4f .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uG0c1xqf4f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uG0c1xqf4f .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uG0c1xqf4f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG0c1xqf4f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uG0c1xqf4f .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uG0c1xqf4f .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uG0c1xqf4f .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uG0c1xqf4f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uG0c1xqf4f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uG0c1xqf4f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG0c1xqf4f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uG0c1xqf4f .dropdown-item.active,
.cid-uG0c1xqf4f .dropdown-item:active {
  background-color: transparent;
}
.cid-uG0c1xqf4f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG0c1xqf4f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG0c1xqf4f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG0c1xqf4f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uG0c1xqf4f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uG0c1xqf4f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG0c1xqf4f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uG0c1xqf4f .navbar-buttons {
  text-align: center;
}
.cid-uG0c1xqf4f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG0c1xqf4f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uG0c1xqf4f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uG0c1xqf4f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uG0c1xqf4f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uG0c1xqf4f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uG0c1xqf4f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uG0c1xqf4f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uG0c1xqf4f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uG0c1xqf4f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uG0c1xqf4f .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uG0c1xqf4f a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uG0c1xqf4f .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uG0c1xqf4f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uG0c1xqf4f .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uG0c1xqf4f .navbar {
    height: 77px;
  }
  .cid-uG0c1xqf4f .navbar.opened {
    height: auto;
  }
  .cid-uG0c1xqf4f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uG0g8IEs8U {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uG0g8IEs8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG0g8IEs8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG0g8IEs8U .mbr-section-title {
  color: #ffffff;
}
.cid-uGFY2LIHd9 {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/b1-3.jpeg");
}
.cid-uGFY2LIHd9 .row {
  justify-content: flex-end;
}
.cid-uGFY2LIHd9 h3 {
  width: fit-content;
  position: relative;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uGFY2LIHd9 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uGFY2LIHd9 .btn {
  margin: 0.2rem !important;
}
@media (max-width: 767px) {
  .cid-uGFY2LIHd9 h3 {
    margin: auto;
    margin-bottom: 1.4rem;
  }
  .cid-uGFY2LIHd9 h3:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: currentColor;
  }
}
.cid-uGFY2LIHd9 .mbr-text,
.cid-uGFY2LIHd9 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uGFY2LIHd9 H1 {
  color: #6592e6;
  text-align: right;
}
.cid-uGFYbsb6Dw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/chatgpt-image-apr-1-2025-02-00-44-pm.png");
}
.cid-uGFYbsb6Dw .link {
  position: relative;
  letter-spacing: 2px;
}
.cid-uGFYbsb6Dw .link:after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-uGFYbsb6Dw .card {
  position: relative;
}
.cid-uGFYbsb6Dw .card:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.7;
  transition: all 0.6s;
}
.cid-uGFYbsb6Dw .card:hover:before {
  opacity: 0.9;
}
.cid-uGFYbsb6Dw .card-box {
  padding: 4rem 1rem;
  z-index: 2;
}
.cid-uGFYbsb6Dw .mbr-text {
  color: #000000;
}
.cid-uGFYbsb6Dw .card-title {
  color: #0c0178;
}
.cid-uGzCGV7AhY {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/chatgpt-image-apr-3-2025-09-53-35-am-1.png");
  position: relative;
  overflow: hidden;
}
.cid-uGzCGV7AhY svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-uGzCGV7AhY #e2_shape {
  fill: #ffffff !important;
}
.cid-uGzCGV7AhY img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 576px) {
  .cid-uGzCGV7AhY img {
    width: 90%!important;
  }
}
.cid-uGzCGV7AhY H1 {
  color: #ffbd59;
}
.cid-uGG7GF8f6Y {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGG7GF8f6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGG7GF8f6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGG7GF8f6Y .mbr-section-title {
  color: #6592e6;
}
.cid-uHTaO12duQ {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/chatgpt-image-apr-3-2025-10-11-14-am.png");
}
.cid-uHTaO12duQ .card-box {
  padding: 0 1.6rem;
}
.cid-uHTaO12duQ .card {
  padding: 0rem !important;
}
@media (min-width: 767px) {
  .cid-uHTaO12duQ .container {
    padding: 0 2.1rem;
  }
}
@media (max-width: 767px) {
  .cid-uHTaO12duQ .container {
    padding: 0 1.8rem;
  }
  .cid-uHTaO12duQ .mbr-section-btn {
    opacity: 1;
  }
  .cid-uHTaO12duQ .card-wrapper {
    padding: 4rem 0rem 4rem 0rem;
  }
  .cid-uHTaO12duQ .card {
    padding: 0rem !important;
    padding-bottom: 1rem !important;
  }
}
@media (min-width: 992px) {
  .cid-uHTaO12duQ .card:hover .card-wrapper {
    transform: rotateY(360deg);
  }
  .cid-uHTaO12duQ .card:hover .mbr-section-btn {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .cid-uHTaO12duQ .card {
    padding-bottom: 1rem !important;
  }
  .cid-uHTaO12duQ .card .mbr-section-btn {
    opacity: 1;
  }
}
.cid-uHTaO12duQ .row {
  justify-content: center;
}
.cid-uHTaO12duQ .mbr-section-btn {
  padding-top: 2rem;
  transition: all 1s;
  opacity: 0;
}
.cid-uHTaO12duQ .mbr-iconfont {
  color: #ffffff !important;
  font-size: 3.5rem !important;
}
.cid-uHTaO12duQ .card1 {
  background-image: url("../../../assets/images/chatgpt-image-apr-1-2025-01-37-14-pm.png");
}
.cid-uHTaO12duQ .card2 {
  background-image: url("../../../assets/images/chatgpt-image-apr-1-2025-01-48-26-pm.png");
}
.cid-uHTaO12duQ .card3 {
  background-image: url("../../../assets/images/chatgpt-image-apr-1-2025-01-50-41-pm.png");
}
.cid-uHTaO12duQ .card4 {
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uHTaO12duQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-uHTaO12duQ p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-uHTaO12duQ .card-wrapper {
  transition: all 1s;
  height: 100%;
  padding: 4rem 2rem 4rem 2rem;
  background-size: cover;
}
.cid-uHTaO12duQ .btn {
  margin: 0 !important;
  padding: 1rem 2rem;
}
.cid-uG0YuoeCiw {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #003c7b;
}
.cid-uG0cmm1nVT {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tipos-de-caja-de-carton.png");
}
.cid-uG0cmm1nVT .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uG0cmm1nVT .row {
  border-bottom: 1px solid #808080;
}
.cid-uG0cmm1nVT H2 {
  color: #e7272d;
}
.cid-uG0cmm1nVT .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uG0cmm1nVT .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uG0cmm1nVT .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-uG0cmm1nVT .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-uG0cmm1nVT .col-lg-12 {
  overflow: hidden;
}
.cid-uG0cmm1nVT H4 {
  color: #000000;
}
.cid-uG0cmm1nVT .mbr-text,
.cid-uG0cmm1nVT .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uG0cmm1nVT .logo-wrap:before {
    content: none;
  }
  .cid-uG0cmm1nVT .logo-wrap:after {
    content: none;
  }
}
.cid-uG0cmm1nVT H3 {
  color: #ffffff;
}
.cid-uG0xzYDMHB .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-uG0xzYDMHB .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-uG0xzYDMHB .dropdown-menu {
  padding: 0;
  background: #ffdb5f !important;
}
.cid-uG0xzYDMHB .dropdown-item {
  color: #000000 !important;
}
.cid-uG0xzYDMHB .dropdown-item:hover {
  color: #000000 !important;
}
.cid-uG0xzYDMHB .nav-link {
  position: relative;
  font-weight: 600;
}
.cid-uG0xzYDMHB .nav-link:hover {
  color: #ff7f12 !important;
}
.cid-uG0xzYDMHB .nav-link:hover:before {
  opacity: 1;
}
.cid-uG0xzYDMHB .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ff7f12;
}
.cid-uG0xzYDMHB .btn-white {
  color: #ffdb5f !important;
}
.cid-uG0xzYDMHB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uG0xzYDMHB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uG0xzYDMHB .container {
  display: flex;
  margin: auto;
}
.cid-uG0xzYDMHB .navbar-caption {
  padding-right: 3rem;
}
.cid-uG0xzYDMHB .navbar.opened {
  background: #ffffff !important;
}
.cid-uG0xzYDMHB .nav-item:focus,
.cid-uG0xzYDMHB .nav-link:focus {
  outline: none;
}
.cid-uG0xzYDMHB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uG0xzYDMHB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uG0xzYDMHB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uG0xzYDMHB .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-uG0xzYDMHB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uG0xzYDMHB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uG0xzYDMHB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-uG0xzYDMHB .navbar.opened {
  transition: all .3s;
}
.cid-uG0xzYDMHB .navbar .dropdown-item {
  padding: .5rem 1.5rem;
}
.cid-uG0xzYDMHB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uG0xzYDMHB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uG0xzYDMHB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uG0xzYDMHB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uG0xzYDMHB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uG0xzYDMHB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uG0xzYDMHB .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: 55%;
}
.cid-uG0xzYDMHB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uG0xzYDMHB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uG0xzYDMHB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uG0xzYDMHB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uG0xzYDMHB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uG0xzYDMHB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uG0xzYDMHB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uG0xzYDMHB .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: 55%;
  }
  .cid-uG0xzYDMHB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uG0xzYDMHB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uG0xzYDMHB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uG0xzYDMHB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uG0xzYDMHB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uG0xzYDMHB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uG0xzYDMHB .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uG0xzYDMHB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uG0xzYDMHB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uG0xzYDMHB .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uG0xzYDMHB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uG0xzYDMHB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uG0xzYDMHB .dropdown-item.active,
.cid-uG0xzYDMHB .dropdown-item:active {
  background-color: transparent;
}
.cid-uG0xzYDMHB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uG0xzYDMHB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uG0xzYDMHB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uG0xzYDMHB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uG0xzYDMHB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uG0xzYDMHB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uG0xzYDMHB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uG0xzYDMHB .navbar-buttons {
  text-align: center;
}
.cid-uG0xzYDMHB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG0xzYDMHB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uG0xzYDMHB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uG0xzYDMHB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uG0xzYDMHB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uG0xzYDMHB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uG0xzYDMHB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uG0xzYDMHB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uG0xzYDMHB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uG0xzYDMHB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uG0xzYDMHB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uG0xzYDMHB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uG0xzYDMHB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uG0xzYDMHB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uG0xzYDMHB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uG0xzYDMHB .navbar {
    height: 77px;
  }
  .cid-uG0xzYDMHB .navbar.opened {
    height: auto;
  }
  .cid-uG0xzYDMHB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uG0xzZY5gz {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uG0xzZY5gz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG0xzZY5gz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG0xzZY5gz .mbr-section-title {
  color: #ffffff;
}
.cid-uG0xA0E1PF {
  background: #ffffff;
}
.cid-uG0xA0E1PF .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uG0xA0E1PF .mbr-figure {
  margin: 0 auto;
}
.cid-uG0xA0E1PF figcaption {
  position: relative;
}
.cid-uG0xA0E1PF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uG0xA0E1PF .image-block {
    width: 100% !important;
  }
}
.cid-uG0xA0E1PF .mbr-figure-caption div {
  color: #232323;
}
.cid-uOAI25KRrM {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/chatgpt-image-may-20-2025-10-18-42-am.png");
}
.cid-uOAI25KRrM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOAI25KRrM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOAI25KRrM .video-wrapper iframe {
  width: 100%;
}
.cid-uOAI25KRrM .mbr-section-title,
.cid-uOAI25KRrM .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOAI25KRrM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOAI25KRrM .mbr-section-subtitle {
  color: #6592e6;
}
.cid-uOAQU5Ca5e {
  padding-top: 7rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uOAQU5Ca5e .title__block {
  padding-bottom: 40px;
}
.cid-uOAQU5Ca5e .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uOAQU5Ca5e .mbr-section-title b,
.cid-uOAQU5Ca5e .mbr-section-title strong {
  font-weight: 500;
}
.cid-uOAQU5Ca5e .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uOAQU5Ca5e .mbr-text {
  margin-bottom: 43px;
}
.cid-uOAQU5Ca5e .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-uOAQU5Ca5e .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-uOAQU5Ca5e .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-uOAQU5Ca5e .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-uOAQU5Ca5e .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-uOAQU5Ca5e .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-uOAQU5Ca5e .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-uOAQU5Ca5e .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-uOAQU5Ca5e .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uOAQU5Ca5e .row {
    text-align: center;
  }
  .cid-uOAQU5Ca5e .title__block {
    padding-bottom: 0;
  }
  .cid-uOAQU5Ca5e .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-uOAQU5Ca5e .figure:before {
    content: none;
  }
  .cid-uOAQU5Ca5e .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uOAQU5Ca5e .mbr-text {
    margin-bottom: 30px;
  }
  .cid-uOAQU5Ca5e .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-uOAQU5Ca5e .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-uOAYA0DtXS {
  background: #ffffff;
}
.cid-uOAYA0DtXS .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uOAYA0DtXS .mbr-figure {
  margin: 0 auto;
}
.cid-uOAYA0DtXS figcaption {
  position: relative;
}
.cid-uOAYA0DtXS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uOAYA0DtXS .image-block {
    width: 100% !important;
  }
}
.cid-uOAYA0DtXS .mbr-figure-caption div {
  color: #232323;
}
.cid-uLKMHKWMC8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/chatgpt-image-may-20-2025-10-18-42-am.png");
}
.cid-uLKMHKWMC8 .card-wrapper {
  display: flex;
  padding: 0 1.5rem;
}
@media (max-width: 1600px) {
  .cid-uLKMHKWMC8 .card-wrapper {
    padding: 0;
  }
}
.cid-uLKMHKWMC8 img {
  width: 100%;
}
.cid-uLKMHKWMC8 .mbr-iconfont {
  font-size: 3rem;
  background: linear-gradient(to left, #40c351, #ffdb5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uLKMHKWMC8 .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #40c351, #ffdb5f);
}
.cid-uLKMHKWMC8 .icon-wrapper {
  margin: auto;
  margin-right: 1.5rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
.cid-uLKMHKWMC8 h4 {
  margin: 0;
}
.cid-uLKMHKWMC8 .card-text {
  color: #999999;
}
.cid-uLKMHKWMC8 .mbr-text {
  color: #000000;
}
.cid-uLKMHKWMC8 .card-title {
  color: #020101;
}
@media (min-width: 1200px) {
  .cid-uLKMHKWMC8 .mbr-text {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .cid-uLKMHKWMC8 .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
  }
  .cid-uLKMHKWMC8 .card-wrapper .icon-wrapper {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uLKMHKWMC8 .mbr-text {
    padding-bottom: 2rem;
    max-width: 100%;
  }
}
.cid-uLKMHKWMC8 H3 {
  color: #787324;
}
.cid-uLKMHKWMC8 .mbr-section-title,
.cid-uLKMHKWMC8 .title-wrapper {
  color: #ffffff;
}
.cid-uLKMHKWMC8 .mbr-text,
.cid-uLKMHKWMC8 .mbr-section-btn {
  color: #020101;
}
.cid-uOAZQnV0TU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uOAZQnV0TU .card-title {
  line-height: 1.6;
  margin: 0;
  color: #ffbd03;
}
.cid-uOAZQnV0TU .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-uOAZQnV0TU .card:hover {
  margin-top: -0.6rem;
}
.cid-uOAZQnV0TU .card-wrapper {
  position: relative;
}
.cid-uOAZQnV0TU .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-uOAZQnV0TU .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-uOAZQnV0TU .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-uOAZQnV0TU .big {
  margin-top: -25%;
}
.cid-uOAZQnV0TU .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-uOAZQnV0TU .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uOAZQnV0TU .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-uOAZQnV0TU .mbr-section-title {
  color: #102d60;
}
.cid-uOB5oshWUM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/chatgpt-image-may-20-2025-10-18-42-am.png");
}
.cid-uOB5oshWUM .card-wrapper {
  display: flex;
  padding: 0 1.5rem;
}
@media (max-width: 1600px) {
  .cid-uOB5oshWUM .card-wrapper {
    padding: 0;
  }
}
.cid-uOB5oshWUM img {
  width: 100%;
}
.cid-uOB5oshWUM .mbr-iconfont {
  font-size: 3rem;
  background: linear-gradient(to left, #40c351, #ffdb5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uOB5oshWUM .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #40c351, #ffdb5f);
}
.cid-uOB5oshWUM .icon-wrapper {
  margin: auto;
  margin-right: 1.5rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
.cid-uOB5oshWUM h4 {
  margin: 0;
}
.cid-uOB5oshWUM .card-text {
  color: #999999;
}
.cid-uOB5oshWUM .mbr-text {
  color: #000000;
}
.cid-uOB5oshWUM .card-title {
  color: #020101;
}
@media (min-width: 1200px) {
  .cid-uOB5oshWUM .mbr-text {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .cid-uOB5oshWUM .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
  }
  .cid-uOB5oshWUM .card-wrapper .icon-wrapper {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOB5oshWUM .mbr-text {
    padding-bottom: 2rem;
    max-width: 100%;
  }
}
.cid-uOB5oshWUM H3 {
  color: #787324;
}
.cid-uOB5oshWUM .mbr-section-title,
.cid-uOB5oshWUM .title-wrapper {
  color: #ffffff;
}
.cid-uOB5oshWUM .mbr-text,
.cid-uOB5oshWUM .mbr-section-btn {
  color: #020101;
}
.cid-uG0xA2ECSe {
  padding-top: 60px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tipos-de-caja-de-carton.png");
}
.cid-uG0xA2ECSe .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uG0xA2ECSe .row {
  border-bottom: 1px solid #808080;
}
.cid-uG0xA2ECSe H2 {
  color: #e7272d;
}
.cid-uG0xA2ECSe .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uG0xA2ECSe .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uG0xA2ECSe .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-uG0xA2ECSe .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-uG0xA2ECSe .col-lg-12 {
  overflow: hidden;
}
.cid-uG0xA2ECSe H4 {
  color: #000000;
}
.cid-uG0xA2ECSe .mbr-text,
.cid-uG0xA2ECSe .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uG0xA2ECSe .logo-wrap:before {
    content: none;
  }
  .cid-uG0xA2ECSe .logo-wrap:after {
    content: none;
  }
}
.cid-uG0xA2ECSe H3 {
  color: #ffffff;
}
