body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4375rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.92rem;
    font-size: calc( 1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0525rem + (1.15 - 1.0525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (1.105rem + (1.3 - 1.105) * ((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: #f0c48a !important;
}
.bg-success {
  background-color: #ffe161 !important;
}
.bg-info {
  background-color: #999999 !important;
}
.bg-warning {
  background-color: #9f6d2a !important;
}
.bg-danger {
  background-color: #73460b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f0c48a !important;
  border-color: #f0c48a !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: #e69d3d !important;
  border-color: #e69d3d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e69d3d !important;
  border-color: #e69d3d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c69453 !important;
  border-color: #c69453 !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: #926830 !important;
  border-color: #926830 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #926830 !important;
  border-color: #926830 !important;
}
.btn-info,
.btn-info:active {
  background-color: #999999 !important;
  border-color: #999999 !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: #6e6e6e !important;
  border-color: #6e6e6e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !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: #5a3e18 !important;
  border-color: #5a3e18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73460b !important;
  border-color: #73460b !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: #241603 !important;
  border-color: #241603 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !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: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f0c48a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e69d3d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f0c48a !important;
  border-color: #f0c48a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69453;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #926830 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c69453 !important;
  border-color: #c69453 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #999999;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #6e6e6e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9f6d2a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5a3e18 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73460b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #241603 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #73460b !important;
  border-color: #73460b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #f0c48a !important;
}
.text-secondary {
  color: #c69453 !important;
}
.text-success {
  color: #ffe161 !important;
}
.text-info {
  color: #999999 !important;
}
.text-warning {
  color: #9f6d2a !important;
}
.text-danger {
  color: #73460b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #e49630 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #865f2d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #facb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #666666 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #4e3615 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #160d02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f0c48a;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #999999;
}
.alert-warning {
  background-color: #9f6d2a;
}
.alert-danger {
  background-color: #73460b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f0c48a;
  border-color: #f0c48a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f0c48a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9ac6f;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e78d16;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.4375rem;
}
.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: #f0c48a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.4375rem;
}
blockquote {
  border-color: #f0c48a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f0c48a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f0c48a;
}
.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: #f0c48a;
  border-bottom-color: #f0c48a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f0c48a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #c69453 !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='%23f0c48a' %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;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
.cid-tPjTs1g1vo .navbar-dropdown {
  position: relative !important;
}
.cid-tPjTs1g1vo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPjTs1g1vo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPjTs1g1vo .dropdown-item:hover,
.cid-tPjTs1g1vo .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-tPjTs1g1vo .dropdown-item:hover span {
  color: white;
}
.cid-tPjTs1g1vo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPjTs1g1vo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPjTs1g1vo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPjTs1g1vo .nav-link {
  position: relative;
}
.cid-tPjTs1g1vo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown-menu,
.cid-tPjTs1g1vo .navbar.opened {
  background: #000000 !important;
}
.cid-tPjTs1g1vo .nav-item:focus,
.cid-tPjTs1g1vo .nav-link:focus {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPjTs1g1vo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPjTs1g1vo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.opened {
  transition: all 0.3s;
}
.cid-tPjTs1g1vo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPjTs1g1vo .navbar .navbar-logo img {
  width: auto;
}
.cid-tPjTs1g1vo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar.collapsed {
  justify-content: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPjTs1g1vo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPjTs1g1vo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPjTs1g1vo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPjTs1g1vo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPjTs1g1vo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPjTs1g1vo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPjTs1g1vo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPjTs1g1vo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPjTs1g1vo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown-item.active,
.cid-tPjTs1g1vo .dropdown-item:active {
  background-color: transparent;
}
.cid-tPjTs1g1vo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPjTs1g1vo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPjTs1g1vo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPjTs1g1vo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPjTs1g1vo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tPjTs1g1vo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPjTs1g1vo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPjTs1g1vo .navbar {
    height: 70px;
  }
  .cid-tPjTs1g1vo .navbar.opened {
    height: auto;
  }
  .cid-tPjTs1g1vo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPlsgbozmR {
  display: flex;
  background-image: url("../../../assets/images/sugar-baby.webp");
}
.cid-tPlsgbozmR .mbr-overlay {
  background-color: #555555;
  opacity: 0.2;
}
.cid-tPlsgbozmR .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tPlsgbozmR {
    align-items: flex-end;
  }
  .cid-tPlsgbozmR .row {
    justify-content: flex-start;
  }
  .cid-tPlsgbozmR .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tPlsgbozmR .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tPlsgbozmR {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tPlsgbozmR .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tPlsgbozmR .content-wrap {
    width: 100%;
  }
}
.cid-tPlsgbozmR .mbr-section-title {
  text-align: left;
}
.cid-tPlsgbozmR .mbr-text,
.cid-tPlsgbozmR .mbr-section-btn {
  text-align: left;
}
.cid-tPEiZmUJal {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tPEiZmUJal .mbr-section-subtitle {
  text-align: center;
  color: #dedede;
}
.cid-tPEiZmUJal .mbr-text {
  color: #dedede;
  text-align: center;
}
.cid-tPEK7ontRr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tPEK7ontRr .card-img span {
  font-size: 90px;
  color: #f0c48a;
}
@media (min-width: 992px) {
  .cid-tPEK7ontRr .col-lg-x {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-tPEK7ontRr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPEK7ontRr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPEK7ontRr .mbr-text,
.cid-tPEK7ontRr .mbr-section-btn {
  color: #dedede;
}
.cid-tPEK7ontRr .card-title,
.cid-tPEK7ontRr .card-img {
  color: #dedede;
}
.cid-tPEOJTL0Lt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tPEOJTL0Lt .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tPEOJTL0Lt .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tPEOJTL0Lt .image-wrapper {
    padding: 30px;
    padding-left: 3rem;
  }
}
.cid-tPEOJTL0Lt .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-tPEOJTL0Lt .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tPEOJTL0Lt .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
  background-color: #000000;
}
.cid-tPEOJTL0Lt .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-tPEOJTL0Lt .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tPEOJTL0Lt .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tPEOJTL0Lt .col-text {
    padding: 30px;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tPEOJTL0Lt .col-text {
    text-align: center;
  }
}
.cid-tPEOJTL0Lt .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tPEOJTL0Lt .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-tPEOJTL0Lt .label-text {
    text-align: center !important;
  }
}
.cid-tPEOJTL0Lt .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-tPEOJTL0Lt .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-tPEOJTL0Lt .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-tPEOJTL0Lt .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tPEOJTL0Lt .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tPEOJTL0Lt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPEOJTL0Lt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPEOJTL0Lt .mbr-section-title,
.cid-tPEOJTL0Lt .mbr-section-btn {
  color: #dedede;
}
.cid-tPETTB13Rx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #222222;
}
.cid-tPETTB13Rx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPETTB13Rx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPETTB13Rx .content-wrapper {
  background: #222222;
}
@media (max-width: 991px) {
  .cid-tPETTB13Rx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPETTB13Rx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tPETTB13Rx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPETTB13Rx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tPETTB13Rx .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tPETTB13Rx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tPETTB13Rx .mbr-text,
.cid-tPETTB13Rx .mbr-section-btn {
  color: #f9f7f5;
}
.cid-tPETTB13Rx .card-title {
  color: #dedede;
}
.cid-tPETNWawij {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #222222;
}
.cid-tPETNWawij .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPETNWawij .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPETNWawij .content-wrapper {
  background: #222222;
}
@media (max-width: 991px) {
  .cid-tPETNWawij .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tPETNWawij .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPETNWawij .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tPETNWawij .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPETNWawij .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tPETNWawij .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tPETNWawij .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tPETNWawij .card-title {
  color: #dedede;
}
.cid-tPETNWawij .mbr-text,
.cid-tPETNWawij .mbr-section-btn {
  color: #ffffff;
}
.cid-tQ53mmk3VJ {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #f9f7f5;
}
.cid-tQ53mmk3VJ .card-subtitle {
  text-align: left;
  margin-left: -15px;
  color: #8c8c95;
}
.cid-tQ53mmk3VJ .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  overflow: visible;
  padding: 48px 42px 38px;
  border: 1px solid #eff0f6;
}
.cid-tQ53mmk3VJ .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-tQ53mmk3VJ .card-text {
  margin-bottom: 16px;
  text-align: left;
  color: #8c8c95;
}
.cid-tQ53mmk3VJ .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tQ53mmk3VJ .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tQ53mmk3VJ img {
  border-radius: 10%;
  height: 65px;
  width: auto;
  margin: 0;
}
.cid-tQ53mmk3VJ .mbr-iconfont::before {
  font-size: 25px;
}
.cid-tQ53mmk3VJ .card-title {
  margin-bottom: 4px;
  padding: 0;
  margin-left: -15px;
}
.cid-tQ53mmk3VJ .col-12.col-md-6.col-lg-4 {
  margin-top: 30px;
}
.cid-tQ53mmk3VJ .col-12.col-md-6.col-lg-4:nth-child(1) {
  margin-top: 0px;
}
.cid-tQ53mmk3VJ .col-12.col-md-6.col-lg-4:nth-child(2) {
  margin-top: 0px;
}
.cid-tQ53mmk3VJ .col-12.col-md-6.col-lg-4:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-tQ53mmk3VJ .col-12.col-md-6.col-lg-4:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-tQ53mmk3VJ .col-12.col-md-6.col-lg-4:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-tQ53mmk3VJ .align {
  display: flex;
  align-items: center;
}
.cid-tQ53mmk3VJ .mbr-section-title {
  margin-bottom: 56px;
  color: #14142b;
  text-align: center;
}
.cid-tQ53mmk3VJ .btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tQ53mmk3VJ .shadow {
    padding: 40px 40px 32px;
  }
}
@media (max-width: 479px) {
  .cid-tQ53mmk3VJ .shadow {
    padding: 33px 25px 28px;
  }
}
.cid-tPEObuEAPi {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #f9f7f5;
}
.cid-tPEObuEAPi .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tPEObuEAPi .mbr-text {
  color: #000000;
}
.cid-tQ0Lo8sGvk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f9f7f5;
}
.cid-tQ0Lo8sGvk .card-img span {
  font-size: 90px;
  color: #f0c48a;
}
@media (min-width: 992px) {
  .cid-tQ0Lo8sGvk .col-lg-x {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-tQ0Lo8sGvk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQ0Lo8sGvk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQ0Lo8sGvk .mbr-text,
.cid-tQ0Lo8sGvk .mbr-section-btn {
  color: #000000;
}
.cid-tQ0Lo8sGvk .card-title,
.cid-tQ0Lo8sGvk .card-img {
  color: #000000;
}
.cid-tQ4YQjV1nT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f7f5;
}
.cid-tQ4YQjV1nT .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tQ4YQjV1nT .panel-title {
  display: flex;
  align-items: center;
}
.cid-tQ4YQjV1nT .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #acaebd;
}
.cid-tQ4YQjV1nT .panel-body,
.cid-tQ4YQjV1nT .card-header {
  padding: 1rem 0;
}
.cid-tQ4YQjV1nT .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-tQ4YQjV1nT .panel-title-edit {
  color: #14142b;
  display: flex;
  align-items: center;
}
.cid-tQ4YQjV1nT .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-tQ4YQjV1nT .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-tQ4YQjV1nT .section-head {
  margin-bottom: 56px;
}
.cid-tQ4YQjV1nT .card {
  margin-bottom: 32px;
}
.cid-tQ4YQjV1nT H3 {
  color: #14142b;
}
@media (max-width: 768px) {
  .cid-tQ4YQjV1nT .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-tQ4YQjV1nT .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tQprpRIE1F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tQprpRIE1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQprpRIE1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQprpRIE1F .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tQprpRIE1F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQprpRIE1F .row {
    text-align: center;
  }
  .cid-tQprpRIE1F .social-row {
    justify-content: center;
  }
}
.cid-tQprpRIE1F .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 0rem;
  }
}
.cid-tQprpRIE1F .mbr-text {
  color: #999999;
}
.cid-tQprpRIE1F .mbr-iconfont {
  color: black;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  position: relative !important;
}
.cid-tPjTs1g1vo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPjTs1g1vo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPjTs1g1vo .dropdown-item:hover,
.cid-tPjTs1g1vo .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-tPjTs1g1vo .dropdown-item:hover span {
  color: white;
}
.cid-tPjTs1g1vo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPjTs1g1vo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPjTs1g1vo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPjTs1g1vo .nav-link {
  position: relative;
}
.cid-tPjTs1g1vo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown-menu,
.cid-tPjTs1g1vo .navbar.opened {
  background: #000000 !important;
}
.cid-tPjTs1g1vo .nav-item:focus,
.cid-tPjTs1g1vo .nav-link:focus {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPjTs1g1vo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPjTs1g1vo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.opened {
  transition: all 0.3s;
}
.cid-tPjTs1g1vo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPjTs1g1vo .navbar .navbar-logo img {
  width: auto;
}
.cid-tPjTs1g1vo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar.collapsed {
  justify-content: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPjTs1g1vo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPjTs1g1vo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPjTs1g1vo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPjTs1g1vo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPjTs1g1vo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPjTs1g1vo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPjTs1g1vo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPjTs1g1vo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPjTs1g1vo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown-item.active,
.cid-tPjTs1g1vo .dropdown-item:active {
  background-color: transparent;
}
.cid-tPjTs1g1vo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPjTs1g1vo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPjTs1g1vo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPjTs1g1vo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPjTs1g1vo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tPjTs1g1vo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPjTs1g1vo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPjTs1g1vo .navbar {
    height: 70px;
  }
  .cid-tPjTs1g1vo .navbar.opened {
    height: auto;
  }
  .cid-tPjTs1g1vo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXgWIfsncr {
  background-image: url("../../../assets/images/sugar-daddy-lisboa.webp");
}
.cid-tXgWIfsncr .mbr-overlay {
  background: #000000;
}
.cid-tXgWIfsncr .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tW2ZrbXEuJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-tW2ZrbXEuJ .row {
  justify-content: center;
}
.cid-tW2ZrbXEuJ .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-tW2ZrbXEuJ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tW2ZrbXEuJ .item:focus,
.cid-tW2ZrbXEuJ span:focus {
  outline: none;
}
.cid-tW2ZrbXEuJ .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-tW2ZrbXEuJ .col-items {
    padding: 0 !important;
  }
}
.cid-tW2ZrbXEuJ .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-tW2ZrbXEuJ .item {
    padding: 0 20px;
  }
}
.cid-tW2ZrbXEuJ .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tW2ZrbXEuJ .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-tW2ZrbXEuJ .item-wrapper {
    padding: 60px;
  }
}
.cid-tW2ZrbXEuJ .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tW2ZrbXEuJ .item-content {
    text-align: center;
  }
}
.cid-tW2ZrbXEuJ .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-tW2ZrbXEuJ .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-tW2ZrbXEuJ .item-title {
  color: #000000;
}
.cid-tW2ZrbXEuJ .item-subtitle {
  color: #000000;
}
.cid-tW2ZrbXEuJ .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-tW2ZrbXEuJ .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tW2ZrbXEuJ .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tW2ZrbXEuJ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tW2ZrbXEuJ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tXimwgqC4T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-tXimwgqC4T .mbr-text {
  color: #555555;
}
.cid-tXimwgqC4T .mbr-section-subtitle {
  text-align: center;
}
.cid-tW2VsGg8Ok {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-tW2VsGg8Ok .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tW2VsGg8Ok .row {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-tW2VsGg8Ok .col-text {
    padding: 0 30px;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tW2VsGg8Ok .col-text {
    margin-bottom: 3rem;
  }
}
.cid-tW2VsGg8Ok .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tW2VsGg8Ok .text-wrapper {
    text-align: center !important;
  }
}
.cid-tW2VsGg8Ok .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-tW2VsGg8Ok .label-text {
    text-align: center !important;
  }
}
.cid-tW2VsGg8Ok .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tW2VsGg8Ok .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tW2VsGg8Ok .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tW2VsGg8Ok .mbr-text {
    text-align: center !important;
  }
}
.cid-tW2VsGg8Ok .btn-container {
  width: 100%;
  margin-top: 8px;
}
.cid-tW2VsGg8Ok .mbr-section-btn .btn {
  padding: 0;
}
.cid-tW2VsGg8Ok .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-tW2VsGg8Ok .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-tW2VsGg8Ok .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-tW2VsGg8Ok .card {
  padding: 0 12px 30px 12px;
}
@media (min-width: 992px) {
  .cid-tW2VsGg8Ok .card {
    padding: 0 30px 30px 30px;
  }
}
.cid-tW2VsGg8Ok .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tW2VsGg8Ok .card-title {
  color: #222222;
  margin-bottom: 1rem;
}
.cid-tW2VsGg8Ok .card-inside-border {
  width: 100%;
  height: 1px;
  margin-bottom: 1rem;
  background-color: #555555;
}
.cid-tW2VsGg8Ok .card-text {
  color: #555555;
  margin-bottom: 24px;
}
.cid-tW2VsGg8Ok .mbr-fallback-image.disabled {
  display: none;
}
.cid-tW2VsGg8Ok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXkTp8t37B {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f4f4;
}
.cid-tXkTp8t37B .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tXkTp8t37B .items-col {
  background: #73460b;
  padding: 5rem;
  height: 100%;
}
.cid-tXkTp8t37B .container {
  max-width: 1800px;
}
@media (max-width: 1400px) {
  .cid-tXkTp8t37B .items-col {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tXkTp8t37B .items-col {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tXkTp8t37B .col-md-12 {
    padding-bottom: 2rem;
  }
}
.cid-tXkTp8t37B img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}
.cid-tXkTp8t37B .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.cid-tXkTp8t37B .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  margin-bottom: 0.5rem;
}
.cid-tXkTp8t37B .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: '\e908';
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.8rem;
}
.cid-tXkTp8t37B .link,
.cid-tXkTp8t37B .link-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-uMAzx5UUhr {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #f4f4f4;
}
.cid-uMAzx5UUhr img,
.cid-uMAzx5UUhr .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uMAzx5UUhr .item:focus,
.cid-uMAzx5UUhr span:focus {
  outline: none;
}
.cid-uMAzx5UUhr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uMAzx5UUhr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMAzx5UUhr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMAzx5UUhr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMAzx5UUhr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMAzx5UUhr .mbr-section-title {
  color: #222222;
}
.cid-uMAzx5UUhr .mbr-text,
.cid-uMAzx5UUhr .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uMAzx5UUhr .item-title {
  text-align: center;
}
.cid-uMAzx5UUhr .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uQ1XkJ61Vo {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #f4f4f4;
}
.cid-uQ1XkJ61Vo img,
.cid-uQ1XkJ61Vo .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uQ1XkJ61Vo .item:focus,
.cid-uQ1XkJ61Vo span:focus {
  outline: none;
}
.cid-uQ1XkJ61Vo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uQ1XkJ61Vo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQ1XkJ61Vo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQ1XkJ61Vo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQ1XkJ61Vo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQ1XkJ61Vo .mbr-section-title {
  color: #222222;
}
.cid-uQ1XkJ61Vo .mbr-text,
.cid-uQ1XkJ61Vo .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uQ1XkJ61Vo .item-title {
  text-align: center;
}
.cid-uQ1XkJ61Vo .item-subtitle {
  text-align: center;
  color: #555555;
}
.cid-u5VZ8Wcsz3 {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #f4f4f4;
}
.cid-u5VZ8Wcsz3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5VZ8Wcsz3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5VZ8Wcsz3 .mbr-text,
.cid-u5VZ8Wcsz3 .mbr-section-btn {
  color: #232323;
}
.cid-u5VZ8Wcsz3 .card-title,
.cid-u5VZ8Wcsz3 .card-box {
  color: #ffffff;
}
.cid-u5VZ8Wcsz3 .mbr-text,
.cid-u5VZ8Wcsz3 .link-wrap {
  color: #ffffff;
}
.cid-tQprpRIE1F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tQprpRIE1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQprpRIE1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQprpRIE1F .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tQprpRIE1F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQprpRIE1F .row {
    text-align: center;
  }
  .cid-tQprpRIE1F .social-row {
    justify-content: center;
  }
}
.cid-tQprpRIE1F .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 0rem;
  }
}
.cid-tQprpRIE1F .mbr-text {
  color: #999999;
}
.cid-tQprpRIE1F .mbr-iconfont {
  color: black;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  position: relative !important;
}
.cid-tPjTs1g1vo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPjTs1g1vo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPjTs1g1vo .dropdown-item:hover,
.cid-tPjTs1g1vo .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-tPjTs1g1vo .dropdown-item:hover span {
  color: white;
}
.cid-tPjTs1g1vo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPjTs1g1vo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPjTs1g1vo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPjTs1g1vo .nav-link {
  position: relative;
}
.cid-tPjTs1g1vo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown-menu,
.cid-tPjTs1g1vo .navbar.opened {
  background: #000000 !important;
}
.cid-tPjTs1g1vo .nav-item:focus,
.cid-tPjTs1g1vo .nav-link:focus {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPjTs1g1vo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPjTs1g1vo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.opened {
  transition: all 0.3s;
}
.cid-tPjTs1g1vo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPjTs1g1vo .navbar .navbar-logo img {
  width: auto;
}
.cid-tPjTs1g1vo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar.collapsed {
  justify-content: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPjTs1g1vo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPjTs1g1vo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPjTs1g1vo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPjTs1g1vo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPjTs1g1vo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPjTs1g1vo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPjTs1g1vo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPjTs1g1vo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPjTs1g1vo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown-item.active,
.cid-tPjTs1g1vo .dropdown-item:active {
  background-color: transparent;
}
.cid-tPjTs1g1vo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPjTs1g1vo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPjTs1g1vo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPjTs1g1vo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPjTs1g1vo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tPjTs1g1vo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPjTs1g1vo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPjTs1g1vo .navbar {
    height: 70px;
  }
  .cid-tPjTs1g1vo .navbar.opened {
    height: auto;
  }
  .cid-tPjTs1g1vo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0xESXUILC {
  background-image: url("../../../assets/images/sugar-daddy-porto.webp");
}
.cid-u0xESXUILC .mbr-overlay {
  background: #000000;
}
.cid-u0xESXUILC .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u0xEU12Bb1 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f4f4f4;
}
.cid-u0xEU12Bb1 .row {
  justify-content: center;
}
.cid-u0xEU12Bb1 .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-u0xEU12Bb1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u0xEU12Bb1 .item:focus,
.cid-u0xEU12Bb1 span:focus {
  outline: none;
}
.cid-u0xEU12Bb1 .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-u0xEU12Bb1 .col-items {
    padding: 0 !important;
  }
}
.cid-u0xEU12Bb1 .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u0xEU12Bb1 .item {
    padding: 0 20px;
  }
}
.cid-u0xEU12Bb1 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-u0xEU12Bb1 .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u0xEU12Bb1 .item-wrapper {
    padding: 60px;
  }
}
.cid-u0xEU12Bb1 .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u0xEU12Bb1 .item-content {
    text-align: center;
  }
}
.cid-u0xEU12Bb1 .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-u0xEU12Bb1 .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-u0xEU12Bb1 .item-title {
  color: #000000;
}
.cid-u0xEU12Bb1 .item-subtitle {
  color: #000000;
}
.cid-u0xEU12Bb1 .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-u0xEU12Bb1 .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-u0xEU12Bb1 .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-u0xEU12Bb1 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-u0xEU12Bb1 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u0xEUnzndd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-u0xEUnzndd .mbr-text {
  color: #555555;
}
.cid-u0xEUnzndd .mbr-section-subtitle {
  text-align: center;
}
.cid-u0xEW3fpjM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f4f4;
}
.cid-u0xEW3fpjM .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u0xEW3fpjM .items-col {
  background: #73460b;
  padding: 5rem;
  height: 100%;
}
.cid-u0xEW3fpjM .container {
  max-width: 1800px;
}
@media (max-width: 1400px) {
  .cid-u0xEW3fpjM .items-col {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u0xEW3fpjM .items-col {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-u0xEW3fpjM .col-md-12 {
    padding-bottom: 2rem;
  }
}
.cid-u0xEW3fpjM img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}
.cid-u0xEW3fpjM .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.cid-u0xEW3fpjM .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  margin-bottom: 0.5rem;
}
.cid-u0xEW3fpjM .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: '\e908';
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.8rem;
}
.cid-u0xEW3fpjM .link,
.cid-u0xEW3fpjM .link-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-u0xEVnSgHO {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u0xEVnSgHO .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-u0xEVnSgHO .row {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-u0xEVnSgHO .col-text {
    padding: 0 30px;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u0xEVnSgHO .col-text {
    margin-bottom: 3rem;
  }
}
.cid-u0xEVnSgHO .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-u0xEVnSgHO .text-wrapper {
    text-align: center !important;
  }
}
.cid-u0xEVnSgHO .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-u0xEVnSgHO .label-text {
    text-align: center !important;
  }
}
.cid-u0xEVnSgHO .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-u0xEVnSgHO .mbr-section-title {
    text-align: center !important;
  }
}
.cid-u0xEVnSgHO .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-u0xEVnSgHO .mbr-text {
    text-align: center !important;
  }
}
.cid-u0xEVnSgHO .btn-container {
  width: 100%;
  margin-top: 8px;
}
.cid-u0xEVnSgHO .mbr-section-btn .btn {
  padding: 0;
}
.cid-u0xEVnSgHO .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-u0xEVnSgHO .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-u0xEVnSgHO .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-u0xEVnSgHO .card {
  padding: 0 12px 30px 12px;
}
@media (min-width: 992px) {
  .cid-u0xEVnSgHO .card {
    padding: 0 30px 30px 30px;
  }
}
.cid-u0xEVnSgHO .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-u0xEVnSgHO .card-title {
  color: #222222;
  margin-bottom: 1rem;
}
.cid-u0xEVnSgHO .card-inside-border {
  width: 100%;
  height: 1px;
  margin-bottom: 1rem;
  background-color: #555555;
}
.cid-u0xEVnSgHO .card-text {
  color: #555555;
  margin-bottom: 24px;
}
.cid-u0xEVnSgHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0xEVnSgHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0xX8q5VW3 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
}
.cid-u0xX8q5VW3 .mbr-text {
  color: #555555;
}
.cid-u0xX8q5VW3 .mbr-section-subtitle {
  text-align: center;
}
.cid-u5VYYCoIJV {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #f4f4f4;
}
.cid-u5VYYCoIJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5VYYCoIJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5VYYCoIJV .mbr-text,
.cid-u5VYYCoIJV .mbr-section-btn {
  color: #232323;
}
.cid-u5VYYCoIJV .card-title,
.cid-u5VYYCoIJV .card-box {
  color: #ffffff;
}
.cid-u5VYYCoIJV .mbr-text,
.cid-u5VYYCoIJV .link-wrap {
  color: #ffffff;
}
.cid-tQprpRIE1F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tQprpRIE1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQprpRIE1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQprpRIE1F .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tQprpRIE1F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQprpRIE1F .row {
    text-align: center;
  }
  .cid-tQprpRIE1F .social-row {
    justify-content: center;
  }
}
.cid-tQprpRIE1F .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 0rem;
  }
}
.cid-tQprpRIE1F .mbr-text {
  color: #999999;
}
.cid-tQprpRIE1F .mbr-iconfont {
  color: black;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  position: relative !important;
}
.cid-tPjTs1g1vo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPjTs1g1vo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPjTs1g1vo .dropdown-item:hover,
.cid-tPjTs1g1vo .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-tPjTs1g1vo .dropdown-item:hover span {
  color: white;
}
.cid-tPjTs1g1vo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPjTs1g1vo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPjTs1g1vo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPjTs1g1vo .nav-link {
  position: relative;
}
.cid-tPjTs1g1vo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown-menu,
.cid-tPjTs1g1vo .navbar.opened {
  background: #000000 !important;
}
.cid-tPjTs1g1vo .nav-item:focus,
.cid-tPjTs1g1vo .nav-link:focus {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPjTs1g1vo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPjTs1g1vo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.opened {
  transition: all 0.3s;
}
.cid-tPjTs1g1vo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPjTs1g1vo .navbar .navbar-logo img {
  width: auto;
}
.cid-tPjTs1g1vo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar.collapsed {
  justify-content: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPjTs1g1vo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPjTs1g1vo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPjTs1g1vo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPjTs1g1vo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPjTs1g1vo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPjTs1g1vo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPjTs1g1vo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPjTs1g1vo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPjTs1g1vo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown-item.active,
.cid-tPjTs1g1vo .dropdown-item:active {
  background-color: transparent;
}
.cid-tPjTs1g1vo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPjTs1g1vo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPjTs1g1vo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPjTs1g1vo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPjTs1g1vo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tPjTs1g1vo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPjTs1g1vo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPjTs1g1vo .navbar {
    height: 70px;
  }
  .cid-tPjTs1g1vo .navbar.opened {
    height: auto;
  }
  .cid-tPjTs1g1vo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1g8mamemS {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #f9f7f5;
}
.cid-u1g8mamemS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1g8mamemS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1g8mamemS .mbr-section-subtitle {
  text-align: left;
}
.cid-u1g97eBhEh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f9f7f5;
}
.cid-u1g97eBhEh .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-u1g97eBhEh .card-img span {
  font-size: 2rem;
  color: #b06e6e;
}
.cid-u1g97eBhEh .card {
  margin-bottom: 1rem;
}
.cid-u1g97eBhEh .card-title,
.cid-u1g97eBhEh .card-img {
  text-align: center;
}
.cid-u1g97eBhEh .row {
  justify-content: center;
}
.cid-u1g97eBhEh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1g97eBhEh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1g8lrfat6 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f9f7f5;
}
.cid-u1g8lrfat6 .mbr-section-subtitle {
  text-align: center;
}
.cid-tQprpRIE1F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tQprpRIE1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQprpRIE1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQprpRIE1F .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tQprpRIE1F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQprpRIE1F .row {
    text-align: center;
  }
  .cid-tQprpRIE1F .social-row {
    justify-content: center;
  }
}
.cid-tQprpRIE1F .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 0rem;
  }
}
.cid-tQprpRIE1F .mbr-text {
  color: #999999;
}
.cid-tQprpRIE1F .mbr-iconfont {
  color: black;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  position: relative !important;
}
.cid-tPjTs1g1vo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPjTs1g1vo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPjTs1g1vo .dropdown-item:hover,
.cid-tPjTs1g1vo .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-tPjTs1g1vo .dropdown-item:hover span {
  color: white;
}
.cid-tPjTs1g1vo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPjTs1g1vo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPjTs1g1vo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPjTs1g1vo .nav-link {
  position: relative;
}
.cid-tPjTs1g1vo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown-menu,
.cid-tPjTs1g1vo .navbar.opened {
  background: #000000 !important;
}
.cid-tPjTs1g1vo .nav-item:focus,
.cid-tPjTs1g1vo .nav-link:focus {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPjTs1g1vo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPjTs1g1vo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.opened {
  transition: all 0.3s;
}
.cid-tPjTs1g1vo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPjTs1g1vo .navbar .navbar-logo img {
  width: auto;
}
.cid-tPjTs1g1vo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar.collapsed {
  justify-content: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPjTs1g1vo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPjTs1g1vo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPjTs1g1vo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPjTs1g1vo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPjTs1g1vo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPjTs1g1vo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPjTs1g1vo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPjTs1g1vo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPjTs1g1vo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown-item.active,
.cid-tPjTs1g1vo .dropdown-item:active {
  background-color: transparent;
}
.cid-tPjTs1g1vo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPjTs1g1vo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPjTs1g1vo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPjTs1g1vo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPjTs1g1vo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tPjTs1g1vo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPjTs1g1vo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPjTs1g1vo .navbar {
    height: 70px;
  }
  .cid-tPjTs1g1vo .navbar.opened {
    height: auto;
  }
  .cid-tPjTs1g1vo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u26ukA6UuK {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f9f7f5;
}
.cid-u26ukA6UuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u26ukA6UuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u26ukA6UuK .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u26ukA6UuK .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u26ukA6UuK .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #f0c48a;
}
.cid-u26ukA6UuK .panel-body,
.cid-u26ukA6UuK .card-header {
  padding: 1rem 0;
}
.cid-u26ukA6UuK .panel-title-edit {
  color: #000000;
}
.cid-uK8OCbB977 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f9f7f5;
}
.cid-uK8OCbB977 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK8OCbB977 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK8OCbB977 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uK8OCbB977 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uK8OCbB977 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #f0c48a;
}
.cid-uK8OCbB977 .panel-body,
.cid-uK8OCbB977 .card-header {
  padding: 1rem 0;
}
.cid-uK8OCbB977 .panel-title-edit {
  color: #000000;
}
.cid-tQprpRIE1F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tQprpRIE1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQprpRIE1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQprpRIE1F .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tQprpRIE1F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQprpRIE1F .row {
    text-align: center;
  }
  .cid-tQprpRIE1F .social-row {
    justify-content: center;
  }
}
.cid-tQprpRIE1F .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 0rem;
  }
}
.cid-tQprpRIE1F .mbr-text {
  color: #999999;
}
.cid-tQprpRIE1F .mbr-iconfont {
  color: black;
}
.cid-u5RxwPrx3t .navbar-dropdown {
  position: relative !important;
}
.cid-u5RxwPrx3t .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5RxwPrx3t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5RxwPrx3t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5RxwPrx3t .dropdown-item:hover,
.cid-u5RxwPrx3t .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-u5RxwPrx3t .dropdown-item:hover span {
  color: white;
}
.cid-u5RxwPrx3t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5RxwPrx3t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5RxwPrx3t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5RxwPrx3t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5RxwPrx3t .nav-link {
  position: relative;
}
.cid-u5RxwPrx3t .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u5RxwPrx3t .container {
    flex-wrap: wrap;
  }
}
.cid-u5RxwPrx3t .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u5RxwPrx3t .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u5RxwPrx3t .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5RxwPrx3t .dropdown-menu,
.cid-u5RxwPrx3t .navbar.opened {
  background: #000000 !important;
}
.cid-u5RxwPrx3t .nav-item:focus,
.cid-u5RxwPrx3t .nav-link:focus {
  outline: none;
}
.cid-u5RxwPrx3t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5RxwPrx3t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5RxwPrx3t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5RxwPrx3t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5RxwPrx3t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5RxwPrx3t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5RxwPrx3t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u5RxwPrx3t .navbar.opened {
  transition: all 0.3s;
}
.cid-u5RxwPrx3t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5RxwPrx3t .navbar .navbar-logo img {
  width: auto;
}
.cid-u5RxwPrx3t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5RxwPrx3t .navbar.collapsed {
  justify-content: center;
}
.cid-u5RxwPrx3t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5RxwPrx3t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u5RxwPrx3t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5RxwPrx3t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5RxwPrx3t .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5RxwPrx3t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5RxwPrx3t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5RxwPrx3t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5RxwPrx3t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5RxwPrx3t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5RxwPrx3t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5RxwPrx3t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5RxwPrx3t .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5RxwPrx3t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5RxwPrx3t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5RxwPrx3t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5RxwPrx3t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5RxwPrx3t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5RxwPrx3t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u5RxwPrx3t .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u5RxwPrx3t .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5RxwPrx3t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5RxwPrx3t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5RxwPrx3t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5RxwPrx3t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5RxwPrx3t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5RxwPrx3t .dropdown-item.active,
.cid-u5RxwPrx3t .dropdown-item:active {
  background-color: transparent;
}
.cid-u5RxwPrx3t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5RxwPrx3t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5RxwPrx3t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5RxwPrx3t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u5RxwPrx3t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5RxwPrx3t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5RxwPrx3t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5RxwPrx3t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5RxwPrx3t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5RxwPrx3t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u5RxwPrx3t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5RxwPrx3t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5RxwPrx3t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5RxwPrx3t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5RxwPrx3t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5RxwPrx3t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5RxwPrx3t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5RxwPrx3t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5RxwPrx3t .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u5RxwPrx3t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5RxwPrx3t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5RxwPrx3t .navbar {
    height: 70px;
  }
  .cid-u5RxwPrx3t .navbar.opened {
    height: auto;
  }
  .cid-u5RxwPrx3t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5RxwR47EU {
  background-image: url("../../../assets/images/sugar-daddy-amadora.webp");
}
.cid-u5RxwR47EU .mbr-overlay {
  background: #000000;
}
.cid-u5RxwR47EU .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u5RxwSzHQe {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f4f4f4;
}
.cid-u5RxwSzHQe .row {
  justify-content: center;
}
.cid-u5RxwSzHQe .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-u5RxwSzHQe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u5RxwSzHQe .item:focus,
.cid-u5RxwSzHQe span:focus {
  outline: none;
}
.cid-u5RxwSzHQe .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-u5RxwSzHQe .col-items {
    padding: 0 !important;
  }
}
.cid-u5RxwSzHQe .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u5RxwSzHQe .item {
    padding: 0 20px;
  }
}
.cid-u5RxwSzHQe .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-u5RxwSzHQe .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u5RxwSzHQe .item-wrapper {
    padding: 60px;
  }
}
.cid-u5RxwSzHQe .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u5RxwSzHQe .item-content {
    text-align: center;
  }
}
.cid-u5RxwSzHQe .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-u5RxwSzHQe .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-u5RxwSzHQe .item-title {
  color: #000000;
}
.cid-u5RxwSzHQe .item-subtitle {
  color: #000000;
}
.cid-u5RxwSzHQe .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-u5RxwSzHQe .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-u5RxwSzHQe .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-u5RxwSzHQe .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-u5RxwSzHQe .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u5RxwU9bF0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-u5RxwU9bF0 .mbr-text {
  color: #555555;
}
.cid-u5RxwU9bF0 .mbr-section-subtitle {
  text-align: center;
}
.cid-u5RxwVquZm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f4f4;
}
.cid-u5RxwVquZm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u5RxwVquZm .items-col {
  background: #73460b;
  padding: 5rem;
  height: 100%;
}
.cid-u5RxwVquZm .container {
  max-width: 1800px;
}
@media (max-width: 1400px) {
  .cid-u5RxwVquZm .items-col {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u5RxwVquZm .items-col {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-u5RxwVquZm .col-md-12 {
    padding-bottom: 2rem;
  }
}
.cid-u5RxwVquZm img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}
.cid-u5RxwVquZm .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.cid-u5RxwVquZm .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  margin-bottom: 0.5rem;
}
.cid-u5RxwVquZm .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: '\e908';
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.8rem;
}
.cid-u5RxwVquZm .link,
.cid-u5RxwVquZm .link-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-u5RxwWREWQ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u5RxwWREWQ .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-u5RxwWREWQ .row {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-u5RxwWREWQ .col-text {
    padding: 0 30px;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u5RxwWREWQ .col-text {
    margin-bottom: 3rem;
  }
}
.cid-u5RxwWREWQ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-u5RxwWREWQ .text-wrapper {
    text-align: center !important;
  }
}
.cid-u5RxwWREWQ .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-u5RxwWREWQ .label-text {
    text-align: center !important;
  }
}
.cid-u5RxwWREWQ .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-u5RxwWREWQ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-u5RxwWREWQ .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-u5RxwWREWQ .mbr-text {
    text-align: center !important;
  }
}
.cid-u5RxwWREWQ .btn-container {
  width: 100%;
  margin-top: 8px;
}
.cid-u5RxwWREWQ .mbr-section-btn .btn {
  padding: 0;
}
.cid-u5RxwWREWQ .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-u5RxwWREWQ .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-u5RxwWREWQ .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-u5RxwWREWQ .card {
  padding: 0 12px 30px 12px;
}
@media (min-width: 992px) {
  .cid-u5RxwWREWQ .card {
    padding: 0 30px 30px 30px;
  }
}
.cid-u5RxwWREWQ .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-u5RxwWREWQ .card-title {
  color: #222222;
  margin-bottom: 1rem;
}
.cid-u5RxwWREWQ .card-inside-border {
  width: 100%;
  height: 1px;
  margin-bottom: 1rem;
  background-color: #555555;
}
.cid-u5RxwWREWQ .card-text {
  color: #555555;
  margin-bottom: 24px;
}
.cid-u5RxwWREWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5RxwWREWQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5RxwYtAfr {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
}
.cid-u5RxwYtAfr .mbr-text {
  color: #555555;
}
.cid-u5RxwYtAfr .mbr-section-subtitle {
  text-align: center;
}
.cid-u5VYctplDy {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #f4f4f4;
}
.cid-u5VYctplDy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5VYctplDy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5VYctplDy .mbr-text,
.cid-u5VYctplDy .mbr-section-btn {
  color: #232323;
}
.cid-u5VYctplDy .card-title,
.cid-u5VYctplDy .card-box {
  color: #ffffff;
}
.cid-u5VYctplDy .mbr-text,
.cid-u5VYctplDy .link-wrap {
  color: #ffffff;
}
.cid-u5RxwZPf4l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u5RxwZPf4l .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5RxwZPf4l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5RxwZPf4l .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u5RxwZPf4l .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u5RxwZPf4l .row {
    text-align: center;
  }
  .cid-u5RxwZPf4l .social-row {
    justify-content: center;
  }
}
.cid-u5RxwZPf4l .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u5RxwZPf4l .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u5RxwZPf4l .list {
    margin-bottom: 0rem;
  }
}
.cid-u5RxwZPf4l .mbr-text {
  color: #999999;
}
.cid-u5RxwZPf4l .mbr-iconfont {
  color: black;
}
.cid-u6zusvPCQj .navbar-dropdown {
  position: relative !important;
}
.cid-u6zusvPCQj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6zusvPCQj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6zusvPCQj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6zusvPCQj .dropdown-item:hover,
.cid-u6zusvPCQj .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-u6zusvPCQj .dropdown-item:hover span {
  color: white;
}
.cid-u6zusvPCQj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6zusvPCQj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6zusvPCQj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6zusvPCQj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6zusvPCQj .nav-link {
  position: relative;
}
.cid-u6zusvPCQj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6zusvPCQj .container {
    flex-wrap: wrap;
  }
}
.cid-u6zusvPCQj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6zusvPCQj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u6zusvPCQj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6zusvPCQj .dropdown-menu,
.cid-u6zusvPCQj .navbar.opened {
  background: #000000 !important;
}
.cid-u6zusvPCQj .nav-item:focus,
.cid-u6zusvPCQj .nav-link:focus {
  outline: none;
}
.cid-u6zusvPCQj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6zusvPCQj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6zusvPCQj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6zusvPCQj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6zusvPCQj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6zusvPCQj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6zusvPCQj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u6zusvPCQj .navbar.opened {
  transition: all 0.3s;
}
.cid-u6zusvPCQj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6zusvPCQj .navbar .navbar-logo img {
  width: auto;
}
.cid-u6zusvPCQj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6zusvPCQj .navbar.collapsed {
  justify-content: center;
}
.cid-u6zusvPCQj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6zusvPCQj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u6zusvPCQj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6zusvPCQj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6zusvPCQj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u6zusvPCQj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6zusvPCQj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6zusvPCQj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6zusvPCQj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6zusvPCQj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6zusvPCQj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6zusvPCQj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6zusvPCQj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u6zusvPCQj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6zusvPCQj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6zusvPCQj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6zusvPCQj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6zusvPCQj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6zusvPCQj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6zusvPCQj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6zusvPCQj .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6zusvPCQj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6zusvPCQj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6zusvPCQj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6zusvPCQj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6zusvPCQj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6zusvPCQj .dropdown-item.active,
.cid-u6zusvPCQj .dropdown-item:active {
  background-color: transparent;
}
.cid-u6zusvPCQj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6zusvPCQj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6zusvPCQj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6zusvPCQj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u6zusvPCQj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6zusvPCQj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6zusvPCQj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6zusvPCQj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6zusvPCQj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6zusvPCQj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-u6zusvPCQj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6zusvPCQj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6zusvPCQj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6zusvPCQj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6zusvPCQj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6zusvPCQj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6zusvPCQj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6zusvPCQj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6zusvPCQj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u6zusvPCQj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6zusvPCQj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6zusvPCQj .navbar {
    height: 70px;
  }
  .cid-u6zusvPCQj .navbar.opened {
    height: auto;
  }
  .cid-u6zusvPCQj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6zusxgjIH {
  background-image: url("../../../assets/images/sugar-daddy-braga.webp");
}
.cid-u6zusxgjIH .mbr-overlay {
  background: #000000;
}
.cid-u6zusxgjIH .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-u6zusyr1vW {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f4f4f4;
}
.cid-u6zusyr1vW .row {
  justify-content: center;
}
.cid-u6zusyr1vW .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-u6zusyr1vW img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u6zusyr1vW .item:focus,
.cid-u6zusyr1vW span:focus {
  outline: none;
}
.cid-u6zusyr1vW .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-u6zusyr1vW .col-items {
    padding: 0 !important;
  }
}
.cid-u6zusyr1vW .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u6zusyr1vW .item {
    padding: 0 20px;
  }
}
.cid-u6zusyr1vW .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-u6zusyr1vW .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-u6zusyr1vW .item-wrapper {
    padding: 60px;
  }
}
.cid-u6zusyr1vW .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u6zusyr1vW .item-content {
    text-align: center;
  }
}
.cid-u6zusyr1vW .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-u6zusyr1vW .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-u6zusyr1vW .item-title {
  color: #000000;
}
.cid-u6zusyr1vW .item-subtitle {
  color: #000000;
}
.cid-u6zusyr1vW .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-u6zusyr1vW .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-u6zusyr1vW .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-u6zusyr1vW .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-u6zusyr1vW .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u6zuszTfZ6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-u6zuszTfZ6 .mbr-text {
  color: #555555;
}
.cid-u6zuszTfZ6 .mbr-section-subtitle {
  text-align: center;
}
.cid-u6zusB9ZJj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f4f4;
}
.cid-u6zusB9ZJj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u6zusB9ZJj .items-col {
  background: #73460b;
  padding: 5rem;
  height: 100%;
}
.cid-u6zusB9ZJj .container {
  max-width: 1800px;
}
@media (max-width: 1400px) {
  .cid-u6zusB9ZJj .items-col {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6zusB9ZJj .items-col {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-u6zusB9ZJj .col-md-12 {
    padding-bottom: 2rem;
  }
}
.cid-u6zusB9ZJj img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}
.cid-u6zusB9ZJj .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.cid-u6zusB9ZJj .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  margin-bottom: 0.5rem;
}
.cid-u6zusB9ZJj .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: '\e908';
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.8rem;
}
.cid-u6zusB9ZJj .link,
.cid-u6zusB9ZJj .link-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-u6zusCXUet {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u6zusCXUet .row {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-u6zusCXUet .row {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-u6zusCXUet .col-text {
    padding: 0 30px;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u6zusCXUet .col-text {
    margin-bottom: 3rem;
  }
}
.cid-u6zusCXUet .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-u6zusCXUet .text-wrapper {
    text-align: center !important;
  }
}
.cid-u6zusCXUet .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-u6zusCXUet .label-text {
    text-align: center !important;
  }
}
.cid-u6zusCXUet .mbr-section-title {
  width: 100%;
  color: #222222;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-u6zusCXUet .mbr-section-title {
    text-align: center !important;
  }
}
.cid-u6zusCXUet .mbr-text {
  letter-spacing: inherit;
  color: #555555;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-u6zusCXUet .mbr-text {
    text-align: center !important;
  }
}
.cid-u6zusCXUet .btn-container {
  width: 100%;
  margin-top: 8px;
}
.cid-u6zusCXUet .mbr-section-btn .btn {
  padding: 0;
}
.cid-u6zusCXUet .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-u6zusCXUet .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-u6zusCXUet .col-cards {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-u6zusCXUet .card {
  padding: 0 12px 30px 12px;
}
@media (min-width: 992px) {
  .cid-u6zusCXUet .card {
    padding: 0 30px 30px 30px;
  }
}
.cid-u6zusCXUet .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-u6zusCXUet .card-title {
  color: #222222;
  margin-bottom: 1rem;
}
.cid-u6zusCXUet .card-inside-border {
  width: 100%;
  height: 1px;
  margin-bottom: 1rem;
  background-color: #555555;
}
.cid-u6zusCXUet .card-text {
  color: #555555;
  margin-bottom: 24px;
}
.cid-u6zusCXUet .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6zusCXUet .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6zusF1K0f {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
}
.cid-u6zusF1K0f .mbr-text {
  color: #555555;
}
.cid-u6zusF1K0f .mbr-section-subtitle {
  text-align: center;
}
.cid-u6zusGm622 {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #f4f4f4;
}
.cid-u6zusGm622 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6zusGm622 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6zusGm622 .mbr-text,
.cid-u6zusGm622 .mbr-section-btn {
  color: #232323;
}
.cid-u6zusGm622 .card-title,
.cid-u6zusGm622 .card-box {
  color: #ffffff;
}
.cid-u6zusGm622 .mbr-text,
.cid-u6zusGm622 .link-wrap {
  color: #ffffff;
}
.cid-u6zusHJx3b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u6zusHJx3b .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6zusHJx3b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6zusHJx3b .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u6zusHJx3b .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u6zusHJx3b .row {
    text-align: center;
  }
  .cid-u6zusHJx3b .social-row {
    justify-content: center;
  }
}
.cid-u6zusHJx3b .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u6zusHJx3b .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6zusHJx3b .list {
    margin-bottom: 0rem;
  }
}
.cid-u6zusHJx3b .mbr-text {
  color: #999999;
}
.cid-u6zusHJx3b .mbr-iconfont {
  color: black;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  position: relative !important;
}
.cid-tPjTs1g1vo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPjTs1g1vo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPjTs1g1vo .dropdown-item:hover,
.cid-tPjTs1g1vo .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-tPjTs1g1vo .dropdown-item:hover span {
  color: white;
}
.cid-tPjTs1g1vo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPjTs1g1vo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPjTs1g1vo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPjTs1g1vo .nav-link {
  position: relative;
}
.cid-tPjTs1g1vo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tPjTs1g1vo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown-menu,
.cid-tPjTs1g1vo .navbar.opened {
  background: #000000 !important;
}
.cid-tPjTs1g1vo .nav-item:focus,
.cid-tPjTs1g1vo .nav-link:focus {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPjTs1g1vo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPjTs1g1vo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPjTs1g1vo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPjTs1g1vo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.opened {
  transition: all 0.3s;
}
.cid-tPjTs1g1vo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPjTs1g1vo .navbar .navbar-logo img {
  width: auto;
}
.cid-tPjTs1g1vo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar.collapsed {
  justify-content: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPjTs1g1vo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPjTs1g1vo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPjTs1g1vo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPjTs1g1vo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPjTs1g1vo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPjTs1g1vo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPjTs1g1vo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPjTs1g1vo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPjTs1g1vo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPjTs1g1vo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPjTs1g1vo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPjTs1g1vo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPjTs1g1vo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPjTs1g1vo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPjTs1g1vo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPjTs1g1vo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPjTs1g1vo .dropdown-item.active,
.cid-tPjTs1g1vo .dropdown-item:active {
  background-color: transparent;
}
.cid-tPjTs1g1vo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPjTs1g1vo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tPjTs1g1vo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPjTs1g1vo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPjTs1g1vo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPjTs1g1vo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPjTs1g1vo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPjTs1g1vo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPjTs1g1vo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPjTs1g1vo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tPjTs1g1vo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPjTs1g1vo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPjTs1g1vo .navbar {
    height: 70px;
  }
  .cid-tPjTs1g1vo .navbar.opened {
    height: auto;
  }
  .cid-tPjTs1g1vo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8A5esVbWj {
  background-image: url("../../../assets/images/sugar-daddy.webp");
}
.cid-u8A5esVbWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8A5esVbWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8A1B1G3l7 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #f4f4f4;
}
@media (min-width: 1500px) {
  .cid-u8A1B1G3l7 .container {
    max-width: 1400px;
  }
}
.cid-u8A1B1G3l7 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-u8A1B1G3l7 .mbr-section-subtitle.display-4 {
  line-height: 1.375;
}
.cid-u8A1B1G3l7 .main-title {
  margin-bottom: 56px;
}
.cid-u8A1B1G3l7 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #f0c48a;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-u8A1B1G3l7 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-u8A1B1G3l7 .img-wrap {
  display: block;
}
.cid-u8A1B1G3l7 .img-wrap img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.cid-u8A1B1G3l7 .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: flex-start;
}
.cid-u8A1B1G3l7 .card-wrapper .mbr-iconfont {
  font-size: 60px;
  color: #1d1d1e;
  margin-right: 25px;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box {
  height: 100%;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .card-title {
  color: #404040;
  margin-bottom: 12px;
  font-weight: 600;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.3;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .mbr-text {
  color: #606060;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .link-wrap .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 0.6rem;
  font-weight: 600;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .link-wrap .link a:before {
  position: absolute;
  transition: all 0.3s;
  right: 0px;
  top: 55%;
  opacity: 0;
  transform: translateY(-50%);
  content: "\e909";
  font-family: "Moririse2" !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-u8A1B1G3l7 .card-wrapper .card-box .link-wrap .link a:hover:before {
  opacity: 1;
  transform: translateX(8px) translateY(-50%);
}
.cid-u8A1B1G3l7 .mbr-section-btn {
  text-align: center;
}
.cid-u8A1B1G3l7 .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-u8A1B1G3l7 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-u8A1B1G3l7 .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
@media (max-width: 992px) {
  .cid-u8A1B1G3l7 img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .cid-u8A1B1G3l7 .card-box .card-title,
  .cid-u8A1B1G3l7 .card-box .mbr-text {
    text-align: left;
  }
}
.cid-u8Ai6VooqN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f4f4f4;
}
.cid-u8Ai6VooqN .line {
  background-color: #d58f76;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8A1MswZmC {
  padding-top: 75px;
  padding-bottom: 105px;
  background-color: #f4f4f4;
}
.cid-u8A1MswZmC .row {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u8A1MswZmC .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-u8A1MswZmC .mbr-section-subtitle.display-4 {
  line-height: 1.375;
}
.cid-u8A1MswZmC .mbr-section-title {
  color: #404040;
  text-align: left;
}
.cid-u8A1MswZmC .mbr-section-title.display-2 {
  font-size: 30px;
  line-height: 1.2;
}
.cid-u8A1MswZmC .mbr-text {
  color: #606060;
}
.cid-u8A1MswZmC .mbr-text.display-4 {
  font-size: 15px;
  line-height: 1.8;
}
.cid-u8A1MswZmC .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #f0c48a;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-u8A1MswZmC .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-u8A1MswZmC .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center;
}
.cid-u8A1MswZmC .card-wrapper .card-count {
  height: 100%;
  margin-right: 25px;
}
.cid-u8A1MswZmC .card-wrapper .card-count .icon-count {
  background-color: rgba(245, 196, 99, 0.25);
  font-weight: 600;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #f5c463;
}
.cid-u8A1MswZmC .card-wrapper .card-box {
  height: 100%;
}
.cid-u8A1MswZmC .card-wrapper .card-box .card-title {
  color: #404040;
  margin-bottom: 12px;
  font-weight: 600;
}
.cid-u8A1MswZmC .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.3;
}
.cid-u8A1MswZmC .card-wrapper .card-box .mbr-text {
  color: #606060;
}
.cid-u8A1MswZmC .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-u8A1MswZmC .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-u8A1MswZmC .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
.cid-u8A1MswZmC .card-wrapper .card-box .link-wrap .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 0.6rem;
  font-weight: 600;
}
.cid-u8A1MswZmC .card-wrapper .card-box .link-wrap .link a:before {
  position: absolute;
  transition: all 0.3s;
  right: 0px;
  top: 55%;
  opacity: 0;
  transform: translateY(-50%);
  content: "\e909";
  font-family: "Moririse2" !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-u8A1MswZmC .card-wrapper .card-box .link-wrap .link a:hover:before {
  opacity: 1;
  transform: translateX(8px) translateY(-50%);
}
.cid-u8A1MswZmC .mbr-section-btn {
  text-align: center;
}
.cid-u8A1MswZmC .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-u8A1MswZmC .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-u8A1MswZmC .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
@media (max-width: 767px) {
  .cid-u8A1MswZmC .card-title {
    text-align: left;
  }
  .cid-u8A1MswZmC .mbr-text {
    text-align: left;
  }
}
.cid-u8A50v3oOZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ba9673;
}
.cid-u8A50v3oOZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8A50v3oOZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u8A50v3oOZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8A50v3oOZ .row {
  flex-direction: row-reverse;
}
.cid-u8A50v3oOZ img {
  width: 100%;
}
.cid-tQprpRIE1F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tQprpRIE1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQprpRIE1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQprpRIE1F .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tQprpRIE1F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tQprpRIE1F .row {
    text-align: center;
  }
  .cid-tQprpRIE1F .social-row {
    justify-content: center;
  }
}
.cid-tQprpRIE1F .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQprpRIE1F .list {
    margin-bottom: 0rem;
  }
}
.cid-tQprpRIE1F .mbr-text {
  color: #999999;
}
.cid-tQprpRIE1F .mbr-iconfont {
  color: black;
}
.cid-uwqawolIxO .navbar-dropdown {
  position: relative !important;
}
.cid-uwqawolIxO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwqawolIxO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwqawolIxO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwqawolIxO .dropdown-item:hover,
.cid-uwqawolIxO .dropdown-item:focus {
  background: #f0c48a !important;
  color: white !important;
}
.cid-uwqawolIxO .dropdown-item:hover span {
  color: white;
}
.cid-uwqawolIxO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwqawolIxO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwqawolIxO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwqawolIxO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwqawolIxO .nav-link {
  position: relative;
}
.cid-uwqawolIxO .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwqawolIxO .container {
    flex-wrap: wrap;
  }
}
.cid-uwqawolIxO .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwqawolIxO .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwqawolIxO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwqawolIxO .dropdown-menu,
.cid-uwqawolIxO .navbar.opened {
  background: #000000 !important;
}
.cid-uwqawolIxO .nav-item:focus,
.cid-uwqawolIxO .nav-link:focus {
  outline: none;
}
.cid-uwqawolIxO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwqawolIxO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwqawolIxO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwqawolIxO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwqawolIxO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwqawolIxO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwqawolIxO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uwqawolIxO .navbar.opened {
  transition: all 0.3s;
}
.cid-uwqawolIxO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwqawolIxO .navbar .navbar-logo img {
  width: auto;
}
.cid-uwqawolIxO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwqawolIxO .navbar.collapsed {
  justify-content: center;
}
.cid-uwqawolIxO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwqawolIxO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwqawolIxO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwqawolIxO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwqawolIxO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uwqawolIxO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwqawolIxO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwqawolIxO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwqawolIxO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwqawolIxO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwqawolIxO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwqawolIxO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwqawolIxO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uwqawolIxO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwqawolIxO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwqawolIxO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwqawolIxO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwqawolIxO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwqawolIxO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwqawolIxO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwqawolIxO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwqawolIxO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwqawolIxO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwqawolIxO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uwqawolIxO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwqawolIxO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwqawolIxO .dropdown-item.active,
.cid-uwqawolIxO .dropdown-item:active {
  background-color: transparent;
}
.cid-uwqawolIxO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwqawolIxO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwqawolIxO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwqawolIxO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwqawolIxO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwqawolIxO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwqawolIxO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwqawolIxO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwqawolIxO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwqawolIxO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #999999;
}
.cid-uwqawolIxO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwqawolIxO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwqawolIxO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwqawolIxO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwqawolIxO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwqawolIxO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwqawolIxO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwqawolIxO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwqawolIxO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uwqawolIxO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwqawolIxO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwqawolIxO .navbar {
    height: 70px;
  }
  .cid-uwqawolIxO .navbar.opened {
    height: auto;
  }
  .cid-uwqawolIxO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwqawqVL7g {
  background-image: url("../../../assets/images/site-gratuito-para-sugar-baby-em-setubal.webp");
}
.cid-uwqawqVL7g .mbr-overlay {
  background: #000000;
}
.cid-uwqawqVL7g .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-uwqawtkdJD {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #f4f4f4;
}
.cid-uwqawtkdJD .row {
  justify-content: center;
}
.cid-uwqawtkdJD .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-uwqawtkdJD img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uwqawtkdJD .item:focus,
.cid-uwqawtkdJD span:focus {
  outline: none;
}
.cid-uwqawtkdJD .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uwqawtkdJD .col-items {
    padding: 0 !important;
  }
}
.cid-uwqawtkdJD .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-uwqawtkdJD .item {
    padding: 0 20px;
  }
}
.cid-uwqawtkdJD .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uwqawtkdJD .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uwqawtkdJD .item-wrapper {
    padding: 60px;
  }
}
.cid-uwqawtkdJD .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uwqawtkdJD .item-content {
    text-align: center;
  }
}
.cid-uwqawtkdJD .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-uwqawtkdJD .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-uwqawtkdJD .item-title {
  color: #000000;
}
.cid-uwqawtkdJD .item-subtitle {
  color: #000000;
}
.cid-uwqawtkdJD .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uwqawtkdJD .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uwqawtkdJD .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uwqawtkdJD .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uwqawtkdJD .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uwqckRZreX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f4f4f4;
}
.cid-uwqckRZreX .mbr-text {
  color: #555555;
}
.cid-uwqckRZreX .mbr-section-subtitle {
  text-align: left;
}
.cid-uwqawzF5D5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4f4f4;
}
.cid-uwqawzF5D5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uwqawzF5D5 .items-col {
  background: #73460b;
  padding: 5rem;
  height: 100%;
}
.cid-uwqawzF5D5 .container {
  max-width: 1800px;
}
@media (max-width: 1400px) {
  .cid-uwqawzF5D5 .items-col {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uwqawzF5D5 .items-col {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uwqawzF5D5 .col-md-12 {
    padding-bottom: 2rem;
  }
}
.cid-uwqawzF5D5 img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}
.cid-uwqawzF5D5 .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.cid-uwqawzF5D5 .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  margin-bottom: 0.5rem;
}
.cid-uwqawzF5D5 .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: '\e908';
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.8rem;
}
.cid-uwqawzF5D5 .link,
.cid-uwqawzF5D5 .link-wrap {
  color: #ffffff;
  text-align: left;
}
.cid-uwqawETmPo {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
}
.cid-uwqawETmPo .mbr-text {
  color: #555555;
}
.cid-uwqawETmPo .mbr-section-subtitle {
  text-align: left;
}
.cid-uwr5hPDOke {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
}
.cid-uwr5hPDOke .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwr5hPDOke .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uwr5hPDOke .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwr5hPDOke .row {
  flex-direction: row-reverse;
}
.cid-uwr5hPDOke img {
  width: 100%;
}
.cid-uwr3rWqiMU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uwr3rWqiMU .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uwr3rWqiMU .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uwr3rWqiMU .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #efc38b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uwr3rWqiMU .mbr-section-title {
  text-align: left;
}
.cid-uwqjETpAYG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f4f4f4;
}
.cid-uwqjETpAYG img,
.cid-uwqjETpAYG .item-img {
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uwqjETpAYG .item:focus,
.cid-uwqjETpAYG span:focus {
  outline: none;
}
.cid-uwqjETpAYG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwqjETpAYG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwqjETpAYG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwqjETpAYG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uwqjETpAYG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwqjETpAYG .mbr-section-title {
  color: #232323;
}
.cid-uwqjETpAYG .mbr-text,
.cid-uwqjETpAYG .mbr-section-btn {
  text-align: left;
}
.cid-uwqjETpAYG .item-title {
  text-align: center;
}
.cid-uwqjETpAYG .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uwqawHq2L5 {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #f4f4f4;
}
.cid-uwqawHq2L5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwqawHq2L5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwqawHq2L5 .mbr-text,
.cid-uwqawHq2L5 .mbr-section-btn {
  color: #232323;
}
.cid-uwqawHq2L5 .card-title,
.cid-uwqawHq2L5 .card-box {
  color: #ffffff;
}
.cid-uwqawHq2L5 .mbr-text,
.cid-uwqawHq2L5 .link-wrap {
  color: #ffffff;
}
.cid-uwqawK8FaD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uwqawK8FaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwqawK8FaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwqawK8FaD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uwqawK8FaD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwqawK8FaD .row {
    text-align: center;
  }
  .cid-uwqawK8FaD .social-row {
    justify-content: center;
  }
}
.cid-uwqawK8FaD .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uwqawK8FaD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwqawK8FaD .list {
    margin-bottom: 0rem;
  }
}
.cid-uwqawK8FaD .mbr-text {
  color: #999999;
}
.cid-uwqawK8FaD .mbr-iconfont {
  color: black;
}
