.btn {
  border-width: 2px;
}
body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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 {
  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: #4479d9 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #4479d9 !important;
}
.bg-danger {
  background-color: #ff9933 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9933 !important;
  border-color: #ff9933 !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: #db6e00 !important;
  border-color: #db6e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #db6e00 !important;
  border-color: #db6e00 !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: #4479d9;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9933;
  color: #ff9933;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #db6e00 !important;
  background-color: transparent!important;
  border-color: #db6e00 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9933 !important;
  border-color: #ff9933 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4479d9 !important;
}
.text-secondary {
  color: #4479d9 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #4479d9 !important;
}
.text-danger {
  color: #ff9933 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1f4a98 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #1f4a98 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cc6600 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #4479d9;
}
.alert-danger {
  background-color: #ff9933;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #4479d9;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4479d9 !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: #4479d9 !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='%234479d9' %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;
}
#custom-html-g7 {
  /* Type valid CSS here */
}
#custom-html-g7 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sZ4BZl6w9O {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/stock-etfs-climb-again-friday-despite-lackluster-jobs-data-1-1707x960.jpg");
}
.cid-sZ4BZl6w9O .row {
  justify-content: space-between;
}
.cid-sZ4BZl6w9O .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-sZ4BZl6w9O .form-control:focus,
.cid-sZ4BZl6w9O .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-sZ4BZl6w9O .form-group {
  margin-bottom: 1rem;
}
.cid-sZ4BZl6w9O input::-webkit-input-placeholder,
.cid-sZ4BZl6w9O textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-sZ4BZl6w9O input:-moz-placeholder,
.cid-sZ4BZl6w9O textarea:-moz-placeholder {
  color: #353535;
}
.cid-sZ4BZl6w9O .jq-selectbox li,
.cid-sZ4BZl6w9O .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sZ4BZl6w9O .jq-selectbox li:hover,
.cid-sZ4BZl6w9O .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sZ4BZl6w9O .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sZ4BZl6w9O .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sZ4BZl6w9O .mbr-text {
  color: #767676;
}
.cid-sZ4BZl6w9O .form-block {
  padding: 3rem;
  position: relative;
}
.cid-sZ4BZl6w9O .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-sZ4BZl6w9O .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-sZ4BZl6w9O .form-block {
    padding: 1rem;
  }
}
.cid-sZ4BZl6w9O H4 {
  color: #232323;
  text-align: center;
}
.cid-sZ4BZl6w9O .mbr-section-title,
.cid-sZ4BZl6w9O .mbr-section-btn {
  color: #ffffff;
}
.cid-sZ4BZl6w9O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZ4BZl6w9O .form-text {
  color: #e43f3f;
}
.cid-sZ4BZl6w9O .text {
  color: #ffffff;
}
.cid-sZ4BZl6w9O P {
  text-align: center;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-g5 {
  /* Type valid CSS here */
}
#custom-html-g5 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sW853ZPEVk {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sW853ZPEVk .image-wrapper {
  padding: 0 2rem;
}
.cid-sW853ZPEVk .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sW853ZPEVk .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sW853ZPEVk .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sW853ZPEVk .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sW853ZPEVk .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sW853ZPEVk .text-wrapper,
  .cid-sW853ZPEVk .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sW853ZPEVk .text-wrapper,
  .cid-sW853ZPEVk .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sW853ZPEVk .text-wrapper,
  .cid-sW853ZPEVk .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sW853ZPEVk .text-wrapper,
  .cid-sW853ZPEVk .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sW853ZPEVk .text-wrapper,
  .cid-sW853ZPEVk .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sW853ZPEVk .content {
    text-align: left;
  }
}
.cid-sW853ZPEVk .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sW853ZPEVk .mbr-card-title {
    text-align: start;
  }
}
.cid-sW853ZPEVk .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sW853ZPEVk .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sW853ZPEVk .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sW853ZPEVk .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sW853ZPEVk .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sW853ZPEVk .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sW853ZPEVk .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sW853ZPEVk .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sW853ZPEVk .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sW853ZPEVk .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sW853ZPEVk .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sW853ZPEVk .nutrition-wrap {
    width: 100%;
  }
}
.cid-sW853ZPEVk .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sW853ZPEVk .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sW853ZPEVk .tile-text-wrap {
  display: flex;
}
.cid-sW853ZPEVk svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sW853ZPEVk svg path {
  fill: #cd8ad1;
}
.cid-sW853ZPEVk .numbers {
  display: flex;
  align-self: center;
}
.cid-sW853ZPEVk .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sW853ZPEVk .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sW853ZPEVk .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sW853ZPEVk .mbr-tile-text {
    text-align: start;
  }
}
.cid-sW853ZPEVk .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sW853ZPEVk .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sW853ZPEVk .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sW853ZPEVk .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sW853ZPEVk .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sW853ZPEVk .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sW853ZPEVk .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sW853ZPEVk .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sW853ZPEVk .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sW853ZPEVk div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sW853ZPEVk .mbr-text-title {
  color: #4479d9;
}
.cid-t03Wu2Oh8Y {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t03Wu2Oh8Y .image-wrapper {
  padding: 0 2rem;
}
.cid-t03Wu2Oh8Y .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t03Wu2Oh8Y .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t03Wu2Oh8Y .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t03Wu2Oh8Y .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t03Wu2Oh8Y .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t03Wu2Oh8Y .text-wrapper,
  .cid-t03Wu2Oh8Y .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t03Wu2Oh8Y .text-wrapper,
  .cid-t03Wu2Oh8Y .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t03Wu2Oh8Y .text-wrapper,
  .cid-t03Wu2Oh8Y .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t03Wu2Oh8Y .text-wrapper,
  .cid-t03Wu2Oh8Y .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t03Wu2Oh8Y .text-wrapper,
  .cid-t03Wu2Oh8Y .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t03Wu2Oh8Y .content {
    text-align: center;
  }
}
.cid-t03Wu2Oh8Y .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t03Wu2Oh8Y .mbr-card-title {
    text-align: start;
  }
}
.cid-t03Wu2Oh8Y .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t03Wu2Oh8Y .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t03Wu2Oh8Y .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t03Wu2Oh8Y .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t03Wu2Oh8Y .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t03Wu2Oh8Y .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t03Wu2Oh8Y .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t03Wu2Oh8Y .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t03Wu2Oh8Y .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t03Wu2Oh8Y .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t03Wu2Oh8Y .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t03Wu2Oh8Y .nutrition-wrap {
    width: 100%;
  }
}
.cid-t03Wu2Oh8Y .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t03Wu2Oh8Y .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t03Wu2Oh8Y .tile-text-wrap {
  display: flex;
}
.cid-t03Wu2Oh8Y svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t03Wu2Oh8Y svg path {
  fill: #cd8ad1;
}
.cid-t03Wu2Oh8Y .numbers {
  display: flex;
  align-self: center;
}
.cid-t03Wu2Oh8Y .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t03Wu2Oh8Y .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t03Wu2Oh8Y .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t03Wu2Oh8Y .mbr-tile-text {
    text-align: start;
  }
}
.cid-t03Wu2Oh8Y .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t03Wu2Oh8Y .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t03Wu2Oh8Y .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t03Wu2Oh8Y .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-t03Wu2Oh8Y .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t03Wu2Oh8Y .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t03Wu2Oh8Y .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t03Wu2Oh8Y .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t03Wu2Oh8Y .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t03Wu2Oh8Y div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t03Wu2Oh8Y .mbr-text-title {
  color: #091834;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fz {
  /* Type valid CSS here */
}
#custom-html-fz .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYvipQ8bbh {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYvipQ8bbh .image-wrapper {
  padding: 0 2rem;
}
.cid-sYvipQ8bbh .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYvipQ8bbh .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYvipQ8bbh .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYvipQ8bbh .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYvipQ8bbh .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sYvipQ8bbh .text-wrapper,
  .cid-sYvipQ8bbh .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYvipQ8bbh .text-wrapper,
  .cid-sYvipQ8bbh .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYvipQ8bbh .text-wrapper,
  .cid-sYvipQ8bbh .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYvipQ8bbh .text-wrapper,
  .cid-sYvipQ8bbh .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYvipQ8bbh .text-wrapper,
  .cid-sYvipQ8bbh .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYvipQ8bbh .content {
    text-align: left;
  }
}
.cid-sYvipQ8bbh .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYvipQ8bbh .mbr-card-title {
    text-align: start;
  }
}
.cid-sYvipQ8bbh .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYvipQ8bbh .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYvipQ8bbh .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYvipQ8bbh .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYvipQ8bbh .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYvipQ8bbh .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYvipQ8bbh .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYvipQ8bbh .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYvipQ8bbh .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYvipQ8bbh .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYvipQ8bbh .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYvipQ8bbh .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYvipQ8bbh .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYvipQ8bbh .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYvipQ8bbh .tile-text-wrap {
  display: flex;
}
.cid-sYvipQ8bbh svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYvipQ8bbh svg path {
  fill: #cd8ad1;
}
.cid-sYvipQ8bbh .numbers {
  display: flex;
  align-self: center;
}
.cid-sYvipQ8bbh .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYvipQ8bbh .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYvipQ8bbh .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYvipQ8bbh .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYvipQ8bbh .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYvipQ8bbh .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYvipQ8bbh .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYvipQ8bbh .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYvipQ8bbh .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYvipQ8bbh .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYvipQ8bbh .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYvipQ8bbh .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYvipQ8bbh .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYvipQ8bbh div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYvipQ8bbh .mbr-section-btn {
  display: flex;
}
.cid-sYvipQ8bbh .mbr-text-title {
  color: #4479d9;
}
.cid-sZyiSweVky {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyiSweVky .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyiSweVky .mbr-text {
  color: #ffffff;
}
.cid-sYvipT7XDO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYvipT7XDO .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYvipT7XDO .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYvipT7XDO .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYvipT7XDO .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYvipT7XDO .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYvipT7XDO .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYvipT7XDO .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYvipT7XDO .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYvipT7XDO .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYvipT7XDO .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYvipT7XDO .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYvipT7XDO .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYvipT7XDO .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYvipT7XDO .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYvipT7XDO .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-cu {
  /* Type valid CSS here */
}
#custom-html-cu .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sZaXhVLN8I {
  background-image: url("../../../assets/images/imagen6-2000x1126.jpg");
}
@media screen and (max-width: 1000px) {
  .cid-sZaXhVLN8I {
    background-image: url("https://finanxialbrand.com/assets/images/fondo-movil-2000x963.jpg");
  }
}
@media (max-width: 768px) {
  .cid-sZaXhVLN8I .image-block {
    width: 100% !important;
  }
}
.cid-sW3Hd9CAe5 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sW3Hd9CAe5 h3 {
  text-align: center;
}
.cid-sW3Hd9CAe5 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sW3Hd9CAe5 .mbr-content-text {
  color: #767676;
}
.cid-sW3Hd9CAe5 .panel-item {
  background: #ffffff;
}
.cid-sW3Hd9CAe5 .card {
  word-wrap: break-word;
}
.cid-sW3Hd9CAe5 .mbr-iconfont {
  color: #ff9933 !important;
  font-size: 3.5rem !important;
}
.cid-sW3Hd9CAe5 .mbr-section-title {
  color: #203864;
}
.cid-sW3Hd9CAe5 H3 {
  color: #203864;
}
@media (max-width: 800px) {
  .cid-sW3Hd9CAe5 .card {
    width: 200px;
    padding: 0px;
  }
}
.cid-sYygTMCg3f {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYygTMCg3f .row {
  flex-direction: row-reverse;
}
.cid-sYygTMCg3f .image-wrapper {
  padding: 0 2rem;
}
.cid-sYygTMCg3f .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYygTMCg3f .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYygTMCg3f .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYygTMCg3f .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYygTMCg3f .mbr-text {
  color: #000000;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYygTMCg3f .text-wrapper,
  .cid-sYygTMCg3f .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYygTMCg3f .text-wrapper,
  .cid-sYygTMCg3f .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYygTMCg3f .text-wrapper,
  .cid-sYygTMCg3f .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYygTMCg3f .text-wrapper,
  .cid-sYygTMCg3f .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYygTMCg3f .text-wrapper,
  .cid-sYygTMCg3f .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYygTMCg3f .content {
    text-align: center;
  }
}
.cid-sYygTMCg3f .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYygTMCg3f .mbr-card-title {
    text-align: start;
  }
}
.cid-sYygTMCg3f .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYygTMCg3f .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYygTMCg3f .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYygTMCg3f .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYygTMCg3f .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYygTMCg3f .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYygTMCg3f .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYygTMCg3f .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYygTMCg3f .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYygTMCg3f .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYygTMCg3f .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYygTMCg3f .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYygTMCg3f .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYygTMCg3f .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYygTMCg3f .tile-text-wrap {
  display: flex;
}
.cid-sYygTMCg3f svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYygTMCg3f svg path {
  fill: #cd8ad1;
}
.cid-sYygTMCg3f .numbers {
  display: flex;
  align-self: center;
}
.cid-sYygTMCg3f .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYygTMCg3f .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYygTMCg3f .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYygTMCg3f .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYygTMCg3f .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYygTMCg3f .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYygTMCg3f .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYygTMCg3f .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sYygTMCg3f .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYygTMCg3f .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYygTMCg3f .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYygTMCg3f .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYygTMCg3f .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYygTMCg3f div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYygTMCg3f .mbr-text-title {
  color: #4479d9;
}
.cid-t2NQWqHusG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #203864;
}
.cid-t2NQWqHusG .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t2NQWqHusG .mbr-text {
  color: #ffffff;
}
.cid-sVYpnk1pa1 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sVYpnk1pa1 .image-wrapper {
  padding: 0 2rem;
}
.cid-sVYpnk1pa1 .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sVYpnk1pa1 .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sVYpnk1pa1 .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sVYpnk1pa1 .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sVYpnk1pa1 .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sVYpnk1pa1 .text-wrapper,
  .cid-sVYpnk1pa1 .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sVYpnk1pa1 .text-wrapper,
  .cid-sVYpnk1pa1 .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sVYpnk1pa1 .text-wrapper,
  .cid-sVYpnk1pa1 .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sVYpnk1pa1 .text-wrapper,
  .cid-sVYpnk1pa1 .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sVYpnk1pa1 .text-wrapper,
  .cid-sVYpnk1pa1 .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sVYpnk1pa1 .content {
    text-align: center;
  }
}
.cid-sVYpnk1pa1 .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sVYpnk1pa1 .mbr-card-title {
    text-align: start;
  }
}
.cid-sVYpnk1pa1 .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sVYpnk1pa1 .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sVYpnk1pa1 .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sVYpnk1pa1 .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sVYpnk1pa1 .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sVYpnk1pa1 .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sVYpnk1pa1 .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sVYpnk1pa1 .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sVYpnk1pa1 .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sVYpnk1pa1 .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sVYpnk1pa1 .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sVYpnk1pa1 .nutrition-wrap {
    width: 100%;
  }
}
.cid-sVYpnk1pa1 .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sVYpnk1pa1 .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sVYpnk1pa1 .tile-text-wrap {
  display: flex;
}
.cid-sVYpnk1pa1 svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sVYpnk1pa1 svg path {
  fill: #cd8ad1;
}
.cid-sVYpnk1pa1 .numbers {
  display: flex;
  align-self: center;
}
.cid-sVYpnk1pa1 .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sVYpnk1pa1 .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sVYpnk1pa1 .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sVYpnk1pa1 .mbr-tile-text {
    text-align: start;
  }
}
.cid-sVYpnk1pa1 .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sVYpnk1pa1 .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sVYpnk1pa1 .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sVYpnk1pa1 .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sVYpnk1pa1 .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sVYpnk1pa1 .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sVYpnk1pa1 .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sVYpnk1pa1 .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sVYpnk1pa1 .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sVYpnk1pa1 div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sVYpnk1pa1 .mbr-text-title {
  color: #ff9933;
}
.cid-sYyBBqL3Sl {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-sYyBBqL3Sl .row {
  flex-direction: row-reverse;
}
.cid-sYyBBqL3Sl .image-wrapper {
  padding: 0 2rem;
}
.cid-sYyBBqL3Sl .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYyBBqL3Sl .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYyBBqL3Sl .mbr-section-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-sYyBBqL3Sl .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYyBBqL3Sl .mbr-text {
  color: #ffffff;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYyBBqL3Sl .text-wrapper,
  .cid-sYyBBqL3Sl .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYyBBqL3Sl .text-wrapper,
  .cid-sYyBBqL3Sl .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYyBBqL3Sl .text-wrapper,
  .cid-sYyBBqL3Sl .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYyBBqL3Sl .text-wrapper,
  .cid-sYyBBqL3Sl .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYyBBqL3Sl .text-wrapper,
  .cid-sYyBBqL3Sl .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYyBBqL3Sl .content {
    text-align: center;
  }
}
.cid-sYyBBqL3Sl .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYyBBqL3Sl .mbr-card-title {
    text-align: start;
  }
}
.cid-sYyBBqL3Sl .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYyBBqL3Sl .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYyBBqL3Sl .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYyBBqL3Sl .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYyBBqL3Sl .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYyBBqL3Sl .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYyBBqL3Sl .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYyBBqL3Sl .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYyBBqL3Sl .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYyBBqL3Sl .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYyBBqL3Sl .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYyBBqL3Sl .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYyBBqL3Sl .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYyBBqL3Sl .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYyBBqL3Sl .tile-text-wrap {
  display: flex;
}
.cid-sYyBBqL3Sl svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYyBBqL3Sl svg path {
  fill: #cd8ad1;
}
.cid-sYyBBqL3Sl .numbers {
  display: flex;
  align-self: center;
}
.cid-sYyBBqL3Sl .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYyBBqL3Sl .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYyBBqL3Sl .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYyBBqL3Sl .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYyBBqL3Sl .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYyBBqL3Sl .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYyBBqL3Sl .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYyBBqL3Sl .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYyBBqL3Sl .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYyBBqL3Sl .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYyBBqL3Sl .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYyBBqL3Sl .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYyBBqL3Sl .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYyBBqL3Sl div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYyBBqL3Sl .mbr-section-btn {
  display: flex;
}
.cid-sYyBBqL3Sl .mbr-text-title {
  color: #4479d9;
}
.cid-sZbF2MHvdO {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sZbF2MHvdO .image-wrapper {
  padding: 0 2rem;
}
.cid-sZbF2MHvdO .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sZbF2MHvdO .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sZbF2MHvdO .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sZbF2MHvdO .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sZbF2MHvdO .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sZbF2MHvdO .text-wrapper,
  .cid-sZbF2MHvdO .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sZbF2MHvdO .text-wrapper,
  .cid-sZbF2MHvdO .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sZbF2MHvdO .text-wrapper,
  .cid-sZbF2MHvdO .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sZbF2MHvdO .text-wrapper,
  .cid-sZbF2MHvdO .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sZbF2MHvdO .text-wrapper,
  .cid-sZbF2MHvdO .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sZbF2MHvdO .content {
    text-align: center;
  }
}
.cid-sZbF2MHvdO .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sZbF2MHvdO .mbr-card-title {
    text-align: start;
  }
}
.cid-sZbF2MHvdO .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sZbF2MHvdO .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sZbF2MHvdO .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sZbF2MHvdO .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sZbF2MHvdO .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sZbF2MHvdO .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sZbF2MHvdO .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sZbF2MHvdO .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sZbF2MHvdO .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sZbF2MHvdO .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sZbF2MHvdO .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sZbF2MHvdO .nutrition-wrap {
    width: 100%;
  }
}
.cid-sZbF2MHvdO .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sZbF2MHvdO .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sZbF2MHvdO .tile-text-wrap {
  display: flex;
}
.cid-sZbF2MHvdO svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sZbF2MHvdO svg path {
  fill: #cd8ad1;
}
.cid-sZbF2MHvdO .numbers {
  display: flex;
  align-self: center;
}
.cid-sZbF2MHvdO .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sZbF2MHvdO .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sZbF2MHvdO .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sZbF2MHvdO .mbr-tile-text {
    text-align: start;
  }
}
.cid-sZbF2MHvdO .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sZbF2MHvdO .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sZbF2MHvdO .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sZbF2MHvdO .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sZbF2MHvdO .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sZbF2MHvdO .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sZbF2MHvdO .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sZbF2MHvdO .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sZbF2MHvdO .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sZbF2MHvdO div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sZbF2MHvdO .mbr-text-title {
  color: #ff9933;
}
.cid-sYplJlUMXy {
  display: flex;
  background-image: url("../../../assets/images/hacker-1280x612.jpg");
}
.cid-sYplJlUMXy .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sYplJlUMXy .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sYplJlUMXy {
    align-items: center;
  }
  .cid-sYplJlUMXy .row {
    justify-content: flex-start;
  }
  .cid-sYplJlUMXy .content-wrap {
    width: 52%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sYplJlUMXy .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sYplJlUMXy {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sYplJlUMXy .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sYplJlUMXy .content-wrap {
    width: 100%;
  }
}
.cid-sYplJlUMXy .mbr-section-title {
  color: #203864;
}
.cid-sZarXeaLx5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZarXeaLx5 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZarXeaLx5 .mbr-text {
  color: #ffffff;
}
.cid-sW7xlvapwe {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-sW7xlvapwe {
    background-image: url("../../../assets/images/running-998x558.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: center left;
  }
}
.cid-sW7xlvapwe .row {
  flex-direction: row-reverse;
}
.cid-sW7xlvapwe .row {
  align-items: center;
}
.cid-sW7xlvapwe .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sW7xlvapwe .image-wrapper {
    padding: 40px 1rem 1rem 6rem;
  }
}
@media (max-width: 991px) {
  .cid-sW7xlvapwe .image-wrapper {
    padding: 1rem 1rem 1rem 6rem;
  }
}
.cid-sW7xlvapwe .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-sW7xlvapwe .text-wrapper {
    padding-right: 115px;
    padding-left: 115px;
    padding-right: 0;
  }
}
.cid-sW7xlvapwe .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #203864;
}
.cid-sW7xlvapwe .mbr-section-title {
  margin-bottom: 12px;
  color: #353535;
}
.cid-sW7xlvapwe .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-sW7xlvapwe .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-sW7xlvapwe .btn-container {
  width: 100%;
}
.cid-sW7xlvapwe .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sW7xlvapwe .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sW7xlvapwe .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sW7xlvapwe .mbr-text,
.cid-sW7xlvapwe .mbr-section-btn {
  color: #a55300;
}
.cid-sW7xlvapwe .mbr-section-title DIV {
  text-align: left;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fr {
  /* Type valid CSS here */
}
#custom-html-fr .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYz58uiIku {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYz58uiIku .image-wrapper {
  padding: 0 2rem;
}
.cid-sYz58uiIku .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYz58uiIku .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYz58uiIku .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
}
.cid-sYz58uiIku .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYz58uiIku .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYz58uiIku .text-wrapper,
  .cid-sYz58uiIku .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYz58uiIku .text-wrapper,
  .cid-sYz58uiIku .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYz58uiIku .text-wrapper,
  .cid-sYz58uiIku .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYz58uiIku .text-wrapper,
  .cid-sYz58uiIku .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYz58uiIku .text-wrapper,
  .cid-sYz58uiIku .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYz58uiIku .content {
    text-align: left;
  }
}
.cid-sYz58uiIku .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYz58uiIku .mbr-card-title {
    text-align: start;
  }
}
.cid-sYz58uiIku .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYz58uiIku .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYz58uiIku .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYz58uiIku .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYz58uiIku .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYz58uiIku .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYz58uiIku .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYz58uiIku .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYz58uiIku .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYz58uiIku .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYz58uiIku .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYz58uiIku .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYz58uiIku .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYz58uiIku .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYz58uiIku .tile-text-wrap {
  display: flex;
}
.cid-sYz58uiIku svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYz58uiIku svg path {
  fill: #cd8ad1;
}
.cid-sYz58uiIku .numbers {
  display: flex;
  align-self: center;
}
.cid-sYz58uiIku .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYz58uiIku .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYz58uiIku .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYz58uiIku .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYz58uiIku .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYz58uiIku .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYz58uiIku .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYz58uiIku .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYz58uiIku .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYz58uiIku .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYz58uiIku .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYz58uiIku .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYz58uiIku .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYz58uiIku div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYz58uiIku .mbr-section-btn {
  display: flex;
}
.cid-sYz58uiIku .mbr-text-title {
  color: #ff9933;
}
.cid-sZyhNMYwP4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #203864;
}
.cid-sZyhNMYwP4 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyhNMYwP4 .mbr-text {
  color: #ffffff;
}
.cid-sYz58w1t3Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYz58w1t3Z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYz58w1t3Z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYz58w1t3Z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYz58w1t3Z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYz58w1t3Z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYz58w1t3Z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYz58w1t3Z .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYz58w1t3Z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYz58w1t3Z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYz58w1t3Z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYz58w1t3Z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYz58w1t3Z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYz58w1t3Z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYz58w1t3Z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYz58w1t3Z .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-ft {
  /* Type valid CSS here */
}
#custom-html-ft .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYzymhYgDp {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYzymhYgDp .row {
  flex-direction: row-reverse;
}
.cid-sYzymhYgDp .image-wrapper {
  padding: 0 2rem;
}
.cid-sYzymhYgDp .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYzymhYgDp .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYzymhYgDp .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYzymhYgDp .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYzymhYgDp .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYzymhYgDp .text-wrapper,
  .cid-sYzymhYgDp .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzymhYgDp .text-wrapper,
  .cid-sYzymhYgDp .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYzymhYgDp .text-wrapper,
  .cid-sYzymhYgDp .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYzymhYgDp .text-wrapper,
  .cid-sYzymhYgDp .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYzymhYgDp .text-wrapper,
  .cid-sYzymhYgDp .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYzymhYgDp .content {
    text-align: left;
  }
}
.cid-sYzymhYgDp .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYzymhYgDp .mbr-card-title {
    text-align: start;
  }
}
.cid-sYzymhYgDp .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYzymhYgDp .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYzymhYgDp .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYzymhYgDp .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYzymhYgDp .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYzymhYgDp .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYzymhYgDp .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYzymhYgDp .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYzymhYgDp .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYzymhYgDp .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYzymhYgDp .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYzymhYgDp .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYzymhYgDp .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYzymhYgDp .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYzymhYgDp .tile-text-wrap {
  display: flex;
}
.cid-sYzymhYgDp svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYzymhYgDp svg path {
  fill: #cd8ad1;
}
.cid-sYzymhYgDp .numbers {
  display: flex;
  align-self: center;
}
.cid-sYzymhYgDp .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYzymhYgDp .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYzymhYgDp .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzymhYgDp .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYzymhYgDp .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYzymhYgDp .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYzymhYgDp .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzymhYgDp .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYzymhYgDp .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYzymhYgDp .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzymhYgDp .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzymhYgDp .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzymhYgDp .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzymhYgDp div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYzymhYgDp .mbr-section-btn {
  display: flex;
}
.cid-sYzymhYgDp .mbr-text-title {
  color: #ff9933;
}
.cid-sZyi5oCFhV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyi5oCFhV .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyi5oCFhV .mbr-text {
  color: #ffffff;
}
.cid-sYzymjB9qn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYzymjB9qn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYzymjB9qn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYzymjB9qn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYzymjB9qn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYzymjB9qn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYzymjB9qn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYzymjB9qn .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYzymjB9qn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYzymjB9qn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYzymjB9qn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYzymjB9qn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYzymjB9qn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYzymjB9qn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYzymjB9qn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYzymjB9qn .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fu {
  /* Type valid CSS here */
}
#custom-html-fu .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYzh7iqmnS {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYzh7iqmnS .image-wrapper {
  padding: 0 2rem;
}
.cid-sYzh7iqmnS .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYzh7iqmnS .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYzh7iqmnS .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYzh7iqmnS .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYzh7iqmnS .mbr-text {
  color: #000000;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYzh7iqmnS .text-wrapper,
  .cid-sYzh7iqmnS .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzh7iqmnS .text-wrapper,
  .cid-sYzh7iqmnS .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYzh7iqmnS .text-wrapper,
  .cid-sYzh7iqmnS .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYzh7iqmnS .text-wrapper,
  .cid-sYzh7iqmnS .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYzh7iqmnS .text-wrapper,
  .cid-sYzh7iqmnS .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYzh7iqmnS .content {
    text-align: left;
  }
}
.cid-sYzh7iqmnS .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYzh7iqmnS .mbr-card-title {
    text-align: start;
  }
}
.cid-sYzh7iqmnS .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYzh7iqmnS .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYzh7iqmnS .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYzh7iqmnS .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYzh7iqmnS .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYzh7iqmnS .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYzh7iqmnS .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYzh7iqmnS .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYzh7iqmnS .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYzh7iqmnS .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYzh7iqmnS .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYzh7iqmnS .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYzh7iqmnS .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYzh7iqmnS .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYzh7iqmnS .tile-text-wrap {
  display: flex;
}
.cid-sYzh7iqmnS svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYzh7iqmnS svg path {
  fill: #cd8ad1;
}
.cid-sYzh7iqmnS .numbers {
  display: flex;
  align-self: center;
}
.cid-sYzh7iqmnS .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYzh7iqmnS .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYzh7iqmnS .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzh7iqmnS .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYzh7iqmnS .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYzh7iqmnS .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYzh7iqmnS .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzh7iqmnS .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYzh7iqmnS .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYzh7iqmnS .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzh7iqmnS .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzh7iqmnS .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzh7iqmnS .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzh7iqmnS div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYzh7iqmnS .mbr-section-btn {
  display: flex;
}
.cid-sYzh7iqmnS .mbr-text-title {
  color: #ff9933;
}
.cid-sZyiiFftwC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyiiFftwC .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyiiFftwC .mbr-text {
  color: #ffffff;
}
.cid-sYzh7k8CvQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYzh7k8CvQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYzh7k8CvQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYzh7k8CvQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYzh7k8CvQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYzh7k8CvQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYzh7k8CvQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYzh7k8CvQ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYzh7k8CvQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYzh7k8CvQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYzh7k8CvQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYzh7k8CvQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYzh7k8CvQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYzh7k8CvQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYzh7k8CvQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYzh7k8CvQ .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fv {
  /* Type valid CSS here */
}
#custom-html-fv .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYzlemzGRn {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYzlemzGRn .image-wrapper {
  padding: 0 2rem;
}
.cid-sYzlemzGRn .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYzlemzGRn .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYzlemzGRn .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYzlemzGRn .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYzlemzGRn .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYzlemzGRn .text-wrapper,
  .cid-sYzlemzGRn .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzlemzGRn .text-wrapper,
  .cid-sYzlemzGRn .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYzlemzGRn .text-wrapper,
  .cid-sYzlemzGRn .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYzlemzGRn .text-wrapper,
  .cid-sYzlemzGRn .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYzlemzGRn .text-wrapper,
  .cid-sYzlemzGRn .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYzlemzGRn .content {
    text-align: left;
  }
}
.cid-sYzlemzGRn .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYzlemzGRn .mbr-card-title {
    text-align: start;
  }
}
.cid-sYzlemzGRn .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYzlemzGRn .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYzlemzGRn .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYzlemzGRn .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYzlemzGRn .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYzlemzGRn .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYzlemzGRn .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYzlemzGRn .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYzlemzGRn .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYzlemzGRn .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYzlemzGRn .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYzlemzGRn .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYzlemzGRn .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYzlemzGRn .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYzlemzGRn .tile-text-wrap {
  display: flex;
}
.cid-sYzlemzGRn svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYzlemzGRn svg path {
  fill: #cd8ad1;
}
.cid-sYzlemzGRn .numbers {
  display: flex;
  align-self: center;
}
.cid-sYzlemzGRn .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYzlemzGRn .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYzlemzGRn .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzlemzGRn .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYzlemzGRn .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYzlemzGRn .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYzlemzGRn .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzlemzGRn .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYzlemzGRn .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYzlemzGRn .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzlemzGRn .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzlemzGRn .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzlemzGRn .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzlemzGRn div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYzlemzGRn .mbr-section-btn {
  display: flex;
}
.cid-sYzlemzGRn .mbr-text-title {
  color: #ff9933;
}
.cid-sZyipZba4P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyipZba4P .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyipZba4P .mbr-text {
  color: #ffffff;
}
.cid-sYzleoAvix {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYzleoAvix .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYzleoAvix .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYzleoAvix .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYzleoAvix .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYzleoAvix .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYzleoAvix .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYzleoAvix .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYzleoAvix .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYzleoAvix .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYzleoAvix .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYzleoAvix .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYzleoAvix .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYzleoAvix .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYzleoAvix .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYzleoAvix .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fw {
  /* Type valid CSS here */
}
#custom-html-fw .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYzumJEYgu {
  display: flex;
  background-image: url("../../../assets/images/telecommunications-2000x1125.jpg");
}
.cid-sYzumJEYgu .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sYzumJEYgu .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sYzumJEYgu {
    align-items: center;
  }
  .cid-sYzumJEYgu .row {
    justify-content: flex-start;
  }
  .cid-sYzumJEYgu .content-wrap {
    width: 56%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sYzumJEYgu .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sYzumJEYgu {
    -webkit-align-items: center;
    align-items: left;
  }
  .cid-sYzumJEYgu .mbr-row {
    -webkit-justify-content: center;
    justify-content: left;
  }
  .cid-sYzumJEYgu .content-wrap {
    width: 100%;
  }
}
.cid-sYzumJEYgu .mbr-section-title {
  color: #203864;
}
.cid-sYzumJEYgu .mbr-text,
.cid-sYzumJEYgu .mbr-section-btn {
  color: #000000;
}
.cid-sZydsnXEY0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #203864;
}
.cid-sZydsnXEY0 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZydsnXEY0 .mbr-text {
  color: #ffffff;
}
.cid-sYzteJ5Qza {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYzteJ5Qza .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYzteJ5Qza .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYzteJ5Qza .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYzteJ5Qza .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYzteJ5Qza .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYzteJ5Qza .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYzteJ5Qza .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYzteJ5Qza .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYzteJ5Qza .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYzteJ5Qza .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYzteJ5Qza .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYzteJ5Qza .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYzteJ5Qza .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYzteJ5Qza .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYzteJ5Qza .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fx {
  /* Type valid CSS here */
}
#custom-html-fx .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYtd2k9Kz5 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYtd2k9Kz5 .image-wrapper {
  padding: 0 2rem;
}
.cid-sYtd2k9Kz5 .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYtd2k9Kz5 .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYtd2k9Kz5 .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYtd2k9Kz5 .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYtd2k9Kz5 .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYtd2k9Kz5 .text-wrapper,
  .cid-sYtd2k9Kz5 .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYtd2k9Kz5 .text-wrapper,
  .cid-sYtd2k9Kz5 .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYtd2k9Kz5 .text-wrapper,
  .cid-sYtd2k9Kz5 .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYtd2k9Kz5 .text-wrapper,
  .cid-sYtd2k9Kz5 .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYtd2k9Kz5 .text-wrapper,
  .cid-sYtd2k9Kz5 .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYtd2k9Kz5 .content {
    text-align: left;
  }
}
.cid-sYtd2k9Kz5 .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYtd2k9Kz5 .mbr-card-title {
    text-align: start;
  }
}
.cid-sYtd2k9Kz5 .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYtd2k9Kz5 .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYtd2k9Kz5 .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYtd2k9Kz5 .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYtd2k9Kz5 .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYtd2k9Kz5 .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYtd2k9Kz5 .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYtd2k9Kz5 .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYtd2k9Kz5 .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYtd2k9Kz5 .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYtd2k9Kz5 .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYtd2k9Kz5 .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYtd2k9Kz5 .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYtd2k9Kz5 .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYtd2k9Kz5 .tile-text-wrap {
  display: flex;
}
.cid-sYtd2k9Kz5 svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYtd2k9Kz5 svg path {
  fill: #cd8ad1;
}
.cid-sYtd2k9Kz5 .numbers {
  display: flex;
  align-self: center;
}
.cid-sYtd2k9Kz5 .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYtd2k9Kz5 .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYtd2k9Kz5 .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYtd2k9Kz5 .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYtd2k9Kz5 .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYtd2k9Kz5 .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYtd2k9Kz5 .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYtd2k9Kz5 .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYtd2k9Kz5 .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYtd2k9Kz5 .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYtd2k9Kz5 .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYtd2k9Kz5 .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYtd2k9Kz5 .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYtd2k9Kz5 div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYtd2k9Kz5 .mbr-section-btn {
  display: flex;
}
.cid-sYtd2k9Kz5 .mbr-text-title {
  color: #4479d9;
}
.cid-sZyiCBmzTC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyiCBmzTC .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyiCBmzTC .mbr-text {
  color: #ffffff;
}
.cid-sYtd2qjoZK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYtd2qjoZK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYtd2qjoZK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYtd2qjoZK .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYtd2qjoZK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYtd2qjoZK .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYtd2qjoZK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYtd2qjoZK .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYtd2qjoZK .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYtd2qjoZK .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYtd2qjoZK .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYtd2qjoZK .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYtd2qjoZK .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYtd2qjoZK .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYtd2qjoZK .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYtd2qjoZK .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fy {
  /* Type valid CSS here */
}
#custom-html-fy .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYvb1bCfkV {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYvb1bCfkV .image-wrapper {
  padding: 0 2rem;
}
.cid-sYvb1bCfkV .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYvb1bCfkV .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYvb1bCfkV .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYvb1bCfkV .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYvb1bCfkV .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sYvb1bCfkV .text-wrapper,
  .cid-sYvb1bCfkV .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYvb1bCfkV .text-wrapper,
  .cid-sYvb1bCfkV .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYvb1bCfkV .text-wrapper,
  .cid-sYvb1bCfkV .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYvb1bCfkV .text-wrapper,
  .cid-sYvb1bCfkV .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYvb1bCfkV .text-wrapper,
  .cid-sYvb1bCfkV .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYvb1bCfkV .content {
    text-align: left;
  }
}
.cid-sYvb1bCfkV .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYvb1bCfkV .mbr-card-title {
    text-align: start;
  }
}
.cid-sYvb1bCfkV .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYvb1bCfkV .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYvb1bCfkV .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYvb1bCfkV .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYvb1bCfkV .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYvb1bCfkV .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYvb1bCfkV .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYvb1bCfkV .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYvb1bCfkV .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYvb1bCfkV .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYvb1bCfkV .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYvb1bCfkV .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYvb1bCfkV .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYvb1bCfkV .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYvb1bCfkV .tile-text-wrap {
  display: flex;
}
.cid-sYvb1bCfkV svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYvb1bCfkV svg path {
  fill: #cd8ad1;
}
.cid-sYvb1bCfkV .numbers {
  display: flex;
  align-self: center;
}
.cid-sYvb1bCfkV .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYvb1bCfkV .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYvb1bCfkV .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYvb1bCfkV .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYvb1bCfkV .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYvb1bCfkV .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYvb1bCfkV .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYvb1bCfkV .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYvb1bCfkV .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYvb1bCfkV .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYvb1bCfkV .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYvb1bCfkV .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYvb1bCfkV .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYvb1bCfkV div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYvb1bCfkV .mbr-section-btn {
  display: flex;
}
.cid-sYvb1bCfkV .mbr-text-title {
  color: #4479d9;
}
.cid-sZyiJ0wf12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyiJ0wf12 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyiJ0wf12 .mbr-text {
  color: #ffffff;
}
.cid-sYvb1dnb2i {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYvb1dnb2i .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYvb1dnb2i .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYvb1dnb2i .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYvb1dnb2i .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYvb1dnb2i .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYvb1dnb2i .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYvb1dnb2i .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYvb1dnb2i .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYvb1dnb2i .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYvb1dnb2i .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYvb1dnb2i .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYvb1dnb2i .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYvb1dnb2i .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYvb1dnb2i .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYvb1dnb2i .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-g0 {
  /* Type valid CSS here */
}
#custom-html-g0 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sWNddJt0Fa {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWNddJt0Fa .image-wrapper {
  padding: 0 2rem;
}
.cid-sWNddJt0Fa .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWNddJt0Fa .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWNddJt0Fa .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sWNddJt0Fa .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWNddJt0Fa .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWNddJt0Fa .text-wrapper,
  .cid-sWNddJt0Fa .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWNddJt0Fa .text-wrapper,
  .cid-sWNddJt0Fa .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWNddJt0Fa .text-wrapper,
  .cid-sWNddJt0Fa .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWNddJt0Fa .text-wrapper,
  .cid-sWNddJt0Fa .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWNddJt0Fa .text-wrapper,
  .cid-sWNddJt0Fa .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWNddJt0Fa .content {
    text-align: left;
  }
}
.cid-sWNddJt0Fa .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWNddJt0Fa .mbr-card-title {
    text-align: start;
  }
}
.cid-sWNddJt0Fa .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWNddJt0Fa .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWNddJt0Fa .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWNddJt0Fa .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWNddJt0Fa .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWNddJt0Fa .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWNddJt0Fa .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWNddJt0Fa .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWNddJt0Fa .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWNddJt0Fa .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWNddJt0Fa .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWNddJt0Fa .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWNddJt0Fa .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWNddJt0Fa .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWNddJt0Fa .tile-text-wrap {
  display: flex;
}
.cid-sWNddJt0Fa svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWNddJt0Fa svg path {
  fill: #cd8ad1;
}
.cid-sWNddJt0Fa .numbers {
  display: flex;
  align-self: center;
}
.cid-sWNddJt0Fa .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWNddJt0Fa .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWNddJt0Fa .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWNddJt0Fa .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWNddJt0Fa .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWNddJt0Fa .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWNddJt0Fa .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWNddJt0Fa .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWNddJt0Fa .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWNddJt0Fa .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNddJt0Fa .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNddJt0Fa .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNddJt0Fa .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWNddJt0Fa div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sWNddJt0Fa .mbr-text-title {
  color: #ff9933;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-g2 {
  /* Type valid CSS here */
}
#custom-html-g2 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sWitZ3JqtD {
  background-color: #4479d9;
}
@media (min-width: 768px) {
  .cid-sWitZ3JqtD {
    background-image: url("../../../assets/images/imagen40-1628x2050.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-sWitZ3JqtD .row {
  align-items: center;
}
.cid-sWitZ3JqtD .image-wrapper {
  padding: 1rem;
}
.cid-sWitZ3JqtD .col-text {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.cid-sWitZ3JqtD .col-text .radial-svg {
  display: none;
}
@media (min-width: 992px) {
  .cid-sWitZ3JqtD .col-text .radial-svg {
    display: block;
    position: absolute;
    top: 0;
    right: -90px;
    bottom: 0;
    height: 100%;
    width: 200px;
    z-index: 1;
  }
  .cid-sWitZ3JqtD .col-text .radial-svg path {
    fill: #4479d9;
  }
}
.cid-sWitZ3JqtD .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .cid-sWitZ3JqtD .text-wrapper {
    max-width: 400px;
  }
}
.cid-sWitZ3JqtD .label-text {
  width: 100%;
  color: #000000;
  text-align: right;
}
.cid-sWitZ3JqtD .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
  color: #ffffff;
}
.cid-sWitZ3JqtD .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 12px;
}
.cid-sWitZ3JqtD .btn-container {
  width: 100%;
}
.cid-sWitZ3JqtD .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-sWitZ3JqtD .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sWitZ3JqtD .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sWitZ3JqtD .btn-white-outline {
  border: 1px solid currentColor;
}
.cid-sWitZ3JqtD .btn-white-outline:hover {
  color: #4479d9 !important;
  background: #ffffff !important;
}
.cid-sZyemT6pyQ {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sZyemT6pyQ h4 {
  display: flex;
  letter-spacing: 0.03em;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sZyemT6pyQ .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-sZyemT6pyQ .mbr-section-title {
  color: #203864;
}
.cid-sZyemT6pyQ .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
}
.cid-sZyemT6pyQ .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sZyemT6pyQ .panel-group {
  width: 100%;
}
.cid-sZyemT6pyQ .card {
  border-bottom: 10px solid #ffffff !important;
  border-radius: 10px;
  margin-bottom: .5rem;
}
.cid-sZyemT6pyQ .card .card-header {
  border-radius: 20px;
  border: 0px !important;
  padding: 0;
}
.cid-sZyemT6pyQ .card .card-header a.panel-title {
  border-radius: 10px;
  transition: all .3s;
  background-color: #4479d9;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sZyemT6pyQ .card .card-header a.panel-title:hover {
  opacity: 0.8;
}
.cid-sZyemT6pyQ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sZyemT6pyQ .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-sZyemT6pyQ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sZyemT6pyQ .card .panel-body {
  background: #ffffff;
}
.cid-sZyemT6pyQ .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sZyemT6pyQ .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sZyemT6pyQ .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sZyemT6pyQ .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fn {
  /* Type valid CSS here */
}
#custom-html-fn .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sWNqE32ORK {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWNqE32ORK .image-wrapper {
  padding: 0 2rem;
}
.cid-sWNqE32ORK .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWNqE32ORK .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWNqE32ORK .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sWNqE32ORK .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWNqE32ORK .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWNqE32ORK .text-wrapper,
  .cid-sWNqE32ORK .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWNqE32ORK .text-wrapper,
  .cid-sWNqE32ORK .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWNqE32ORK .text-wrapper,
  .cid-sWNqE32ORK .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWNqE32ORK .text-wrapper,
  .cid-sWNqE32ORK .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWNqE32ORK .text-wrapper,
  .cid-sWNqE32ORK .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWNqE32ORK .content {
    text-align: left;
  }
}
.cid-sWNqE32ORK .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWNqE32ORK .mbr-card-title {
    text-align: start;
  }
}
.cid-sWNqE32ORK .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWNqE32ORK .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWNqE32ORK .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWNqE32ORK .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWNqE32ORK .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWNqE32ORK .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWNqE32ORK .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWNqE32ORK .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWNqE32ORK .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWNqE32ORK .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWNqE32ORK .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWNqE32ORK .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWNqE32ORK .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWNqE32ORK .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWNqE32ORK .tile-text-wrap {
  display: flex;
}
.cid-sWNqE32ORK svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWNqE32ORK svg path {
  fill: #cd8ad1;
}
.cid-sWNqE32ORK .numbers {
  display: flex;
  align-self: center;
}
.cid-sWNqE32ORK .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWNqE32ORK .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWNqE32ORK .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWNqE32ORK .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWNqE32ORK .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWNqE32ORK .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWNqE32ORK .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWNqE32ORK .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWNqE32ORK .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWNqE32ORK .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNqE32ORK .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNqE32ORK .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNqE32ORK .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWNqE32ORK div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sWNqE32ORK .mbr-text-title {
  color: #ff9933;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fq {
  /* Type valid CSS here */
}
#custom-html-fq .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sWNhGxa41T {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sWNhGxa41T .image-wrapper {
  padding: 0 2rem;
}
.cid-sWNhGxa41T .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWNhGxa41T .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWNhGxa41T .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sWNhGxa41T .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWNhGxa41T .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWNhGxa41T .text-wrapper,
  .cid-sWNhGxa41T .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWNhGxa41T .text-wrapper,
  .cid-sWNhGxa41T .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWNhGxa41T .text-wrapper,
  .cid-sWNhGxa41T .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWNhGxa41T .text-wrapper,
  .cid-sWNhGxa41T .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWNhGxa41T .text-wrapper,
  .cid-sWNhGxa41T .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWNhGxa41T .content {
    text-align: left;
  }
}
.cid-sWNhGxa41T .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWNhGxa41T .mbr-card-title {
    text-align: start;
  }
}
.cid-sWNhGxa41T .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWNhGxa41T .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWNhGxa41T .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWNhGxa41T .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWNhGxa41T .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWNhGxa41T .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWNhGxa41T .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWNhGxa41T .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWNhGxa41T .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWNhGxa41T .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWNhGxa41T .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWNhGxa41T .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWNhGxa41T .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWNhGxa41T .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWNhGxa41T .tile-text-wrap {
  display: flex;
}
.cid-sWNhGxa41T svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWNhGxa41T svg path {
  fill: #cd8ad1;
}
.cid-sWNhGxa41T .numbers {
  display: flex;
  align-self: center;
}
.cid-sWNhGxa41T .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWNhGxa41T .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWNhGxa41T .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWNhGxa41T .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWNhGxa41T .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWNhGxa41T .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWNhGxa41T .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWNhGxa41T .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sWNhGxa41T .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWNhGxa41T .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNhGxa41T .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNhGxa41T .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWNhGxa41T .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWNhGxa41T div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sWNhGxa41T .mbr-section-btn {
  display: flex;
}
.cid-sWNhGxa41T .mbr-text-title {
  color: #ff9933;
}
.cid-sZyhGKHq0w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyhGKHq0w .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyhGKHq0w .mbr-text {
  color: #ffffff;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fo {
  /* Type valid CSS here */
}
#custom-html-fo .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYSep0QVoZ {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYSep0QVoZ .image-wrapper {
  padding: 0 2rem;
}
.cid-sYSep0QVoZ .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYSep0QVoZ .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYSep0QVoZ .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYSep0QVoZ .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYSep0QVoZ .mbr-text {
  color: #232323;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYSep0QVoZ .text-wrapper,
  .cid-sYSep0QVoZ .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYSep0QVoZ .text-wrapper,
  .cid-sYSep0QVoZ .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYSep0QVoZ .text-wrapper,
  .cid-sYSep0QVoZ .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYSep0QVoZ .text-wrapper,
  .cid-sYSep0QVoZ .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYSep0QVoZ .text-wrapper,
  .cid-sYSep0QVoZ .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYSep0QVoZ .content {
    text-align: left;
  }
}
.cid-sYSep0QVoZ .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYSep0QVoZ .mbr-card-title {
    text-align: start;
  }
}
.cid-sYSep0QVoZ .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYSep0QVoZ .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYSep0QVoZ .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYSep0QVoZ .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYSep0QVoZ .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYSep0QVoZ .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYSep0QVoZ .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYSep0QVoZ .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYSep0QVoZ .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYSep0QVoZ .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYSep0QVoZ .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYSep0QVoZ .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYSep0QVoZ .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYSep0QVoZ .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYSep0QVoZ .tile-text-wrap {
  display: flex;
}
.cid-sYSep0QVoZ svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYSep0QVoZ svg path {
  fill: #cd8ad1;
}
.cid-sYSep0QVoZ .numbers {
  display: flex;
  align-self: center;
}
.cid-sYSep0QVoZ .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYSep0QVoZ .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYSep0QVoZ .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYSep0QVoZ .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYSep0QVoZ .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYSep0QVoZ .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYSep0QVoZ .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYSep0QVoZ .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sYSep0QVoZ .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYSep0QVoZ .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYSep0QVoZ .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYSep0QVoZ .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYSep0QVoZ .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYSep0QVoZ div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYSep0QVoZ .mbr-text-title {
  color: #ff9933;
}
.cid-sZyhiUtpd2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #203864;
}
.cid-sZyhiUtpd2 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyhiUtpd2 .mbr-text {
  color: #ffffff;
}
.cid-sYSep2kBLi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYSep2kBLi .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYSep2kBLi .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYSep2kBLi .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYSep2kBLi .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYSep2kBLi .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYSep2kBLi .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYSep2kBLi .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYSep2kBLi .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYSep2kBLi .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYSep2kBLi .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYSep2kBLi .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYSep2kBLi .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYSep2kBLi .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYSep2kBLi .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYSep2kBLi .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-g1 {
  /* Type valid CSS here */
}
#custom-html-g1 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sWqKSAAySF {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWqKSAAySF .left-side {
  text-align: left;
  padding-left: 5rem;
}
.cid-sWqKSAAySF .row {
  align-items: center;
}
.cid-sWqKSAAySF .mbr-section-title {
  margin: 0 15px 10px;
  color: #203864;
}
.cid-sWqKSAAySF .row {
  flex-direction: row-reverse;
}
.cid-sWqKSAAySF .left-side {
  padding-left: 15px;
  padding-right: 5rem;
}
@media (max-width: 690px) {
  .cid-sWqKSAAySF .mbr-section-title {
    margin-top: 25px;
  }
  .cid-sWqKSAAySF .left-side {
    padding-right: 15px;
    padding-left: 15px;
  }
  .cid-sWqKSAAySF .right-side {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cid-sWqKSAAySF .mbr-iconfont {
  font-size: 80px;
  color: #0c5b47;
}
.cid-sWqKSAAySF .iconfont-wrapper {
  margin-bottom: 13px;
}
.cid-sWqKSAAySF .desc {
  padding: 0 15px 30px;
  color: #203864;
}
.cid-sWqKSAAySF .desc1 {
  padding-bottom: 5px;
  padding-right: 3.75rem;
}
.cid-sWqKSAAySF .desc2 {
  font-style: italic;
  color: #1b745e;
}
.cid-sWqKSAAySF .desc1,
.cid-sWqKSAAySF .iconfont-wrapper {
  color: #0c5b47;
}
@media (min-width: 960px) {
  .cid-sWqKSAAySF .bord {
    border-right: 1px solid #c0c0c0;
  }
}
.cid-sWqKSAAySF .col-auto {
  display: inline-block;
}
@media (max-width: 990px) {
  .cid-sWqKSAAySF .left-side {
    padding-left: 0;
    padding-top: 20px;
  }
  .cid-sWqKSAAySF .desc1 {
    padding-right: 0;
  }
  .cid-sWqKSAAySF .mbr-iconfont {
    font-size: 60px;
  }
  .cid-sWqKSAAySF .container-fluid {
    padding: 0 15px;
  }
}
@media (min-width: 320px) {
  .cid-sWqKSAAySF .top {
    margin-top: 20px;
  }
}
@media (max-width: 770px) {
  .cid-sWqKSAAySF .left-side {
    padding: 25px 0;
    text-align: center;
  }
  .cid-sWqKSAAySF .desc {
    text-align: left;
  }
  .cid-sWqKSAAySF .desc1 {
    padding-right: 0;
  }
  .cid-sWqKSAAySF .mbr-iconfont {
    font-size: 60px;
  }
  .cid-sWqKSAAySF .container-fluid {
    padding: 0 15px;
  }
  .cid-sWqKSAAySF .mbr-section-title {
    text-align: left;
  }
}
.cid-sZye1yOQlH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #203864;
}
.cid-sZye1yOQlH .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZye1yOQlH .mbr-text {
  color: #ffffff;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-g6 {
  /* Type valid CSS here */
}
#custom-html-g6 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sWeuh0Af8w {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background11.jpg");
}
.cid-sWeuh0Af8w .mbr-overlay {
  background: #0344b9;
  background: linear-gradient(90deg, #0344b9, #1a4eab);
}
.cid-sWeuh0Af8w .mbr-section-title {
  margin: 0;
}
.cid-sWeuh0Af8w .mbr-text {
  color: #efefef;
}
.cid-sWeuh0Af8w .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sWeuh0Af8w .card-img {
  text-align: left;
}
.cid-sWeuh0Af8w .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sWeuh0Af8w .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sWeuh0Af8w .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sWeuh0Af8w .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sWeuh0Af8w .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sWeuh0Af8w .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sWeuh0Af8w .mbr-section-subtitle,
.cid-sWeuh0Af8w .mbr-section-btn {
  color: #ffffff;
}
.cid-sWeuh0Af8w .title-cont,
.cid-sWeuh0Af8w .mbr-section-title {
  color: #ffffff;
}
.cid-sWk7GgCYFz {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sWk7GgCYFz h4 {
  display: flex;
  letter-spacing: 0.03em;
  color: #ffffff;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sWk7GgCYFz .panel-text {
  letter-spacing: 0.03em;
  color: #232323;
}
.cid-sWk7GgCYFz .mbr-section-subtitle {
  letter-spacing: 0.03em;
  font-weight: 500;
}
.cid-sWk7GgCYFz .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sWk7GgCYFz .panel-group {
  width: 100%;
}
.cid-sWk7GgCYFz .card {
  border-bottom: 10px solid #ffffff !important;
  border-radius: 10px;
  margin-bottom: .5rem;
}
.cid-sWk7GgCYFz .card .card-header {
  border-radius: 20px;
  border: 0px !important;
  padding: 0;
}
.cid-sWk7GgCYFz .card .card-header a.panel-title {
  border-radius: 10px;
  transition: all .3s;
  background-color: #4479d9;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sWk7GgCYFz .card .card-header a.panel-title:hover {
  opacity: 0.8;
}
.cid-sWk7GgCYFz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sWk7GgCYFz .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-sWk7GgCYFz .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sWk7GgCYFz .card .panel-body {
  background: #ffffff;
}
.cid-sWk7GgCYFz .media-container-row > div {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sWk7GgCYFz .sign {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sWk7GgCYFz .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sWk7GgCYFz .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-fs {
  /* Type valid CSS here */
}
#custom-html-fs .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYzfEI6xGs {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sYzfEI6xGs .row {
  flex-direction: row-reverse;
}
.cid-sYzfEI6xGs .image-wrapper {
  padding: 0 2rem;
}
.cid-sYzfEI6xGs .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYzfEI6xGs .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYzfEI6xGs .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYzfEI6xGs .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYzfEI6xGs .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYzfEI6xGs .text-wrapper,
  .cid-sYzfEI6xGs .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzfEI6xGs .text-wrapper,
  .cid-sYzfEI6xGs .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYzfEI6xGs .text-wrapper,
  .cid-sYzfEI6xGs .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYzfEI6xGs .text-wrapper,
  .cid-sYzfEI6xGs .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYzfEI6xGs .text-wrapper,
  .cid-sYzfEI6xGs .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYzfEI6xGs .content {
    text-align: left;
  }
}
.cid-sYzfEI6xGs .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYzfEI6xGs .mbr-card-title {
    text-align: start;
  }
}
.cid-sYzfEI6xGs .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYzfEI6xGs .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYzfEI6xGs .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYzfEI6xGs .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYzfEI6xGs .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYzfEI6xGs .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYzfEI6xGs .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYzfEI6xGs .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYzfEI6xGs .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYzfEI6xGs .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYzfEI6xGs .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYzfEI6xGs .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYzfEI6xGs .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYzfEI6xGs .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYzfEI6xGs .tile-text-wrap {
  display: flex;
}
.cid-sYzfEI6xGs svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYzfEI6xGs svg path {
  fill: #cd8ad1;
}
.cid-sYzfEI6xGs .numbers {
  display: flex;
  align-self: center;
}
.cid-sYzfEI6xGs .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYzfEI6xGs .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYzfEI6xGs .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzfEI6xGs .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYzfEI6xGs .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYzfEI6xGs .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYzfEI6xGs .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYzfEI6xGs .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-sYzfEI6xGs .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYzfEI6xGs .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzfEI6xGs .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzfEI6xGs .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYzfEI6xGs .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYzfEI6xGs div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYzfEI6xGs .mbr-section-btn {
  display: flex;
}
.cid-sYzfEI6xGs .mbr-text-title {
  color: #ff9933;
}
.cid-sZyhYVTqai {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyhYVTqai .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyhYVTqai .mbr-text {
  color: #ffffff;
}
.cid-sYzfEJVRX0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYzfEJVRX0 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYzfEJVRX0 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYzfEJVRX0 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYzfEJVRX0 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYzfEJVRX0 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYzfEJVRX0 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYzfEJVRX0 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYzfEJVRX0 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYzfEJVRX0 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYzfEJVRX0 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYzfEJVRX0 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYzfEJVRX0 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYzfEJVRX0 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYzfEJVRX0 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYzfEJVRX0 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-g3 {
  /* Type valid CSS here */
}
#custom-html-g3 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sWjF5r3MiF {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWjF5r3MiF .image-wrapper {
  padding: 0 2rem;
}
.cid-sWjF5r3MiF .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sWjF5r3MiF .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sWjF5r3MiF .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sWjF5r3MiF .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sWjF5r3MiF .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sWjF5r3MiF .text-wrapper,
  .cid-sWjF5r3MiF .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWjF5r3MiF .text-wrapper,
  .cid-sWjF5r3MiF .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sWjF5r3MiF .text-wrapper,
  .cid-sWjF5r3MiF .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sWjF5r3MiF .text-wrapper,
  .cid-sWjF5r3MiF .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sWjF5r3MiF .text-wrapper,
  .cid-sWjF5r3MiF .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sWjF5r3MiF .content {
    text-align: left;
  }
}
.cid-sWjF5r3MiF .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sWjF5r3MiF .mbr-card-title {
    text-align: start;
  }
}
.cid-sWjF5r3MiF .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sWjF5r3MiF .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sWjF5r3MiF .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sWjF5r3MiF .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sWjF5r3MiF .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sWjF5r3MiF .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sWjF5r3MiF .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sWjF5r3MiF .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sWjF5r3MiF .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sWjF5r3MiF .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sWjF5r3MiF .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sWjF5r3MiF .nutrition-wrap {
    width: 100%;
  }
}
.cid-sWjF5r3MiF .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sWjF5r3MiF .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sWjF5r3MiF .tile-text-wrap {
  display: flex;
}
.cid-sWjF5r3MiF svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sWjF5r3MiF svg path {
  fill: #cd8ad1;
}
.cid-sWjF5r3MiF .numbers {
  display: flex;
  align-self: center;
}
.cid-sWjF5r3MiF .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sWjF5r3MiF .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sWjF5r3MiF .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sWjF5r3MiF .mbr-tile-text {
    text-align: start;
  }
}
.cid-sWjF5r3MiF .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sWjF5r3MiF .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sWjF5r3MiF .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sWjF5r3MiF .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sWjF5r3MiF .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sWjF5r3MiF .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWjF5r3MiF .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWjF5r3MiF .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sWjF5r3MiF .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sWjF5r3MiF div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sWjF5r3MiF .mbr-text-title {
  color: #ff9933;
}
.cid-sZyfDibykQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #010e0f;
}
.cid-sZyfDibykQ .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyfDibykQ .mbr-text {
  color: #ffffff;
}
.cid-sWOwM6NGFZ {
  background-color: #020e1e;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-sWOwM6NGFZ .content_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #020e1e;
  padding: 0 15%;
  text-align: center;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-sWOwM6NGFZ .content_wrap {
    padding: 100px 15%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sWOwM6NGFZ .content_wrap {
    padding: 60px 12px;
  }
}
.cid-sWOwM6NGFZ .mbr-section-title {
  margin-bottom: 25px;
  color: #ffffff;
}
.cid-sWOwM6NGFZ .mbr-section-btn {
  margin-top: 42px;
}
@media (max-width: 991px) {
  .cid-sWOwM6NGFZ .height_100 {
    height: 100%;
  }
}
.cid-sWOwM6NGFZ .item-image,
.cid-sWOwM6NGFZ img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-sWOwM6NGFZ .mbr-section-text,
.cid-sWOwM6NGFZ .mbr-section-btn {
  color: #fff0b0;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-g4 {
  /* Type valid CSS here */
}
#custom-html-g4 .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYpAPWtysa {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYpAPWtysa .image-wrapper {
  padding: 0 2rem;
}
.cid-sYpAPWtysa .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYpAPWtysa .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYpAPWtysa .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYpAPWtysa .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYpAPWtysa .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYpAPWtysa .text-wrapper,
  .cid-sYpAPWtysa .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYpAPWtysa .text-wrapper,
  .cid-sYpAPWtysa .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYpAPWtysa .text-wrapper,
  .cid-sYpAPWtysa .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYpAPWtysa .text-wrapper,
  .cid-sYpAPWtysa .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYpAPWtysa .text-wrapper,
  .cid-sYpAPWtysa .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYpAPWtysa .content {
    text-align: left;
  }
}
.cid-sYpAPWtysa .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYpAPWtysa .mbr-card-title {
    text-align: start;
  }
}
.cid-sYpAPWtysa .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYpAPWtysa .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYpAPWtysa .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYpAPWtysa .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYpAPWtysa .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYpAPWtysa .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYpAPWtysa .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYpAPWtysa .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYpAPWtysa .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYpAPWtysa .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYpAPWtysa .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYpAPWtysa .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYpAPWtysa .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYpAPWtysa .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYpAPWtysa .tile-text-wrap {
  display: flex;
}
.cid-sYpAPWtysa svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYpAPWtysa svg path {
  fill: #cd8ad1;
}
.cid-sYpAPWtysa .numbers {
  display: flex;
  align-self: center;
}
.cid-sYpAPWtysa .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYpAPWtysa .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYpAPWtysa .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYpAPWtysa .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYpAPWtysa .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYpAPWtysa .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYpAPWtysa .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYpAPWtysa .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sYpAPWtysa .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYpAPWtysa .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYpAPWtysa .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYpAPWtysa .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYpAPWtysa .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYpAPWtysa div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYpAPWtysa .mbr-text-title {
  color: #ff9933;
}
.cid-sZymdiXj76 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZymdiXj76 .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZymdiXj76 .mbr-text {
  color: #ffffff;
}
.cid-sYpAPYYwvo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYpAPYYwvo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYpAPYYwvo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYpAPYYwvo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYpAPYYwvo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYpAPYYwvo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYpAPYYwvo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYpAPYYwvo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYpAPYYwvo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYpAPYYwvo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYpAPYYwvo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYpAPYYwvo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYpAPYYwvo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYpAPYYwvo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYpAPYYwvo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYpAPYYwvo .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-8l {
  /* mini reset */
  /* menu container */
  /* menu list */
  /* menu links */
  /* menu dropdown */
  /* menu content */
  /*************CSS MOVIL********************/
}
#custom-html-8l .contenedor {
  width: 100%;
  height: 5.2vw;
  position: relative;
  justify-content: center;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.3);
}
#custom-html-8l .contenedor {
  top: 0;
  position: fixed;
}
#custom-html-8l .d1 {
  float: left;
  width: 20%;
  height: 100%;
  margin: 0;
  position: relative;
}
#custom-html-8l .d2 {
  float: left;
  width: 55%;
  height: 100%;
}
#custom-html-8l .d3 {
  float: left;
  margin: 0;
  position: relative;
  width: 25%;
  height: 100%;
}
#custom-html-8l .d4 {
  float: left;
  margin: 0;
  position: relative;
  width: 25%;
  height: 100%;
  visibility: hidden;
}
#custom-html-8l .center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#custom-html-8l body {
  margin: 0px;
  background: #fff;
}
#custom-html-8l .nav,
#custom-html-8l .nav a,
#custom-html-8l .nav form,
#custom-html-8l .nav input,
#custom-html-8l .nav li,
#custom-html-8l .nav ul {
  border: none;
  margin: 0;
  padding: 0;
}
#custom-html-8l .nav {
  align: center;
}
#custom-html-8l .nav a {
  text-decoration: none;
  padding: 5px;
}
#custom-html-8l .nav li {
  list-style: none;
}
#custom-html-8l .nav,
#custom-html-8l input {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.1vw;
  -webkit-font-smoothing: antialiased;
}
#custom-html-8l .nav {
  cursor: default;
  display: inline-block;
  position: relative;
  z-index: 500;
}
#custom-html-8l .nav > li {
  float: left;
}
#custom-html-8l .nav > li > a {
  background: #fff;
  color: #000;
  display: block;
  line-height: 4.5;
  padding: 0 1.25em;
  position: relative;
  /*transition: all .3s ease;*/
  z-index: 510;
}
#custom-html-8l .nav > li > a:focus,
#custom-html-8l .nav > li:hover > a {
  background: #4b4441;
  color: #fff;
  background-color: #4479D9;
}
#custom-html-8l .mega-menu {
  background: #fff;
  border: 1px solid #4479D9;
  border-radius: 0 0 3px 3px;
  opacity: 0;
  position: absolute;
  /*transition: all .3s ease .15s;*/
  visibility: hidden;
  width: 69vw;
  height: 30vw;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.3);
}
#custom-html-8l .mega-menu2 {
  background: #fff;
  border: 1px solid #4479D9;
  border-radius: 0 0 3px 3px;
  opacity: 0;
  position: absolute;
  /*transition: all .3s ease .15s;*/
  visibility: hidden;
  width: 50vw;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.3);
}
#custom-html-8l li:hover > .mega-menu {
  opacity: 1;
  overflow: visible;
  visibility: visible;
}
#custom-html-8l li:hover > .mega-menu2 {
  opacity: 1;
  overflow: visible;
  visibility: visible;
}
#custom-html-8l .nav-column {
  float: left;
  padding: 2.5%;
  width: 20%;
}
#custom-html-8l .nav-column a {
  color: #000;
  display: block;
  line-height: 1;
  margin: 5px;
}
#custom-html-8l .nav-column a:hover {
  color: #fff;
  background-color: #4479D9;
}
#custom-html-8l titulo {
  color: #2196f3;
  font-size: .95em;
  font-weight: bold;
  line-height: 1.15;
  margin: 1.5em 0 .75em;
  display: inline-block;
}
#custom-html-8l .button {
  border-radius: 1vw;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.1vw;
  transition-duration: 0.4s;
  cursor: pointer;
  background-color: #e43f3f;
  color: #fff;
  border: 1px solid #f50000;
  height: 3vw;
  width: 9vw;
}
#custom-html-8l .button:hover {
  background-color: #f50000;
  color: white;
}
@media only screen and (max-width: 480px) {
  #custom-html-8l .d2,
  #custom-html-8l .d3 {
    visibility: hidden;
    width: 0px;
  }
  #custom-html-8l .d4 {
    visibility: visible;
  }
}
#custom-html-fp {
  /* Type valid CSS here */
}
#custom-html-fp .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sYYu4MjSQv {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYYu4MjSQv .image-wrapper {
  padding: 0 2rem;
}
.cid-sYYu4MjSQv .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-sYYu4MjSQv .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-sYYu4MjSQv .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-sYYu4MjSQv .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-sYYu4MjSQv .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-sYYu4MjSQv .text-wrapper,
  .cid-sYYu4MjSQv .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYYu4MjSQv .text-wrapper,
  .cid-sYYu4MjSQv .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-sYYu4MjSQv .text-wrapper,
  .cid-sYYu4MjSQv .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-sYYu4MjSQv .text-wrapper,
  .cid-sYYu4MjSQv .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-sYYu4MjSQv .text-wrapper,
  .cid-sYYu4MjSQv .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sYYu4MjSQv .content {
    text-align: left;
  }
}
.cid-sYYu4MjSQv .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-sYYu4MjSQv .mbr-card-title {
    text-align: start;
  }
}
.cid-sYYu4MjSQv .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-sYYu4MjSQv .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-sYYu4MjSQv .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-sYYu4MjSQv .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-sYYu4MjSQv .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-sYYu4MjSQv .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-sYYu4MjSQv .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-sYYu4MjSQv .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-sYYu4MjSQv .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-sYYu4MjSQv .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-sYYu4MjSQv .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-sYYu4MjSQv .nutrition-wrap {
    width: 100%;
  }
}
.cid-sYYu4MjSQv .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-sYYu4MjSQv .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-sYYu4MjSQv .tile-text-wrap {
  display: flex;
}
.cid-sYYu4MjSQv svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-sYYu4MjSQv svg path {
  fill: #cd8ad1;
}
.cid-sYYu4MjSQv .numbers {
  display: flex;
  align-self: center;
}
.cid-sYYu4MjSQv .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-sYYu4MjSQv .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-sYYu4MjSQv .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sYYu4MjSQv .mbr-tile-text {
    text-align: start;
  }
}
.cid-sYYu4MjSQv .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sYYu4MjSQv .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-sYYu4MjSQv .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-sYYu4MjSQv .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-sYYu4MjSQv .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-sYYu4MjSQv .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYYu4MjSQv .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYYu4MjSQv .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-sYYu4MjSQv .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-sYYu4MjSQv div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-sYYu4MjSQv .mbr-text-title {
  color: #ff9933;
}
.cid-sZyhxSuV4A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #091834;
}
.cid-sZyhxSuV4A .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sZyhxSuV4A .mbr-text {
  color: #ffffff;
}
.cid-sYYu4NNFBL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sYYu4NNFBL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYYu4NNFBL .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYYu4NNFBL .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYYu4NNFBL .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYYu4NNFBL .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYYu4NNFBL .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYYu4NNFBL .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYYu4NNFBL .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYYu4NNFBL .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYYu4NNFBL .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYYu4NNFBL .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYYu4NNFBL .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYYu4NNFBL .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYYu4NNFBL .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYYu4NNFBL .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sZbxyFH5Gz {
  display: flex;
  background-image: url("../../../assets/images/fondo-movil-2000x963.jpg");
}
.cid-sZbxyFH5Gz .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-sZbxyFH5Gz .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-sZbxyFH5Gz {
    align-items: flex-end;
  }
  .cid-sZbxyFH5Gz .row {
    justify-content: flex-end;
  }
  .cid-sZbxyFH5Gz .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sZbxyFH5Gz .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sZbxyFH5Gz {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sZbxyFH5Gz .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sZbxyFH5Gz .content-wrap {
    width: 100%;
  }
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-sZ92JiEZFa {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sZ92JiEZFa h4 {
  display: flex;
  color: #000000;
}
.cid-sZ92JiEZFa .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-sZ92JiEZFa .wrap {
  display: flex;
}
.cid-sZ92JiEZFa .icon {
  background: #203864;
  min-width: 33px;
  min-height: 33px;
  border-radius: 100%;
  color: white !important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-sZ92JiEZFa img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-sZ92JiEZFa .mbr-section-title {
  color: #333333;
  text-align: center;
}
.cid-sZ92JiEZFa p {
  margin: 0;
}
.cid-sZ92JiEZFa .card .card-header a.panel-title {
  background-color: transparent !important;
  margin-top: 0px !important;
}
.cid-sZ92JiEZFa .mbr-section-subtitle {
  font-weight: 500;
  color: #656565;
  text-align: center;
}
.cid-sZ92JiEZFa .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-sZ92JiEZFa .panel-group {
  width: 100%;
}
.cid-sZ92JiEZFa .panel-title {
  border-bottom: 1px solid #ececec;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sZ92JiEZFa .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sZ92JiEZFa .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sZ92JiEZFa .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sZ92JiEZFa .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sZ92JiEZFa .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-sZ92JiEZFa .card .panel-body {
  background: #ffffff;
}
.cid-sZ92JiEZFa .sign {
  color: #000000;
}
.cid-sZ92JiEZFa .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sZ92JiEZFa .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sZ92JiEZFa .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-sZ92JiEZFa .header-text,
.cid-sZ92JiEZFa .sign {
  color: #333333;
}
.cid-sZ92JiEZFa h2 {
  font-size: 20px;
}
.cid-sZ92JiEZFa .text-primary {
  text-decoration: none;
}
.cid-sZ92JiEZFa a {
  text-decoration: none;
}
#custom-html-gb {
  /* Type valid CSS here */
}
#custom-html-gb .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-t06VHKA1Ty {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t06VHKA1Ty .image-wrapper {
  padding: 0 2rem;
}
.cid-t06VHKA1Ty .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t06VHKA1Ty .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t06VHKA1Ty .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t06VHKA1Ty .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t06VHKA1Ty .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t06VHKA1Ty .text-wrapper,
  .cid-t06VHKA1Ty .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t06VHKA1Ty .text-wrapper,
  .cid-t06VHKA1Ty .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t06VHKA1Ty .text-wrapper,
  .cid-t06VHKA1Ty .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t06VHKA1Ty .text-wrapper,
  .cid-t06VHKA1Ty .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t06VHKA1Ty .text-wrapper,
  .cid-t06VHKA1Ty .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t06VHKA1Ty .content {
    text-align: center;
  }
}
.cid-t06VHKA1Ty .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t06VHKA1Ty .mbr-card-title {
    text-align: start;
  }
}
.cid-t06VHKA1Ty .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t06VHKA1Ty .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t06VHKA1Ty .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t06VHKA1Ty .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t06VHKA1Ty .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t06VHKA1Ty .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t06VHKA1Ty .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t06VHKA1Ty .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t06VHKA1Ty .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t06VHKA1Ty .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t06VHKA1Ty .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t06VHKA1Ty .nutrition-wrap {
    width: 100%;
  }
}
.cid-t06VHKA1Ty .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t06VHKA1Ty .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t06VHKA1Ty .tile-text-wrap {
  display: flex;
}
.cid-t06VHKA1Ty svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t06VHKA1Ty svg path {
  fill: #cd8ad1;
}
.cid-t06VHKA1Ty .numbers {
  display: flex;
  align-self: center;
}
.cid-t06VHKA1Ty .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t06VHKA1Ty .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t06VHKA1Ty .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t06VHKA1Ty .mbr-tile-text {
    text-align: start;
  }
}
.cid-t06VHKA1Ty .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t06VHKA1Ty .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t06VHKA1Ty .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t06VHKA1Ty .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-t06VHKA1Ty .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t06VHKA1Ty .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t06VHKA1Ty .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t06VHKA1Ty .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t06VHKA1Ty .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t06VHKA1Ty div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t06VHKA1Ty .mbr-text-title {
  color: #091834;
}
.cid-sWxlxqgItg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sWxlxqgItg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sWxlxqgItg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sWxlxqgItg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sWxlxqgItg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sWxlxqgItg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sWxlxqgItg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sWxlxqgItg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWxlxqgItg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sWxlxqgItg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWxlxqgItg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWxlxqgItg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sWxlxqgItg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sWxlxqgItg .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
#custom-html-hj {
  /* Type valid CSS here */
}
#custom-html-hj .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
.cid-t8Ydb67EMB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f6f6f6;
}
@media only screen and (max-width: 1026px) {
  .cid-t8Ydb67EMB {
    padding-top: 6rem;
  }
}
.cid-t8Ydb67EMB .mbr-section-subtitle {
  color: #4479d9;
}
.cid-t9jlY8JluN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/imagen16-2000x499.jpeg");
}
.cid-t9jlY8JluN .row {
  justify-content: space-between;
}
.cid-t9jlY8JluN .form-control {
  box-shadow: none;
  margin-bottom: 5px;
  padding: 0.2rem 1rem !important;
  background-color: #ffffff;
  border: 1px solid #bbbbbb !important;
  color: #353535;
  border-radius: 0.25rem;
  line-height: 2.5rem !important;
}
.cid-t9jlY8JluN .form-control:focus,
.cid-t9jlY8JluN .form-control:hover {
  border: 1px solid #bbbbbb !important;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-t9jlY8JluN .form-group {
  margin-bottom: 1rem;
}
.cid-t9jlY8JluN input::-webkit-input-placeholder,
.cid-t9jlY8JluN textarea::-webkit-input-placeholder {
  color: #353535;
}
.cid-t9jlY8JluN input:-moz-placeholder,
.cid-t9jlY8JluN textarea:-moz-placeholder {
  color: #353535;
}
.cid-t9jlY8JluN .jq-selectbox li,
.cid-t9jlY8JluN .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-t9jlY8JluN .jq-selectbox li:hover,
.cid-t9jlY8JluN .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-t9jlY8JluN .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-t9jlY8JluN .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-t9jlY8JluN .mbr-text {
  color: #767676;
}
.cid-t9jlY8JluN .form-block {
  padding: 3rem;
  position: relative;
}
.cid-t9jlY8JluN .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 6px;
  left: 0;
  right: 0;
  background: #ffffff;
  opacity: 1;
  z-index: 0;
}
.cid-t9jlY8JluN .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-t9jlY8JluN .form-block {
    padding: 1rem;
  }
}
.cid-t9jlY8JluN H4 {
  color: #232323;
}
.cid-t9jlY8JluN .mbr-section-title,
.cid-t9jlY8JluN .mbr-section-btn {
  color: #ffffff;
}
.cid-t9jlY8JluN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t9jlY8JluN .form-text {
  color: #1f4256;
}
.cid-t9jlY8JluN .text {
  color: #ffffff;
}
.cid-t8Yd5koWZT {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #201a2e;
}
.cid-t8Yd5koWZT .row {
  flex-direction: row-reverse;
}
.cid-t8Yd5koWZT .image-wrapper {
  padding: 0 2rem;
}
.cid-t8Yd5koWZT .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t8Yd5koWZT .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t8Yd5koWZT .mbr-section-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cid-t8Yd5koWZT .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t8Yd5koWZT .mbr-text {
  color: #ffffff;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t8Yd5koWZT .text-wrapper,
  .cid-t8Yd5koWZT .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t8Yd5koWZT .text-wrapper,
  .cid-t8Yd5koWZT .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t8Yd5koWZT .text-wrapper,
  .cid-t8Yd5koWZT .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t8Yd5koWZT .text-wrapper,
  .cid-t8Yd5koWZT .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t8Yd5koWZT .text-wrapper,
  .cid-t8Yd5koWZT .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t8Yd5koWZT .content {
    text-align: left;
  }
}
.cid-t8Yd5koWZT .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t8Yd5koWZT .mbr-card-title {
    text-align: start;
  }
}
.cid-t8Yd5koWZT .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t8Yd5koWZT .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t8Yd5koWZT .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t8Yd5koWZT .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t8Yd5koWZT .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t8Yd5koWZT .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t8Yd5koWZT .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t8Yd5koWZT .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t8Yd5koWZT .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t8Yd5koWZT .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t8Yd5koWZT .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t8Yd5koWZT .nutrition-wrap {
    width: 100%;
  }
}
.cid-t8Yd5koWZT .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t8Yd5koWZT .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t8Yd5koWZT .tile-text-wrap {
  display: flex;
}
.cid-t8Yd5koWZT svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t8Yd5koWZT svg path {
  fill: #cd8ad1;
}
.cid-t8Yd5koWZT .numbers {
  display: flex;
  align-self: center;
}
.cid-t8Yd5koWZT .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t8Yd5koWZT .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t8Yd5koWZT .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t8Yd5koWZT .mbr-tile-text {
    text-align: start;
  }
}
.cid-t8Yd5koWZT .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t8Yd5koWZT .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t8Yd5koWZT .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t8Yd5koWZT .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-t8Yd5koWZT .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t8Yd5koWZT .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t8Yd5koWZT .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t8Yd5koWZT .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t8Yd5koWZT .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t8Yd5koWZT div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t8Yd5koWZT .mbr-text-title {
  color: #ff9933;
}
.cid-t91KQArFjs {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t91KQArFjs .image-wrapper {
  padding: 0 2rem;
}
.cid-t91KQArFjs .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t91KQArFjs .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t91KQArFjs .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t91KQArFjs .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t91KQArFjs .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t91KQArFjs .text-wrapper,
  .cid-t91KQArFjs .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91KQArFjs .text-wrapper,
  .cid-t91KQArFjs .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t91KQArFjs .text-wrapper,
  .cid-t91KQArFjs .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t91KQArFjs .text-wrapper,
  .cid-t91KQArFjs .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t91KQArFjs .text-wrapper,
  .cid-t91KQArFjs .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t91KQArFjs .content {
    text-align: center;
  }
}
.cid-t91KQArFjs .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t91KQArFjs .mbr-card-title {
    text-align: start;
  }
}
.cid-t91KQArFjs .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t91KQArFjs .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t91KQArFjs .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t91KQArFjs .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t91KQArFjs .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t91KQArFjs .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t91KQArFjs .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t91KQArFjs .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t91KQArFjs .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t91KQArFjs .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t91KQArFjs .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t91KQArFjs .nutrition-wrap {
    width: 100%;
  }
}
.cid-t91KQArFjs .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t91KQArFjs .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t91KQArFjs .tile-text-wrap {
  display: flex;
}
.cid-t91KQArFjs svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t91KQArFjs svg path {
  fill: #cd8ad1;
}
.cid-t91KQArFjs .numbers {
  display: flex;
  align-self: center;
}
.cid-t91KQArFjs .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t91KQArFjs .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t91KQArFjs .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t91KQArFjs .mbr-tile-text {
    text-align: start;
  }
}
.cid-t91KQArFjs .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t91KQArFjs .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t91KQArFjs .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t91KQArFjs .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-t91KQArFjs .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t91KQArFjs .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91KQArFjs .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91KQArFjs .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91KQArFjs .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91KQArFjs div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t91KQArFjs .mbr-text-title {
  color: #ff9933;
}
.cid-t91LDXlxLh {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f6f6f6;
}
.cid-t91LDXlxLh .row {
  flex-direction: row-reverse;
}
.cid-t91LDXlxLh .image-wrapper {
  padding: 0 2rem;
}
.cid-t91LDXlxLh .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t91LDXlxLh .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t91LDXlxLh .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t91LDXlxLh .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t91LDXlxLh .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t91LDXlxLh .text-wrapper,
  .cid-t91LDXlxLh .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91LDXlxLh .text-wrapper,
  .cid-t91LDXlxLh .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t91LDXlxLh .text-wrapper,
  .cid-t91LDXlxLh .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t91LDXlxLh .text-wrapper,
  .cid-t91LDXlxLh .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t91LDXlxLh .text-wrapper,
  .cid-t91LDXlxLh .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t91LDXlxLh .content {
    text-align: center;
  }
}
.cid-t91LDXlxLh .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t91LDXlxLh .mbr-card-title {
    text-align: start;
  }
}
.cid-t91LDXlxLh .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t91LDXlxLh .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t91LDXlxLh .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t91LDXlxLh .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t91LDXlxLh .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t91LDXlxLh .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t91LDXlxLh .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t91LDXlxLh .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t91LDXlxLh .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t91LDXlxLh .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t91LDXlxLh .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t91LDXlxLh .nutrition-wrap {
    width: 100%;
  }
}
.cid-t91LDXlxLh .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t91LDXlxLh .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t91LDXlxLh .tile-text-wrap {
  display: flex;
}
.cid-t91LDXlxLh svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t91LDXlxLh svg path {
  fill: #cd8ad1;
}
.cid-t91LDXlxLh .numbers {
  display: flex;
  align-self: center;
}
.cid-t91LDXlxLh .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t91LDXlxLh .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t91LDXlxLh .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t91LDXlxLh .mbr-tile-text {
    text-align: start;
  }
}
.cid-t91LDXlxLh .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t91LDXlxLh .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t91LDXlxLh .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t91LDXlxLh .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-t91LDXlxLh .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t91LDXlxLh .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91LDXlxLh .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91LDXlxLh .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91LDXlxLh .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91LDXlxLh div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t91LDXlxLh .mbr-text-title {
  color: #ff9933;
}
.cid-t91MWKFJ5C {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t91MWKFJ5C .image-wrapper {
  padding: 0 2rem;
}
.cid-t91MWKFJ5C .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t91MWKFJ5C .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t91MWKFJ5C .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t91MWKFJ5C .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t91MWKFJ5C .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t91MWKFJ5C .text-wrapper,
  .cid-t91MWKFJ5C .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91MWKFJ5C .text-wrapper,
  .cid-t91MWKFJ5C .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t91MWKFJ5C .text-wrapper,
  .cid-t91MWKFJ5C .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t91MWKFJ5C .text-wrapper,
  .cid-t91MWKFJ5C .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t91MWKFJ5C .text-wrapper,
  .cid-t91MWKFJ5C .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t91MWKFJ5C .content {
    text-align: center;
  }
}
.cid-t91MWKFJ5C .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t91MWKFJ5C .mbr-card-title {
    text-align: start;
  }
}
.cid-t91MWKFJ5C .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t91MWKFJ5C .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t91MWKFJ5C .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t91MWKFJ5C .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t91MWKFJ5C .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t91MWKFJ5C .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t91MWKFJ5C .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t91MWKFJ5C .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t91MWKFJ5C .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t91MWKFJ5C .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t91MWKFJ5C .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t91MWKFJ5C .nutrition-wrap {
    width: 100%;
  }
}
.cid-t91MWKFJ5C .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t91MWKFJ5C .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t91MWKFJ5C .tile-text-wrap {
  display: flex;
}
.cid-t91MWKFJ5C svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t91MWKFJ5C svg path {
  fill: #cd8ad1;
}
.cid-t91MWKFJ5C .numbers {
  display: flex;
  align-self: center;
}
.cid-t91MWKFJ5C .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t91MWKFJ5C .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t91MWKFJ5C .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t91MWKFJ5C .mbr-tile-text {
    text-align: start;
  }
}
.cid-t91MWKFJ5C .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t91MWKFJ5C .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t91MWKFJ5C .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t91MWKFJ5C .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-t91MWKFJ5C .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t91MWKFJ5C .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91MWKFJ5C .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91MWKFJ5C .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91MWKFJ5C .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91MWKFJ5C div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t91MWKFJ5C .mbr-section-btn {
  display: flex;
}
.cid-t91MWKFJ5C .mbr-text-title {
  color: #ff9933;
}
.cid-t92eQMbk6V {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
@media (min-width: 768px) {
  .cid-t92eQMbk6V {
    background-image: url("../../../assets/images/imagen1-908x666.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
  }
}
.cid-t92eQMbk6V .row {
  align-items: center;
}
.cid-t92eQMbk6V .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-t92eQMbk6V .image-wrapper {
    padding: 40px 1rem 1rem 6rem;
  }
}
@media (max-width: 991px) {
  .cid-t92eQMbk6V .image-wrapper {
    padding: 1rem 1rem 1rem 6rem;
  }
}
.cid-t92eQMbk6V .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .cid-t92eQMbk6V .text-wrapper {
    padding-right: 115px;
  }
}
.cid-t92eQMbk6V .label-text {
  width: 100%;
  margin-bottom: 12px;
  color: #ffffff;
}
.cid-t92eQMbk6V .mbr-section-title {
  margin-bottom: 12px;
  color: #fafafa;
}
.cid-t92eQMbk6V .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 12px;
}
.cid-t92eQMbk6V .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-t92eQMbk6V .btn-container {
  width: 100%;
}
.cid-t92eQMbk6V .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-t92eQMbk6V .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t92eQMbk6V .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t91M1YT2Gj {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t91M1YT2Gj .image-wrapper {
  padding: 0 2rem;
}
.cid-t91M1YT2Gj .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t91M1YT2Gj .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t91M1YT2Gj .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t91M1YT2Gj .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t91M1YT2Gj .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t91M1YT2Gj .text-wrapper,
  .cid-t91M1YT2Gj .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91M1YT2Gj .text-wrapper,
  .cid-t91M1YT2Gj .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t91M1YT2Gj .text-wrapper,
  .cid-t91M1YT2Gj .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t91M1YT2Gj .text-wrapper,
  .cid-t91M1YT2Gj .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t91M1YT2Gj .text-wrapper,
  .cid-t91M1YT2Gj .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t91M1YT2Gj .content {
    text-align: center;
  }
}
.cid-t91M1YT2Gj .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t91M1YT2Gj .mbr-card-title {
    text-align: start;
  }
}
.cid-t91M1YT2Gj .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t91M1YT2Gj .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t91M1YT2Gj .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t91M1YT2Gj .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t91M1YT2Gj .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t91M1YT2Gj .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t91M1YT2Gj .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t91M1YT2Gj .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t91M1YT2Gj .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t91M1YT2Gj .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t91M1YT2Gj .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t91M1YT2Gj .nutrition-wrap {
    width: 100%;
  }
}
.cid-t91M1YT2Gj .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t91M1YT2Gj .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t91M1YT2Gj .tile-text-wrap {
  display: flex;
}
.cid-t91M1YT2Gj svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t91M1YT2Gj svg path {
  fill: #cd8ad1;
}
.cid-t91M1YT2Gj .numbers {
  display: flex;
  align-self: center;
}
.cid-t91M1YT2Gj .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t91M1YT2Gj .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t91M1YT2Gj .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t91M1YT2Gj .mbr-tile-text {
    text-align: start;
  }
}
.cid-t91M1YT2Gj .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t91M1YT2Gj .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t91M1YT2Gj .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t91M1YT2Gj .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-t91M1YT2Gj .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t91M1YT2Gj .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91M1YT2Gj .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91M1YT2Gj .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91M1YT2Gj .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91M1YT2Gj div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t91M1YT2Gj .mbr-section-btn {
  display: flex;
}
.cid-t91M1YT2Gj .mbr-text-title {
  color: #ff9933;
}
.cid-t91MLxxoPx {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f6f6f6;
}
.cid-t91MLxxoPx .row {
  flex-direction: row-reverse;
}
.cid-t91MLxxoPx .image-wrapper {
  padding: 0 2rem;
}
.cid-t91MLxxoPx .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t91MLxxoPx .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t91MLxxoPx .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t91MLxxoPx .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t91MLxxoPx .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t91MLxxoPx .text-wrapper,
  .cid-t91MLxxoPx .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91MLxxoPx .text-wrapper,
  .cid-t91MLxxoPx .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t91MLxxoPx .text-wrapper,
  .cid-t91MLxxoPx .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t91MLxxoPx .text-wrapper,
  .cid-t91MLxxoPx .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t91MLxxoPx .text-wrapper,
  .cid-t91MLxxoPx .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t91MLxxoPx .content {
    text-align: center;
  }
}
.cid-t91MLxxoPx .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t91MLxxoPx .mbr-card-title {
    text-align: start;
  }
}
.cid-t91MLxxoPx .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t91MLxxoPx .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t91MLxxoPx .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t91MLxxoPx .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t91MLxxoPx .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t91MLxxoPx .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t91MLxxoPx .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t91MLxxoPx .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t91MLxxoPx .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t91MLxxoPx .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t91MLxxoPx .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t91MLxxoPx .nutrition-wrap {
    width: 100%;
  }
}
.cid-t91MLxxoPx .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t91MLxxoPx .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t91MLxxoPx .tile-text-wrap {
  display: flex;
}
.cid-t91MLxxoPx svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t91MLxxoPx svg path {
  fill: #cd8ad1;
}
.cid-t91MLxxoPx .numbers {
  display: flex;
  align-self: center;
}
.cid-t91MLxxoPx .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t91MLxxoPx .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t91MLxxoPx .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t91MLxxoPx .mbr-tile-text {
    text-align: start;
  }
}
.cid-t91MLxxoPx .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t91MLxxoPx .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t91MLxxoPx .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t91MLxxoPx .price-text-wrap {
    margin-left: 0;
    justify-content: center;
  }
}
.cid-t91MLxxoPx .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t91MLxxoPx .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91MLxxoPx .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91MLxxoPx .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t91MLxxoPx .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t91MLxxoPx div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t91MLxxoPx .mbr-text-title {
  color: #ff9933;
}
.cid-t92eb6NHx6 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t92eb6NHx6 .image-wrapper {
  padding: 0 2rem;
}
.cid-t92eb6NHx6 .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-t92eb6NHx6 .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-t92eb6NHx6 .mbr-section-title {
  color: #203864;
  margin-bottom: 1.5rem;
}
.cid-t92eb6NHx6 .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
}
.cid-t92eb6NHx6 .mbr-text {
  color: #353535;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-t92eb6NHx6 .text-wrapper,
  .cid-t92eb6NHx6 .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t92eb6NHx6 .text-wrapper,
  .cid-t92eb6NHx6 .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-t92eb6NHx6 .text-wrapper,
  .cid-t92eb6NHx6 .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-t92eb6NHx6 .text-wrapper,
  .cid-t92eb6NHx6 .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-t92eb6NHx6 .text-wrapper,
  .cid-t92eb6NHx6 .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-t92eb6NHx6 .content {
    text-align: center;
  }
}
.cid-t92eb6NHx6 .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-t92eb6NHx6 .mbr-card-title {
    text-align: start;
  }
}
.cid-t92eb6NHx6 .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-t92eb6NHx6 .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-t92eb6NHx6 .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-t92eb6NHx6 .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-t92eb6NHx6 .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-t92eb6NHx6 .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-t92eb6NHx6 .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-t92eb6NHx6 .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-t92eb6NHx6 .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-t92eb6NHx6 .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-t92eb6NHx6 .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-t92eb6NHx6 .nutrition-wrap {
    width: 100%;
  }
}
.cid-t92eb6NHx6 .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-t92eb6NHx6 .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-t92eb6NHx6 .tile-text-wrap {
  display: flex;
}
.cid-t92eb6NHx6 svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-t92eb6NHx6 svg path {
  fill: #cd8ad1;
}
.cid-t92eb6NHx6 .numbers {
  display: flex;
  align-self: center;
}
.cid-t92eb6NHx6 .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-t92eb6NHx6 .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-t92eb6NHx6 .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-t92eb6NHx6 .mbr-tile-text {
    text-align: start;
  }
}
.cid-t92eb6NHx6 .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-t92eb6NHx6 .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-t92eb6NHx6 .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-t92eb6NHx6 .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-t92eb6NHx6 .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-t92eb6NHx6 .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t92eb6NHx6 .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t92eb6NHx6 .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-t92eb6NHx6 .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-t92eb6NHx6 div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-t92eb6NHx6 .mbr-section-btn {
  display: flex;
}
.cid-t92eb6NHx6 .mbr-text-title {
  color: #ff9933;
}
.cid-t93rafbS7r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t93rafbS7r .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-t93rafbS7r .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-t93rafbS7r img {
  width: 160px;
  margin: auto;
  margin-bottom: 2rem;
}
.cid-t93rafbS7r .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  min-height: 350px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-t93rafbS7r .card-title,
.cid-t93rafbS7r .card-box {
  text-align: center;
}
.cid-t93rafbS7r .main-title,
.cid-t93rafbS7r .title-col {
  text-align: center;
  color: #282b2f;
}
.cid-t93rafbS7r .card-text {
  color: #6592e6;
  text-align: left;
}
.cid-t8Yd5m7Dlb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-t8Yd5m7Dlb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t8Yd5m7Dlb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t8Yd5m7Dlb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t8Yd5m7Dlb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8Yd5m7Dlb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8Yd5m7Dlb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8Yd5m7Dlb .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t8Yd5m7Dlb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8Yd5m7Dlb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8Yd5m7Dlb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t8Yd5m7Dlb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8Yd5m7Dlb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8Yd5m7Dlb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8Yd5m7Dlb .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t8Yd5m7Dlb .animate__fadeInUp {
  -webkit-animation-name: none;
  animation-name: none;
}
