body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'HolidayFree';
  font-size: 4.4rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #f28a80 !important;
}
.bg-success {
  background-color: #bf0426 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f28a80 !important;
  border-color: #f28a80 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #eb4a3b !important;
  border-color: #eb4a3b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #eb4a3b !important;
  border-color: #eb4a3b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f28a80 !important;
  border-color: #f28a80 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #eb4a3b !important;
  border-color: #eb4a3b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb4a3b !important;
  border-color: #eb4a3b !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #bf0426 !important;
  border-color: #bf0426 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #740217 !important;
  border-color: #740217 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #740217 !important;
  border-color: #740217 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #e93523;
  color: #e93523;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #f28a80;
  border-color: #f28a80;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f28a80 !important;
  border-color: #f28a80 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #e93523;
  color: #e93523;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #f28a80;
  border-color: #f28a80;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f28a80 !important;
  border-color: #f28a80 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #5b0212;
  color: #5b0212;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #bf0426;
  border-color: #bf0426;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bf0426 !important;
  border-color: #bf0426 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f28a80 !important;
}
.text-secondary {
  color: #f28a80 !important;
}
.text-success {
  color: #bf0426 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e93523 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e93523 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5b0212 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f28a80;
  border-color: #f28a80;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f28a80;
}
.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: #fb4768;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #f28a80;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f28a80;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f28a80;
  border-bottom-color: #f28a80;
}
.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: #f28a80 !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: #f28a80 !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='%23f28a80' %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;
}
.cid-rymwt0lgln .navbar {
  background: #bf0426;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  flex-direction: column;
}
.cid-rymwt0lgln .navbar-dropdown.bg-color.transparent.opened {
  background: #bf0426;
}
.cid-rymwt0lgln a {
  font-style: normal;
}
.cid-rymwt0lgln .menu-wrap {
  display: flex;
  width: 100%;
}
.cid-rymwt0lgln .top-icon {
  font-size: 1rem;
  color: #ffffff;
  padding: 0.4rem;
}
.cid-rymwt0lgln .icon-wrap {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  padding: 0 6rem;
}
.cid-rymwt0lgln .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rymwt0lgln .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rymwt0lgln .nav-item:focus,
.cid-rymwt0lgln .nav-link:focus {
  outline: none;
}
.cid-rymwt0lgln .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rymwt0lgln .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rymwt0lgln .menu-logo {
  margin-right: auto;
}
.cid-rymwt0lgln .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  margin-top: -1.6rem;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rymwt0lgln .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rymwt0lgln .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
  font-weight: 400;
}
.cid-rymwt0lgln .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rymwt0lgln .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rymwt0lgln .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rymwt0lgln .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rymwt0lgln .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rymwt0lgln .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rymwt0lgln .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rymwt0lgln .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rymwt0lgln .dropdown .dropdown-menu {
  background: #bf0426;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rymwt0lgln .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rymwt0lgln .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rymwt0lgln .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rymwt0lgln .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rymwt0lgln .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rymwt0lgln .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rymwt0lgln .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rymwt0lgln .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rymwt0lgln .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rymwt0lgln .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rymwt0lgln .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rymwt0lgln button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rymwt0lgln button.navbar-toggler:focus {
  outline: none;
}
.cid-rymwt0lgln button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #efefef;
}
.cid-rymwt0lgln button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rymwt0lgln button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rymwt0lgln button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rymwt0lgln button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rymwt0lgln nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rymwt0lgln nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rymwt0lgln nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rymwt0lgln nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rymwt0lgln .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rymwt0lgln .collapsed .btn {
  display: -webkit-flex;
}
.cid-rymwt0lgln .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rymwt0lgln .collapsed .navbar-collapse.collapsing,
.cid-rymwt0lgln .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rymwt0lgln .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rymwt0lgln .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rymwt0lgln .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rymwt0lgln .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rymwt0lgln .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rymwt0lgln .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rymwt0lgln .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rymwt0lgln .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rymwt0lgln .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-rymwt0lgln .collapsed button.navbar-toggler {
  display: block;
}
.cid-rymwt0lgln .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rymwt0lgln .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rymwt0lgln .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rymwt0lgln .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rymwt0lgln .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rymwt0lgln .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rymwt0lgln.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rymwt0lgln img {
    height: 3.8rem !important;
  }
  .cid-rymwt0lgln .icon-wrap {
    margin-top: 1rem;
  }
  .cid-rymwt0lgln .menu-wrap {
    flex-direction: column;
  }
  .cid-rymwt0lgln .btn {
    display: -webkit-flex;
  }
  .cid-rymwt0lgln button.navbar-toggler {
    display: block;
  }
  .cid-rymwt0lgln .navbar-brand {
    margin-left: 1rem !important;
    margin-top: -3rem !important;
  }
  .cid-rymwt0lgln .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rymwt0lgln .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rymwt0lgln .navbar-collapse.collapsing,
  .cid-rymwt0lgln .navbar-collapse.show {
    display: block !important;
  }
  .cid-rymwt0lgln .navbar-collapse.collapsing .navbar-nav,
  .cid-rymwt0lgln .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rymwt0lgln .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rymwt0lgln .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rymwt0lgln .navbar-collapse.collapsing .navbar-buttons,
  .cid-rymwt0lgln .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rymwt0lgln .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rymwt0lgln .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rymwt0lgln .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rymwt0lgln .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rymwt0lgln .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rymwt0lgln .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rymwt0lgln .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .cid-rymwt0lgln .icon-wrap {
    margin-top: 4rem;
    padding: 0 4rem;
  }
  .cid-rymwt0lgln .navbar-brand {
    margin-top: -6rem !important;
  }
}
.cid-rymwt0lgln .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rymwt0lgln .nav-link:hover,
.cid-rymwt0lgln .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-rymwtkmLgB {
  padding-top: 225px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/design-sem-nome-85.svg");
}
.cid-rymwtkmLgB h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-rymwtkmLgB h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymwtkmLgB h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-rymwtkmLgB H1 {
  color: #f2a391;
}
.cid-rymwtkmLgB .mbr-text,
.cid-rymwtkmLgB .mbr-section-btn {
  color: #efefef;
}
.cid-urFx9b3CFt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #e8ebe8;
}
.cid-urFx9b3CFt h3 {
  text-align: center;
}
.cid-urFx9b3CFt .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-urFx9b3CFt .mbr-content-text {
  color: #767676;
}
.cid-urFx9b3CFt .panel-item {
  background: #ffffff;
}
.cid-urFx9b3CFt .card {
  word-wrap: break-word;
}
.cid-urFx9b3CFt .mbr-iconfont {
  color: #bf0426 !important;
  font-size: 3.5rem !important;
}
.cid-urFx9b3CFt .mbr-fallback-image.disabled {
  display: none;
}
.cid-urFx9b3CFt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urFx9b3CFt H3 {
  text-align: center;
}
.cid-urFx9b3CFt H4 {
  text-align: center;
}
.cid-uuezG9ulGk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #e8ebe8;
}
.cid-uuezG9ulGk .mbr-section-head {
  width: 100%;
  margin-bottom: 50px;
}
.cid-uuezG9ulGk .mbr-section-title {
  color: #bf0426;
  text-align: center;
}
.cid-uuezG9ulGk .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
@media (min-width: 992px) {
  .cid-uuezG9ulGk .items-container {
    max-width: 1720px;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uuezG9ulGk .items-row {
    margin: 0 -10px !important;
    row-gap: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uuezG9ulGk .items-row {
    margin: 0 !important;
  }
}
.cid-uuezG9ulGk .item {
  padding: 0 10px;
}
@media (max-width: 991px) {
  .cid-uuezG9ulGk .item {
    padding: 0 !important;
  }
}
.cid-uuezG9ulGk .item-wrapper {
  position: relative;
  max-height: 580px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uuezG9ulGk .item-wrapper {
    max-height: 480px;
  }
}
@media (max-width: 575px) {
  .cid-uuezG9ulGk .item-wrapper {
    max-height: 455px;
  }
}
.cid-uuezG9ulGk .item-wrapper:hover .item-img {
  transform: scale(1.3);
}
.cid-uuezG9ulGk .item-img {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 580px;
  transition: transform cubic-bezier(0.2, 1.03, 0.42, 0.79) 1s;
}
@media (max-width: 991px) {
  .cid-uuezG9ulGk .item-img {
    max-height: 480px;
  }
}
@media (max-width: 575px) {
  .cid-uuezG9ulGk .item-img {
    max-height: 455px;
  }
}
.cid-uuezG9ulGk .item-img img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uuezG9ulGk .item-content {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  column-gap: 10px;
  width: 100%;
  height: 45%;
  max-height: 50%;
  padding: 0 25px 20px;
  overflow: hidden;
}
.cid-uuezG9ulGk .item-text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-height: 100%;
}
@media (max-width: 991px) {
  .cid-uuezG9ulGk .item-text-box {
    flex-direction: column;
    row-gap: 14px;
  }
}
.cid-uuezG9ulGk .item-title {
  color: #FFFFFF;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uuezG9ulGk .item-title {
    text-align: center;
  }
}
.cid-uuezG9ulGk .mbr-text {
  color: #FFFFFF;
  text-align: center;
}
.cid-uueEglLZok {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #bf0426;
}
.cid-uueEglLZok .mbr-fallback-image.disabled {
  display: none;
}
.cid-uueEglLZok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uueEglLZok .container {
    padding: 0 20px;
  }
}
.cid-uueEglLZok .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-uueEglLZok .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    border-right: none;
  }
}
.cid-uueEglLZok .embla__slide .card-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uueEglLZok .embla__slide .card-wrap {
    display: block;
  }
}
.cid-uueEglLZok .embla__slide .card-wrap .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uueEglLZok .embla__slide .card-wrap .content-wrap {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uueEglLZok .embla__slide .card-wrap .content-wrap .card-subtitle {
  margin-bottom: 10px;
  letter-spacing: .16em;
}
.cid-uueEglLZok .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 16px;
}
.cid-uueEglLZok .embla__slide .card-wrap .content-wrap .card-desc {
  margin-bottom: 30px;
}
.cid-uueEglLZok .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 24px;
}
.cid-uueEglLZok .embla__slide .card-wrap .item-wrapper {
  width: 60%;
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-uueEglLZok .embla__slide .card-wrap .item-wrapper {
    width: 100%;
    padding: 0;
  }
}
.cid-uueEglLZok .embla__slide .card-wrap .item-wrapper .image-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uueEglLZok .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uueEglLZok .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uueEglLZok .embla__button--next,
.cid-uueEglLZok .embla__button--prev {
  display: flex;
}
.cid-uueEglLZok .embla__button {
  bottom: -3rem;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent;
  color: #f28a80;
  border: 2px solid #82786e;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uueEglLZok .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uueEglLZok .embla__button:hover {
  background: transparent;
  color: #f28a80;
  border-color: #f28a80;
}
.cid-uueEglLZok .embla__button.embla__button--prev {
  left: auto;
  right: 3.5rem;
  margin-left: 0;
}
.cid-uueEglLZok .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-uueEglLZok .embla {
  position: relative;
  width: 100%;
}
.cid-uueEglLZok .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uueEglLZok .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uueEglLZok .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uueEglLZok .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uueEglLZok .card-subtitle {
  color: #ededed;
  text-align: left;
}
.cid-uueEglLZok .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-uueEglLZok .card-desc {
  color: #ffffff;
  text-align: left;
}
.cid-uueEglLZok .card-text {
  color: #ffffff;
}
.cid-uueEglLZok P {
  color: #ffffff;
}
.cid-uueWuPvlWZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #e8ebe8;
}
.cid-uueWuPvlWZ h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uueWuPvlWZ h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uueWuPvlWZ h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uueWuPvlWZ .mbr-text,
.cid-uueWuPvlWZ .mbr-section-btn {
  color: #767676;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uueWuPvlWZ h3:before,
  .cid-uueWuPvlWZ h3:after {
    display: none;
  }
}
.cid-uueWuPvlWZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uueWuPvlWZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uueWuPvlWZ H1 {
  color: #bf0426;
}
.cid-uueVal5HSH {
  padding-top: 0;
  padding-bottom: 0;
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uueVal5HSH .container-fluid {
  padding: 0;
}
.cid-uueVal5HSH .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-uueVal5HSH .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (min-width: 992px) {
  .cid-uueVal5HSH .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .cid-uueVal5HSH .card:hover:before {
    opacity: 0;
  }
  .cid-uueVal5HSH .card:hover:after {
    opacity: 1;
  }
  .cid-uueVal5HSH .card:hover .image-wrapper {
    border-radius: 40px;
  }
}
.cid-uueVal5HSH .card:nth-child(1) {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uueVal5HSH .card:nth-child(1):before {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uueVal5HSH .card:nth-child(1):after {
  background-image: linear-gradient(360deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uueVal5HSH .card:nth-child(2) {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uueVal5HSH .card:nth-child(2):before {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uueVal5HSH .card:nth-child(2):after {
  background-image: linear-gradient(360deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uueVal5HSH .card-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 25px 60px;
}
.cid-uueVal5HSH .card-title {
  width: 100%;
  margin-bottom: 54px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .cid-uueVal5HSH .card-title {
    margin-bottom: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uueVal5HSH .card-title {
    margin-bottom: 45px;
  }
}
.cid-uueVal5HSH .image-wrapper {
  width: 39.92vw;
  max-width: 600px;
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (max-width: 991px) {
  .cid-uueVal5HSH .image-wrapper {
    width: 70%;
    max-width: 70%;
  }
}
.cid-uueVal5HSH .image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cid-uueVal5HSH .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .cid-uueVal5HSH .mbr-section-btn {
    margin-top: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uueVal5HSH .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uux4buDfIS {
  padding-top: 0;
  padding-bottom: 0;
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uux4buDfIS .container-fluid {
  padding: 0;
}
.cid-uux4buDfIS .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-uux4buDfIS .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (min-width: 992px) {
  .cid-uux4buDfIS .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .cid-uux4buDfIS .card:hover:before {
    opacity: 0;
  }
  .cid-uux4buDfIS .card:hover:after {
    opacity: 1;
  }
  .cid-uux4buDfIS .card:hover .image-wrapper {
    border-radius: 40px;
  }
}
.cid-uux4buDfIS .card:nth-child(1) {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uux4buDfIS .card:nth-child(1):before {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uux4buDfIS .card:nth-child(1):after {
  background-image: linear-gradient(360deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uux4buDfIS .card:nth-child(2) {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uux4buDfIS .card:nth-child(2):before {
  background-image: linear-gradient(180deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uux4buDfIS .card:nth-child(2):after {
  background-image: linear-gradient(360deg, #e8ebe8 0, #e8ebe8 100%);
}
.cid-uux4buDfIS .card-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 25px 60px;
}
.cid-uux4buDfIS .card-title {
  width: 100%;
  margin-bottom: 54px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .cid-uux4buDfIS .card-title {
    margin-bottom: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uux4buDfIS .card-title {
    margin-bottom: 45px;
  }
}
.cid-uux4buDfIS .image-wrapper {
  width: 39.92vw;
  max-width: 600px;
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (max-width: 991px) {
  .cid-uux4buDfIS .image-wrapper {
    width: 70%;
    max-width: 70%;
  }
}
.cid-uux4buDfIS .image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cid-uux4buDfIS .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .cid-uux4buDfIS .mbr-section-btn {
    margin-top: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uux4buDfIS .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uufxifnEox {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #e8ebe8;
}
.cid-uufxifnEox .mbr-fallback-image.disabled {
  display: none;
}
.cid-uufxifnEox .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uufxifnEox .card {
  justify-content: center;
}
.cid-uufxifnEox .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uufxifnEox .content-wrapper .mbr-section-title {
    text-align: center;
  }
}
.cid-uufxifnEox .content-wrapper .text-wrapper {
  margin-bottom: 30px;
}
.cid-uufxifnEox .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uufxifnEox .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-uufxifnEox .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-uufxifnEox .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uufxifnEox .image-wrapper {
    margin-top: 30px;
    justify-content: center;
  }
}
.cid-uufxifnEox .image-wrapper img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-uufxifnEox .image-wrapper img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .cid-uufxifnEox .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.cid-uufxifnEox .mbr-section-title {
  color: #f24d4a;
}
.cid-uufxifnEox .mbr-text {
  color: #f24d4a;
}
.cid-uufxifnEox .mbr-text,
.cid-uufxifnEox .text-wrapper {
  color: #181818;
}
.cid-uufxifnEox .mbr-section-title,
.cid-uufxifnEox .mbr-section-btn {
  color: #bf0426;
}
.cid-uufBUl1guT {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-uufBUl1guT .item:focus,
.cid-uufBUl1guT span:focus {
  outline: none;
}
.cid-uufBUl1guT .item-wrapper {
  position: relative;
}
.cid-uufBUl1guT .container-fluid {
  padding: 0 0 0 45px;
}
@media (max-width: 992px) {
  .cid-uufBUl1guT .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uufBUl1guT .container {
    padding: 0 30px;
  }
}
.cid-uufBUl1guT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 530px;
  max-width: 530px;
}
@media (max-width: 767px) {
  .cid-uufBUl1guT .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uufBUl1guT .embla__slide .slide-content {
  width: 100%;
}
.cid-uufBUl1guT .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 30px;
}
.cid-uufBUl1guT .embla__slide .slide-content .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uufBUl1guT .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uufBUl1guT .embla__slide .slide-content .item-content .item-name {
  margin-bottom: 0;
}
.cid-uufBUl1guT .embla__slide .slide-content .item-content .item-role {
  opacity: .6;
  margin: 10px 0 0 0;
}
.cid-uufBUl1guT .embla__button--next,
.cid-uufBUl1guT .embla__button--prev {
  display: flex;
}
.cid-uufBUl1guT .embla__button {
  bottom: 0;
  width: 30px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent !important;
  color: #f28a80 !important;
  border: none;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uufBUl1guT .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uufBUl1guT .embla__button:hover {
  opacity: .6 !important;
}
.cid-uufBUl1guT .embla__button.embla__button--prev {
  right: 100px;
}
@media (max-width: 768px) {
  .cid-uufBUl1guT .embla__button.embla__button--prev {
    right: 0;
  }
}
.cid-uufBUl1guT .embla__button.embla__button--next {
  right: 60px;
}
@media (max-width: 768px) {
  .cid-uufBUl1guT .embla__button.embla__button--next {
    right: 3rem;
  }
}
.cid-uufBUl1guT .embla {
  position: relative;
  width: 100%;
}
.cid-uufBUl1guT .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  padding-left: 48%;
  padding-right: 45px;
}
@media (max-width: 768px) {
  .cid-uufBUl1guT .embla__viewport {
    padding: 0;
  }
}
.cid-uufBUl1guT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uufBUl1guT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uufBUl1guT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uufBUl1guT .item-name {
  color: #000000;
}
.cid-uufBUl1guT .item-role {
  color: #000000;
}
.cid-uujgUbC6vM {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #181414;
}
.cid-uujgUbC6vM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgUbC6vM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgUbC6vM .container {
  max-width: 1600px;
}
.cid-uujgUbC6vM .row {
  justify-content: center;
}
.cid-uujgUbC6vM .content-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .content-container {
    flex-wrap: wrap;
  }
}
.cid-uujgUbC6vM .info-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .info-container {
    width: 100%;
  }
}
.cid-uujgUbC6vM .title-container {
  margin-bottom: 50px;
}
.cid-uujgUbC6vM .mbr-section-title {
  color: #e4d295;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uujgUbC6vM .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .mbr-section-subtitle {
    text-align: center !important;
    margin-top: 1rem;
  }
}
.cid-uujgUbC6vM .btn-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: auto;
}
.cid-uujgUbC6vM .text-container {
  max-width: 400px;
  margin: 12px auto 0 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .text-container {
    margin: 24px auto;
  }
}
.cid-uujgUbC6vM .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .mbr-text {
    text-align: center !important;
  }
}
.cid-uujgUbC6vM .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-uujgUbC6vM .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-uujgUbC6vM .icon-text {
  color: #e4d295;
}
.cid-uujgUbC6vM .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-uujgUbC6vM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #b1a374;
}
.cid-uujgUbC6vM .form-container {
  max-width: 535px;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .form-container {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uujgUbC6vM form {
  width: 100%;
}
.cid-uujgUbC6vM form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uujgUbC6vM form p {
  color: #ffffff;
}
.cid-uujgUbC6vM form .mbr-section-btn {
  width: max-content;
  max-width: 35%;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM form .mbr-section-btn {
    max-width: 100%;
    width: 100%;
  }
}
.cid-uujgUbC6vM form .mbr-section-btn .btn {
  padding: 10px 40px;
  height: 100%;
  border-radius: 0.75rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM form .mbr-section-btn .btn {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.cid-uujgUbC6vM form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-grow: 1;
}
.cid-uujgUbC6vM form .group-container {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 0.42rem;
}
.cid-uujgUbC6vM form .group-bg {
  position: absolute;
  border-radius: 0.75rem;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
}
.cid-uujgUbC6vM form .group-border {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 6;
  padding: 3px;
  border-radius: 0.75rem;
  transition: all 300ms ease;
  background-image: linear-gradient(90deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8a61ff 99.93%);
  transform: translate3d(-0.42rem, -0.42rem, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-uujgUbC6vM form .group-border:hover {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM form .group-border {
    flex-wrap: wrap;
  }
}
.cid-uujgUbC6vM form .form-control {
  min-height: 100px;
  height: 100%;
  border: none !important;
  background: #ffffff;
  box-shadow: none !important;
  border-radius: 0.75rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 40px;
  font-size: 24px;
  line-height: 32px;
  color: #212132;
  font-weight: 400;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM form .form-control {
    min-height: 64px;
    padding: 6px 24px;
    width: 100%;
    border-radius: 0.75rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    text-align: center !important;
  }
}
.cid-uujgUbC6vM form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form .form-control:hover {
  outline: none !important;
}
.cid-uujgUbC6vM form select {
  color: #939292 !important;
}
.cid-uujgUbC6vM form textarea {
  height: 200px;
}
.cid-uujgUbC6vM form input:active,
.cid-uujgUbC6vM form textarea:active,
.cid-uujgUbC6vM form input:focus,
.cid-uujgUbC6vM form textarea:focus {
  background-color: #FFFFFF !important;
}
.cid-uujgUbC6vM form input:active::-webkit-input-placeholder,
.cid-uujgUbC6vM form textarea:active::-webkit-input-placeholder,
.cid-uujgUbC6vM form input:focus::-webkit-input-placeholder,
.cid-uujgUbC6vM form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form input:active::-moz-placeholder,
.cid-uujgUbC6vM form textarea:active::-moz-placeholder,
.cid-uujgUbC6vM form input:focus::-moz-placeholder,
.cid-uujgUbC6vM form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form input:active:-moz-placeholder,
.cid-uujgUbC6vM form textarea:active:-moz-placeholder,
.cid-uujgUbC6vM form input:focus:-moz-placeholder,
.cid-uujgUbC6vM form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form input:active:-ms-input-placeholder,
.cid-uujgUbC6vM form textarea:active:-ms-input-placeholder,
.cid-uujgUbC6vM form input:focus:-ms-input-placeholder,
.cid-uujgUbC6vM form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-uujgUbC6vM form .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uujgUbC6vM form .row [class*=col] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uujgUbC6vM form label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-uujgUbC6vM form .form-check-input {
  border-color: rgba(255, 255, 255, 0.25) !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uujgUbC6vM form .form-check-input:focus,
.cid-uujgUbC6vM form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #ffffff !important;
}
.cid-uujgUbC6vM form .form-check-input:checked {
  border-color: #ffffff !important;
}
.cid-uujgUbC6vM .img-container {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uujgUbC6vM .img-container {
    width: 100%;
    margin-top: 40px;
  }
}
.cid-uujgUbC6vM .image-wrapper {
  height: 100%;
  position: relative;
  border-radius: 4.17rem;
  padding: 5px;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
}
.cid-uujgUbC6vM .image-wrapper .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.17rem;
  background-image: linear-gradient(135deg, #ffdd65 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff 99.93%);
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}
.cid-uujgUbC6vM .image-wrapper .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 11;
  border-radius: 3.85rem;
  overflow: hidden;
  height: 100%;
  background-color: #000000;
}
.cid-uujgUbC6vM .image-wrapper img {
  width: 75%;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.cid-uufAFlAPdk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e8ebe8;
}
.cid-uufAFlAPdk *:focus {
  outline: none;
}
.cid-uufAFlAPdk .form-group {
  margin-bottom: 2rem;
}
.cid-uufAFlAPdk .form-control {
  width: 100%;
  border: none !important;
  background: transparent;
  border-bottom: 2px solid #181414 !important;
  color: #181414;
  border-radius: 0 !important;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-uufAFlAPdk .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-uufAFlAPdk .form-control::-webkit-input-placeholder {
  color: #181414;
}
.cid-uufAFlAPdk .form-control::-moz-placeholder {
  color: #181414;
}
.cid-uufAFlAPdk .form-control:-ms-input-placeholder {
  color: #181414;
}
.cid-uufAFlAPdk .form-control:-moz-placeholder {
  color: #181414;
}
.cid-uufAFlAPdk input.form-control {
  padding: 1px 0;
}
.cid-uufAFlAPdk .soc-item {
  display: inline-block;
  margin: 0 0.2rem;
}
.cid-uufAFlAPdk .soc-item .socicon {
  font-size: 1.5rem;
  color: #181414;
  opacity: 1;
}
.cid-uufAFlAPdk .soc-item .socicon:hover {
  opacity: 0.5;
}
.cid-uufAFlAPdk .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-uufAFlAPdk .first-column,
  .cid-uufAFlAPdk .form-1 {
    text-align: center;
  }
}
.cid-uufAFlAPdk .form-title,
.cid-uufAFlAPdk .btn-row {
  color: #181414;
}
.cid-uufAFlAPdk .contacts-title,
.cid-uufAFlAPdk .contacts-block {
  color: #181414;
}
.cid-uufAFlAPdk .follow-title,
.cid-uufAFlAPdk .social-list {
  color: #efefef;
}
.cid-uufDb2ya7J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bf0426;
  overflow: hidden;
}
.cid-uufDb2ya7J .media-container-row .mbr-text {
  color: #fffcee;
}
