.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.4375rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    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))));
  }
}
/* 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: #af0b0b !important;
}
.bg-success {
  background-color: #eeeeee !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #557788 !important;
}
.bg-danger {
  background-color: #113344 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #af0b0b !important;
  border-color: #af0b0b !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: #5d0606 !important;
  border-color: #5d0606 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #5d0606 !important;
  border-color: #5d0606 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #eeeeee !important;
  border-color: #eeeeee !important;
  color: #6f6f6f !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c3c3c3 !important;
  border-color: #c3c3c3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #6f6f6f !important;
  background-color: #c3c3c3 !important;
  border-color: #c3c3c3 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #557788 !important;
  border-color: #557788 !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: #344853 !important;
  border-color: #344853 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #344853 !important;
  border-color: #344853 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #113344 !important;
  border-color: #113344 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #af0b0b;
  color: #af0b0b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #5d0606 !important;
  background-color: transparent!important;
  border-color: #5d0606 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #af0b0b !important;
  border-color: #af0b0b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #eeeeee;
  color: #eeeeee;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #c3c3c3 !important;
  background-color: transparent!important;
  border-color: #c3c3c3 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #6f6f6f !important;
  background-color: #eeeeee !important;
  border-color: #eeeeee !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #557788;
  color: #557788;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #344853 !important;
  background-color: transparent!important;
  border-color: #344853 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #557788 !important;
  border-color: #557788 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #113344;
  color: #113344;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #113344 !important;
  border-color: #113344 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #af0b0b !important;
}
.text-secondary {
  color: #bbbbbb !important;
}
.text-success {
  color: #eeeeee !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #557788 !important;
}
.text-danger {
  color: #113344 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #4f0505 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #888888 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #bbbbbb !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #2e4049 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #af0b0b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #557788;
}
.alert-danger {
  background-color: #113344;
}
.mbr-gallery-filter li.active .btn {
  background-color: #af0b0b;
  border-color: #af0b0b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #af0b0b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f34646;
}
.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: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9cb4c1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #63b1d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #af0b0b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #af0b0b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #af0b0b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #af0b0b;
}
.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: #af0b0b;
  border-bottom-color: #af0b0b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #af0b0b !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: #bbbbbb !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='%23af0b0b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #af0b0b !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.5em 0.85em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1rem;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.cid-sFF0ciwnEL .iconfont-wrapper:hover,
.cid-sFF0ciwnEL .nav-link:hover {
  color: #af0b0b !important;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .navbar-caption {
  font-weight: 600;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFF0ciwnEL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 1.25rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (min-width: 576px) {
  .cid-sFF0ciwnEL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 1.15rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #af0b0b;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-sFF0ciwnEL .signin {
  border: 0;
  padding: 0 !important;
}
.cid-tP5GIjJYdh {
  padding-top: 7rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tP5GIjJYdh .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tP5GIjJYdh .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-tP5GIjJYdh .title__block {
  padding-bottom: 6rem;
}
.cid-tP5GIjJYdh .mbr-section-title {
  margin-bottom: 25px;
  color: #113344;
}
.cid-tP5GIjJYdh .mbr-section-title b,
.cid-tP5GIjJYdh .mbr-section-title strong {
  font-weight: 500;
}
.cid-tP5GIjJYdh .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-tP5GIjJYdh .figure:before {
  content: "";
  animation: 25s linear 0s normal none infinite running rot;
  position: absolute;
  z-index: -1;
  width: 105px;
  height: 105px;
  top: -75px;
  right: -65px;
  background-image: url("../../../assets/images/red-star.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-tP5GIjJYdh .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-tP5GIjJYdh .image__block {
  position: relative;
  max-height: 620px;
}
.cid-tP5GIjJYdh .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #eeeeee;
}
.cid-tP5GIjJYdh .img__wrap {
  position: relative;
  max-height: 480px;
}
@media (max-width: 576px) {
  .cid-tP5GIjJYdh .img__wrap {
    max-height: 36vh;
  }
}
.cid-tP5GIjJYdh .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-tP5GIjJYdh .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-tP5GIjJYdh .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-tP5GIjJYdh .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-tP5GIjJYdh .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-tP5GIjJYdh .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tP5GIjJYdh .row {
    text-align: center;
  }
  .cid-tP5GIjJYdh .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-tP5GIjJYdh .title__block {
    margin-top: -3rem;
  }
  .cid-tP5GIjJYdh .figure:before {
    content: none;
  }
  .cid-tP5GIjJYdh .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-tP5GIjJYdh .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
}
.cid-tP5GIjJYdh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP5GIjJYdh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP5GIjJYdh .mbr-text,
.cid-tP5GIjJYdh .mbr-section-btn {
  color: #113344;
}
.cid-tP5GN9MvSZ {
  background-image: url("../../../assets/images/25dates-couple-test-1200x1200.png");
  background-position: 0% 15%;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.cid-tP5GN9MvSZ .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tP5GN9MvSZ .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-tP5GN9MvSZ .star-outline {
    left: 35%;
    bottom: 5%;
  }
  .cid-tP5GN9MvSZ .heart {
    top: -80px;
    right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tP5GN9MvSZ .sticker {
    width: 20%;
    position: absolute;
  }
  .cid-tP5GN9MvSZ .star-outline {
    left: 70%;
    bottom: -6rem;
  }
  .cid-tP5GN9MvSZ .heart {
    top: -6rem;
    left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tP5GN9MvSZ .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tP5GN9MvSZ .col-text {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tP5GN9MvSZ .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tP5GN9MvSZ .col-form {
    padding: 30px;
  }
}
.cid-tP5GN9MvSZ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tP5GN9MvSZ .text-wrapper {
    text-align: center !important;
  }
}
.cid-tP5GN9MvSZ .label-text {
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tP5GN9MvSZ .label-text {
    text-align: center !important;
  }
}
.cid-tP5GN9MvSZ .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tP5GN9MvSZ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tP5GN9MvSZ .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tP5GN9MvSZ .mbr-text {
    text-align: center !important;
  }
}
.cid-tP5GN9MvSZ .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tP5GN9MvSZ .btn-container {
  width: 100%;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .cid-tP5GN9MvSZ .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tP5GN9MvSZ .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tP5GN9MvSZ .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tP5GN9MvSZ .form-container {
  border-radius: 4px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .cid-tP5GN9MvSZ .form-container {
    max-width: 22rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cid-tP5GN9MvSZ .form-container {
    text-align: center !important;
  }
}
.cid-tP5GN9MvSZ .form-title {
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tP5GN9MvSZ .form-title {
    text-align: center !important;
  }
}
.cid-tP5GN9MvSZ .form-control {
  font-size: .85rem;
}
.cid-tP5GN9MvSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP5GN9MvSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP5GN9MvSZ .field-title {
  color: #ffffff;
}
.cid-tP5GNOOyfE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbddee;
}
@media (max-width: 991px) {
  .cid-tP5GNOOyfE .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-tP5GNOOyfE .heart {
    top: 80%;
    right: 1%;
  }
  .cid-tP5GNOOyfE .star-outline {
    left: 40%;
    bottom: 5%;
  }
  .cid-tP5GNOOyfE .heart-outline {
    top: 70%;
    right: 15%;
  }
}
@media (max-width: 758px) {
  .cid-tP5GNOOyfE .sticker {
    width: 20%;
  }
  .cid-tP5GNOOyfE .heart {
    top: 2%;
    left: 2%;
  }
  .cid-tP5GNOOyfE .star-outline {
    left: 10%;
    bottom: 50%;
  }
  .cid-tP5GNOOyfE .heart-outline {
    right: 1%;
    bottom: 1%;
  }
}
@media (min-width: 992px) {
  .cid-tP5GNOOyfE .sticker {
    width: 10%;
    position: absolute;
  }
  .cid-tP5GNOOyfE .heart {
    left: 50%;
    top: 75%;
  }
  .cid-tP5GNOOyfE .star-outline {
    right: 10%;
    top: 60%;
  }
  .cid-tP5GNOOyfE .heart-outline {
    top: 5%;
    right: 5%;
  }
}
@media (min-width: 1400px) {
  .cid-tP5GNOOyfE .heart {
    left: 75%;
    top: 70%;
  }
  .cid-tP5GNOOyfE .star-outline {
    right: 5%;
    top: 40%;
  }
  .cid-tP5GNOOyfE .heart-outline {
    top: 5%;
    right: 5%;
  }
}
.cid-tP5GNOOyfE .row {
  align-items: center;
  min-height: 500px;
}
.cid-tP5GNOOyfE .image-wrapper {
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}
.cid-tP5GNOOyfE .image-wrapper img {
  object-fit: cover;
  height: 100%;
  min-height: 500px;
}
@media (max-width: 991px) {
  .cid-tP5GNOOyfE .image-wrapper img {
    max-height: 500px;
  }
}
.cid-tP5GNOOyfE .index {
  z-index: 1;
}
.cid-tP5GNOOyfE .text-wrapper {
  padding: 0 4rem 0 6rem;
}
@media (max-width: 991px) {
  .cid-tP5GNOOyfE .text-wrapper {
    padding: 0 2rem 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tP5GNOOyfE .text-wrapper {
    padding: 0 15px;
  }
}
.cid-tP5GNOOyfE .mbr-section-title {
  color: #113344;
  text-align: left;
  font-weight: 600;
}
.cid-tP5GNOOyfE .mbr-text {
  font-size: 24px;
}
.cid-tP5GNOOyfE .mbr-text,
.cid-tP5GNOOyfE .mbr-section-btn {
  color: #113344;
  text-align: left;
}
.cid-tP5GNOOyfE .link {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-tP5GNOOyfE .link {
    top: 500px;
  }
}
@media (max-width: 768px) {
  .cid-tP5GNOOyfE .link {
    width: 150px;
    height: 150px;
  }
}
.cid-tP5GNOOyfE .link img {
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot;
  -webkit-animation: 15s linear 0s normal none infinite running rot;
}
.cid-tP5GNOOyfE .iconfont-wrapper {
  position: absolute;
}
.cid-tP5GNOOyfE .iconfont-wrapper span {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-tP5GNOOyfE .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tP5GNOOyfE .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
@media (max-width: 991px) {
  .cid-tP5GNOOyfE .container-fluid {
    padding: 0 0.75rem;
  }
}
@media (min-width: 992px) {
  .cid-tP5GNOOyfE .container-fluid {
    padding: 0 16px;
  }
}
@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-sFF3eJNZDT {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/25dates-white-fancy-background-2704x2704.webp");
  background-size: 100% 100%;
}
@media (min-width: 992px) {
  .cid-sFF3eJNZDT .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-sFF3eJNZDT .star-outline {
    left: 20%;
    top: 37%;
  }
}
@media (max-width: 991px) {
  .cid-sFF3eJNZDT .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-sFF3eJNZDT .star-outline {
    left: 70%;
    top: 17%;
  }
  .cid-sFF3eJNZDT .card {
    margin-bottom: 2rem;
  }
  .cid-sFF3eJNZDT .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFF3eJNZDT .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sFF3eJNZDT .icon-box {
  background: #af0b0b;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFF3eJNZDT .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
}
.cid-sFF3eJNZDT .card-title,
.cid-sFF3eJNZDT .card-box {
  color: #113344;
}
.cid-sFF3eJNZDT .icon-text {
  color: #113344;
}
.cid-sFF3eJNZDT H3 b,
.cid-sFF3eJNZDT strong {
  font-weight: 600;
}
.cid-sFF3eJNZDT .icon-title {
  color: #113344;
}
.cid-sFF0SGinka {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeeee;
}
.cid-sFF0SGinka .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sFF0SGinka .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFF0SGinka .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sFF0SGinka .mbr-section-title {
  color: #113344;
}
.cid-sFF0SGinka .mbr-text,
.cid-sFF0SGinka .mbr-section-btn {
  color: #113344;
}
.cid-sFF0SGinka .desaturate {
  filter: brightness(1.1) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-sFF0SGinka .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-sFF0SGinka H2 b,
.cid-sFF0SGinka strong {
  font-weight: 600;
}
.cid-tPzhkOjweS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/25dates-seamless-background-dark-1536x1536.webp");
}
.cid-tPzhkOjweS .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tPzhkOjweS .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-tPzhkOjweS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPzhkOjweS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPzhkOjweS .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPzhkOjweS .container-fluid {
    padding: 0 25px;
  }
}
.cid-tPzhkOjweS .row {
  justify-content: center;
}
.cid-tPzhkOjweS .item .item-wrapper {
  margin-bottom: 32px;
}
.cid-tPzhkOjweS .item .item-wrapper a {
  display: block;
}
.cid-tPzhkOjweS .item .item-wrapper a:hover .item-img img {
  transform: scale(1.06) translateX(6px);
}
.cid-tPzhkOjweS .item .item-wrapper a .item-img {
  overflow: hidden;
}
.cid-tPzhkOjweS .item .item-wrapper a .item-img img {
  max-height: 200px;
  object-fit: cover;
  object-position: 50% 33%;
  margin-bottom: 15px;
  transform: scale(1.06) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-sFF75ZhH2d {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFF75ZhH2d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sFF75ZhH2d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFF75ZhH2d .text-wrapper {
    padding: 2rem;
  }
}
.cid-sFF75ZhH2d .mbr-section-title {
  color: #113344;
}
.cid-sFF75ZhH2d .mbr-text {
  color: #113344;
}
.cid-sFF75ZhH2d .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-sFF75ZhH2d .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-sFF75ZhH2d .mbr-section-title b,
.cid-sFF75ZhH2d .mbr-section-title strong {
  font-weight: 600;
}
.cid-sFF3mUy3tz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sFF3mUy3tz .img-wrapper {
  text-align: center;
}
.cid-sFF3mUy3tz img {
  margin: auto;
  width: 68px;
  padding-bottom: 1rem;
}
.cid-sFF3mUy3tz .row {
  align-items: flex-start;
}
.cid-sFF3mUy3tz .card-wrapper {
  border-radius: 4px;
  background: #eeeeee;
}
@media (max-width: 992px) {
  .cid-sFF3mUy3tz .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sFF3mUy3tz .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFF3mUy3tz .card-wrapper {
    padding: 1rem;
  }
}
.cid-sFF3mUy3tz .mbr-text,
.cid-sFF3mUy3tz .mbr-section-btn {
  color: #113344;
}
.cid-sFF3mUy3tz .card-title {
  color: #113344;
}
.cid-tPzdPhTEgF {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/25dates-white-fancy-background-2704x2704.webp");
}
.cid-tPzdPhTEgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPzdPhTEgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 576px) {
  .cid-tPzdPhTEgF .image-wrapper {
    display: none;
  }
}
.cid-tPzdPhTEgF .row {
  flex-direction: row-reverse;
}
.cid-tPzdPhTEgF img {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}
.cid-sFF3oey64R {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/25dates-seamless-background-dark-1536x1536.webp");
}
.cid-sFF3oey64R .carousel-item {
  justify-content: center;
}
.cid-sFF3oey64R .carousel-item.active,
.cid-sFF3oey64R .carousel-item-next,
.cid-sFF3oey64R .carousel-item-prev {
  display: flex;
}
.cid-sFF3oey64R .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #e85a4f;
}
.cid-sFF3oey64R .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sFF3oey64R .carousel-control-next span {
  padding-left: 5px;
}
.cid-sFF3oey64R .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sFF3oey64R .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sFF3oey64R .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sFF3oey64R .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sFF3oey64R .mbr-section-title b,
.cid-sFF3oey64R .mbr-section-title strong {
  font-weight: 600;
}
.cid-sFF3oey64R .user_text {
  color: #ffffff;
}
.cid-sFF3oey64R .user_name {
  color: #ffffff;
}
.cid-sFF3oey64R .user_desk {
  color: #ffffff;
}
.cid-sFF3oey64R H3 {
  color: #ffffff;
}
.cid-tP6gxD0eza {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/25dates-white-fancy-background-2704x2704.webp");
  background-position: 50% 80%;
}
.cid-tP6gxD0eza .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP6gxD0eza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  position: absolute;
  top: 0;
}
.cid-tP6gxD0eza .row {
  justify-content: flex-start;
}
.cid-tP6gxD0eza .main-col {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-tP6gxD0eza .main-col {
    flex-wrap: wrap;
    min-height: auto;
  }
}
.cid-tP6gxD0eza .bg-color {
  padding: .5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tP6gxD0eza .bg-effect {
  background-image: url(../../../assets/images/25dates-seamless-background-dark-1536x1536.webp);
  background-repeat: repeat !important;
  background-size: 75% !important;
  background-color: black !important;
}
.cid-tP6gxD0eza .title-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 35%;
  padding: .5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .cid-tP6gxD0eza .title-container {
    padding: .2rem;
  }
}
@media (max-width: 767px) {
  .cid-tP6gxD0eza .title-container {
    width: 100%;
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-tP6gxD0eza .title-container {
    padding: 1rem;
  }
}
.cid-tP6gxD0eza .content-container {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 65%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tP6gxD0eza .content-container {
    width: 100%;
  }
}
.cid-tP6gxD0eza .mbr-section-title {
  color: #ffffff;
  width: 100%;
}
.cid-tP6gxD0eza .mbr-text {
  color: #ffffff;
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.cid-tP6gxD0eza .mbr-section-btn {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.cid-tP6gxD0eza .img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 2px solid #000000;
}
.cid-tP6gxD0eza .img-wrap img {
  flex-grow: 1;
  object-fit: cover;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 991px) {
  .cid-tP6gxD0eza .img-wrap img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tP6gxD0eza .img-wrap img {
    height: auto;
  }
}
.cid-tP6gxD0eza .mbr-section-title,
.cid-tP6gxD0eza .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tP6gxD0eza .mbr-section-title b,
.cid-tP6gxD0eza .mbr-section-title strong {
  color: #AF0B0B;
}
.cid-tP6gxD0eza svg {
  min-width: 238px;
  right: 10%;
  width: 30%;
  height: auto;
  position: absolute;
}
.cid-sFF5Wb1ZQt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sFF5Wb1ZQt .mbr-iconfont {
  font-size: 2rem !important;
  font-family: 'Moririse2' !important;
  color: #af0b0b;
  margin-left: 1rem;
}
.cid-sFF5Wb1ZQt .panel-group {
  border: none;
}
.cid-sFF5Wb1ZQt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sFF5Wb1ZQt .panel-body,
.cid-sFF5Wb1ZQt .card-header {
  padding: 1rem 0;
}
.cid-sFF5Wb1ZQt .panel-title-edit {
  color: #113344;
}
.cid-sFF5Wb1ZQt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sFF5Wb1ZQt .mbr-section-title b,
.cid-sFF5Wb1ZQt .mbr-section-title strong {
  font-weight: 600;
}
.cid-sFF5Wb1ZQt H3 {
  color: #113344;
}
.cid-sFF5Wb1ZQt .panel-text {
  color: #113344;
}
.cid-sFF3qL4anb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #eeeeee;
}
.cid-sFF3qL4anb .mbr-text,
.cid-sFF3qL4anb .mbr-section-btn {
  color: #113344;
}
@media (max-width: 991px) {
  .cid-sFF3qL4anb .mbr-text,
  .cid-sFF3qL4anb .mbr-section-title {
    text-align: center;
  }
}
.cid-sFF3qL4anb a.btn {
  height: 100%;
  margin: 0;
}
.cid-sFF3qL4anb .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-sFF3qL4anb .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sFF3qL4anb .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sFF3qL4anb .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-sFF3qL4anb .justify-content-center {
  align-items: center;
}
.cid-sFF3qL4anb .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-sFF3qL4anb .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-sFF3qL4anb .mbr-section-title b,
.cid-sFF3qL4anb .mbr-section-title strong {
  font-weight: 600;
}
.cid-sFF3qL4anb H1 {
  color: #113344;
}
.cid-sFF3qL4anb P {
  color: #113344;
}
.cid-sFF3B84VW8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sFF3B84VW8 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFF3B84VW8 .card {
  padding: .25rem;
}
.cid-sFF3B84VW8 .card-wrapper {
  display: flex;
  justify-content: center;
  border-radius: 4px;
  background: #eeeeee;
}
@media (max-width: 991px) {
  .cid-sFF3B84VW8 .card-wrapper {
    padding: .5rem 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sFF3B84VW8 .card-wrapper {
    padding: .25rem;
  }
}
@media (min-width: 992px) {
  .cid-sFF3B84VW8 .card-wrapper {
    padding: 1rem 2rem .5rem 1rem;
  }
}
.cid-sFF3B84VW8 .mbr-iconfont {
  font-size: 2em;
  color: #af0b0b;
  position: relative;
  top: .5rem;
}
.cid-sFF3B84VW8 .mbr-section-title {
  color: #113344;
}
.cid-sFF3B84VW8 .card-title {
  text-align: center;
  display: inline-block;
  color: #113344;
}
.cid-sFF3B84VW8 P {
  text-align: center;
}
.cid-sFF3B84VW8 .mbr-section-title b,
.cid-sFF3B84VW8 .mbr-section-title strong {
  font-weight: 600;
}
.cid-sFF7wKlLkT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #eeeeee;
}
.cid-sFF7wKlLkT .list-group-item {
  background-color: transparent;
  padding: .5rem 1rem;
}
.cid-sFF7wKlLkT .plan-body {
  padding-bottom: 2rem;
}
.cid-sFF7wKlLkT .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sFF7wKlLkT .price {
  color: #af0b0b;
}
.cid-sFF7wKlLkT .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sFF7wKlLkT .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sFF7wKlLkT .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-sFF7wKlLkT .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-sFF7wKlLkT .plan {
    margin-bottom: 2rem;
  }
}
.cid-sFF7wKlLkT UL {
  color: #113344;
}
.cid-sFF7wKlLkT .price-term {
  color: #113344;
}
.cid-sFF7wKlLkT .plan-title {
  color: #113344;
}
.cid-tP5GMa6NLf {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/photoreal-a-couple-dating-online-over-a-computer-red-1152x768.jpg");
  overflow: hidden;
}
.cid-tP5GMa6NLf svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(1, 2);
}
@media (min-width: 1380px) {
  .cid-tP5GMa6NLf svg {
    transform: translate(-50%) scale(1.2, 1.8);
  }
}
@media (min-width: 1600px) {
  .cid-tP5GMa6NLf svg {
    transform: translate(-50%) scale(1.8, 1.6);
  }
}
@media (min-width: 2400px) {
  .cid-tP5GMa6NLf svg {
    transform: translate(-50%) scale(2.8, 1.4);
  }
}
.cid-tP5GMa6NLf #e2_shape {
  fill: #ffffff;
}
.cid-tP5GMa6NLf .mbr-text {
  font-size: 1.35rem;
}
.cid-tP5GMa6NLf img {
  margin-left: auto;
  margin-right: auto;
}
.cid-tP5GMa6NLf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP5GMa6NLf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP5GMa6NLf .mbr-section-title b,
.cid-tP5GMa6NLf .mbr-section-title strong {
  font-weight: 600;
}
.cid-sFF3CYc3p7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/25dates-seamless-background-dark-1536x1536.webp");
  overflow: hidden;
}
.cid-tPLeCFQ3yk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tPLeCFQ3yk nav.navbar {
  position: fixed;
}
.cid-tPLeCFQ3yk .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-tPLeCFQ3yk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPLeCFQ3yk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPLeCFQ3yk .dropdown-item:hover,
.cid-tPLeCFQ3yk .dropdown-item:focus {
  background: #af0b0b !important;
  color: white !important;
}
.cid-tPLeCFQ3yk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPLeCFQ3yk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPLeCFQ3yk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.5em 0.85em !important;
}
.cid-tPLeCFQ3yk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPLeCFQ3yk .nav-link {
  position: relative;
}
.cid-tPLeCFQ3yk .container {
  display: flex;
  margin: auto;
}
.cid-tPLeCFQ3yk .iconfont-wrapper {
  color: #bbbbbb !important;
  font-size: 1rem;
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.cid-tPLeCFQ3yk .iconfont-wrapper:hover,
.cid-tPLeCFQ3yk .nav-link:hover {
  color: #af0b0b !important;
  transition: all 0.25s ease-in-out;
}
.cid-tPLeCFQ3yk .navbar-caption {
  font-weight: 600;
}
.cid-tPLeCFQ3yk .dropdown-menu,
.cid-tPLeCFQ3yk .navbar.opened {
  background: #ffffff !important;
}
.cid-tPLeCFQ3yk .nav-item:focus,
.cid-tPLeCFQ3yk .nav-link:focus {
  outline: none;
}
.cid-tPLeCFQ3yk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPLeCFQ3yk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPLeCFQ3yk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPLeCFQ3yk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPLeCFQ3yk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPLeCFQ3yk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPLeCFQ3yk .navbar {
  min-height: 70px;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPLeCFQ3yk .navbar.opened {
  transition: all 0.3s;
}
.cid-tPLeCFQ3yk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPLeCFQ3yk .navbar .navbar-logo img {
  width: auto;
}
.cid-tPLeCFQ3yk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPLeCFQ3yk .navbar.collapsed {
  justify-content: center;
}
.cid-tPLeCFQ3yk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPLeCFQ3yk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPLeCFQ3yk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-tPLeCFQ3yk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPLeCFQ3yk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPLeCFQ3yk .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-tPLeCFQ3yk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPLeCFQ3yk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPLeCFQ3yk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPLeCFQ3yk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPLeCFQ3yk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPLeCFQ3yk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPLeCFQ3yk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPLeCFQ3yk .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-tPLeCFQ3yk .navbar .navbar-logo img {
    height: 1.25rem !important;
  }
  .cid-tPLeCFQ3yk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPLeCFQ3yk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPLeCFQ3yk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPLeCFQ3yk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPLeCFQ3yk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (min-width: 576px) {
  .cid-tPLeCFQ3yk .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
.cid-tPLeCFQ3yk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPLeCFQ3yk .navbar.navbar-short .navbar-logo img {
  height: 1.15rem !important;
}
.cid-tPLeCFQ3yk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPLeCFQ3yk .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-tPLeCFQ3yk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPLeCFQ3yk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPLeCFQ3yk .dropdown-item.active,
.cid-tPLeCFQ3yk .dropdown-item:active {
  background-color: transparent;
}
.cid-tPLeCFQ3yk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPLeCFQ3yk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPLeCFQ3yk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPLeCFQ3yk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPLeCFQ3yk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPLeCFQ3yk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPLeCFQ3yk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPLeCFQ3yk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPLeCFQ3yk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #af0b0b;
}
.cid-tPLeCFQ3yk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPLeCFQ3yk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPLeCFQ3yk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPLeCFQ3yk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPLeCFQ3yk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPLeCFQ3yk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPLeCFQ3yk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPLeCFQ3yk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPLeCFQ3yk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPLeCFQ3yk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPLeCFQ3yk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPLeCFQ3yk .navbar {
    height: 70px;
  }
  .cid-tPLeCFQ3yk .navbar.opened {
    height: auto;
  }
  .cid-tPLeCFQ3yk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPLeCFQ3yk .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-tPLeCFQ3yk .signin {
  border: 0;
  padding: 0 !important;
}
.cid-tPLeCGoB8F {
  padding-top: 7rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tPLeCGoB8F .desaturate {
  filter: brightness(1.1) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tPLeCGoB8F .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-tPLeCGoB8F .title__block {
  padding-bottom: 6rem;
}
.cid-tPLeCGoB8F .mbr-section-title {
  margin-bottom: 25px;
  color: #113344;
}
.cid-tPLeCGoB8F .mbr-section-title b,
.cid-tPLeCGoB8F .mbr-section-title strong {
  font-weight: 500;
}
.cid-tPLeCGoB8F .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-tPLeCGoB8F .figure:before {
  content: "";
  animation: 25s linear 0s normal none infinite running rot;
  position: absolute;
  z-index: -1;
  width: 105px;
  height: 105px;
  top: -75px;
  right: -65px;
  background-image: url("../../../assets/images/red-star.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.cid-tPLeCGoB8F .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-tPLeCGoB8F .image__block {
  position: relative;
  max-height: 620px;
}
.cid-tPLeCGoB8F .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #eeeeee;
}
.cid-tPLeCGoB8F .img__wrap {
  position: relative;
  max-height: 480px;
}
@media (max-width: 576px) {
  .cid-tPLeCGoB8F .img__wrap {
    max-height: 36vh;
  }
}
.cid-tPLeCGoB8F .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-tPLeCGoB8F .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-tPLeCGoB8F .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-tPLeCGoB8F .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-tPLeCGoB8F .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-tPLeCGoB8F .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tPLeCGoB8F .row {
    text-align: center;
  }
  .cid-tPLeCGoB8F .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-tPLeCGoB8F .title__block {
    margin-top: -3rem;
  }
  .cid-tPLeCGoB8F .figure:before {
    content: none;
  }
  .cid-tPLeCGoB8F .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-tPLeCGoB8F .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
}
.cid-tPLeCGoB8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPLeCGoB8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPLeCGoB8F .mbr-text,
.cid-tPLeCGoB8F .mbr-section-btn {
  color: #113344;
}
.cid-tPLeCGW1ee {
  background-image: url("../../../assets/images/25dates-senior-couple.webp");
  background-position: 100% 15%;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.cid-tPLeCGW1ee .row {
  flex-direction: row-reverse;
}
.cid-tPLeCGW1ee .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tPLeCGW1ee .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-tPLeCGW1ee .star-outline {
    left: 55%;
    bottom: -2rem;
  }
  .cid-tPLeCGW1ee .heart {
    top: -80px;
    left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tPLeCGW1ee .sticker {
    width: 20%;
    position: absolute;
  }
  .cid-tPLeCGW1ee .star-outline {
    left: 40%;
    bottom: -6rem;
  }
  .cid-tPLeCGW1ee .heart {
    top: -6rem;
    left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tPLeCGW1ee .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tPLeCGW1ee .col-text {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tPLeCGW1ee .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tPLeCGW1ee .col-form {
    padding: 30px;
  }
}
.cid-tPLeCGW1ee .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tPLeCGW1ee .text-wrapper {
    text-align: center !important;
  }
}
.cid-tPLeCGW1ee .label-text {
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tPLeCGW1ee .label-text {
    text-align: center !important;
  }
}
.cid-tPLeCGW1ee .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tPLeCGW1ee .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tPLeCGW1ee .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tPLeCGW1ee .mbr-text {
    text-align: center !important;
  }
}
.cid-tPLeCGW1ee .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tPLeCGW1ee .btn-container {
  width: 100%;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .cid-tPLeCGW1ee .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tPLeCGW1ee .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tPLeCGW1ee .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tPLeCGW1ee .form-container {
  border-radius: 4px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .cid-tPLeCGW1ee .form-container {
    max-width: 22rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cid-tPLeCGW1ee .form-container {
    text-align: center !important;
  }
}
.cid-tPLeCGW1ee .form-title {
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tPLeCGW1ee .form-title {
    text-align: center !important;
  }
}
.cid-tPLeCGW1ee .form-control {
  font-size: .85rem;
}
.cid-tPLeCGW1ee .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPLeCGW1ee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPLeCGW1ee .field-title {
  color: #ffffff;
}
.cid-tPLeCHs7C2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbddee;
}
@media (max-width: 991px) {
  .cid-tPLeCHs7C2 .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-tPLeCHs7C2 .heart {
    top: 80%;
    right: 1%;
  }
  .cid-tPLeCHs7C2 .star-outline {
    left: 40%;
    bottom: 5%;
  }
  .cid-tPLeCHs7C2 .heart-outline {
    top: 70%;
    right: 15%;
  }
}
@media (max-width: 758px) {
  .cid-tPLeCHs7C2 .sticker {
    width: 20%;
  }
  .cid-tPLeCHs7C2 .heart {
    top: 2%;
    left: 2%;
  }
  .cid-tPLeCHs7C2 .star-outline {
    left: 10%;
    bottom: 50%;
  }
  .cid-tPLeCHs7C2 .heart-outline {
    right: 1%;
    bottom: 1%;
  }
}
@media (min-width: 992px) {
  .cid-tPLeCHs7C2 .sticker {
    width: 10%;
    position: absolute;
  }
  .cid-tPLeCHs7C2 .heart {
    left: 50%;
    top: 75%;
  }
  .cid-tPLeCHs7C2 .star-outline {
    right: 10%;
    top: 60%;
  }
  .cid-tPLeCHs7C2 .heart-outline {
    top: 5%;
    right: 5%;
  }
}
@media (min-width: 1400px) {
  .cid-tPLeCHs7C2 .heart {
    left: 75%;
    top: 70%;
  }
  .cid-tPLeCHs7C2 .star-outline {
    right: 5%;
    top: 40%;
  }
  .cid-tPLeCHs7C2 .heart-outline {
    top: 5%;
    right: 5%;
  }
}
.cid-tPLeCHs7C2 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tPLeCHs7C2 .sticker {
    width: 10%;
    position: absolute;
  }
  .cid-tPLeCHs7C2 .heart {
    left: 1%;
    top: 70%;
  }
  .cid-tPLeCHs7C2 .star-outline {
    left: 30%;
    top: 60%;
  }
  .cid-tPLeCHs7C2 .heart-outline {
    top: 5%;
    left: 5%;
  }
}
@media (min-width: 1400px) {
  .cid-tPLeCHs7C2 .heart {
    left: 5%;
    top: 40%;
  }
  .cid-tPLeCHs7C2 .star-outline {
    left: 35%;
  }
}
.cid-tPLeCHs7C2 .row {
  align-items: center;
  min-height: 500px;
}
.cid-tPLeCHs7C2 .image-wrapper {
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}
.cid-tPLeCHs7C2 .image-wrapper img {
  object-fit: cover;
  height: 100%;
  min-height: 500px;
}
@media (max-width: 991px) {
  .cid-tPLeCHs7C2 .image-wrapper img {
    max-height: 500px;
  }
}
.cid-tPLeCHs7C2 .index {
  z-index: 1;
}
.cid-tPLeCHs7C2 .text-wrapper {
  padding: 0 4rem 0 6rem;
}
@media (max-width: 991px) {
  .cid-tPLeCHs7C2 .text-wrapper {
    padding: 0 2rem 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tPLeCHs7C2 .text-wrapper {
    padding: 0 15px;
  }
}
.cid-tPLeCHs7C2 .mbr-section-title {
  color: #113344;
  text-align: left;
  font-weight: 600;
}
.cid-tPLeCHs7C2 .mbr-text {
  font-size: 24px;
}
.cid-tPLeCHs7C2 .mbr-text,
.cid-tPLeCHs7C2 .mbr-section-btn {
  color: #113344;
  text-align: left;
}
.cid-tPLeCHs7C2 .link {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-tPLeCHs7C2 .link {
    top: 500px;
  }
}
@media (max-width: 768px) {
  .cid-tPLeCHs7C2 .link {
    width: 150px;
    height: 150px;
  }
}
.cid-tPLeCHs7C2 .link img {
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot;
  -webkit-animation: 15s linear 0s normal none infinite running rot;
}
.cid-tPLeCHs7C2 .iconfont-wrapper {
  position: absolute;
}
.cid-tPLeCHs7C2 .iconfont-wrapper span {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-tPLeCHs7C2 .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tPLeCHs7C2 .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
@media (max-width: 991px) {
  .cid-tPLeCHs7C2 .container-fluid {
    padding: 0 0.75rem;
  }
}
@media (min-width: 992px) {
  .cid-tPLeCHs7C2 .container-fluid {
    padding: 0 16px;
  }
}
@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-tPLeCHUKdV {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/25dates-white-fancy-background-2704x2704.webp");
  background-size: 100% 100%;
}
@media (min-width: 992px) {
  .cid-tPLeCHUKdV .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-tPLeCHUKdV .star-outline {
    left: 20%;
    top: 37%;
  }
}
@media (max-width: 991px) {
  .cid-tPLeCHUKdV .sticker {
    width: 15%;
    position: absolute;
  }
  .cid-tPLeCHUKdV .star-outline {
    left: 70%;
    top: 17%;
  }
  .cid-tPLeCHUKdV .card {
    margin-bottom: 2rem;
  }
  .cid-tPLeCHUKdV .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tPLeCHUKdV .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tPLeCHUKdV .icon-box {
  background: #af0b0b;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tPLeCHUKdV .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tPLeCHUKdV .card-title,
.cid-tPLeCHUKdV .card-box {
  color: #113344;
}
.cid-tPLeCHUKdV .icon-text {
  color: #113344;
}
.cid-tPLeCHUKdV H3 b,
.cid-tPLeCHUKdV strong {
  font-weight: 600;
}
.cid-tPLeCHUKdV .icon-title {
  color: #113344;
}
.cid-tPLeCIu0aU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeeee;
}
.cid-tPLeCIu0aU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tPLeCIu0aU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tPLeCIu0aU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tPLeCIu0aU .mbr-section-title {
  color: #113344;
}
.cid-tPLeCIu0aU .mbr-text,
.cid-tPLeCIu0aU .mbr-section-btn {
  color: #113344;
}
.cid-tPLeCIu0aU .desaturate {
  filter: brightness(1.1) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tPLeCIu0aU .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-tPLeCIu0aU H2 b,
.cid-tPLeCIu0aU strong {
  font-weight: 600;
}
.cid-tPLeCJCzZC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tPLeCJCzZC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tPLeCJCzZC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tPLeCJCzZC .text-wrapper {
    padding: 2rem;
  }
}
.cid-tPLeCJCzZC .mbr-section-title {
  color: #113344;
}
.cid-tPLeCJCzZC .mbr-text {
  color: #113344;
}
.cid-tPLeCJCzZC .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tPLeCJCzZC .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-tPLeCJCzZC .mbr-section-title b,
.cid-tPLeCJCzZC .mbr-section-title strong {
  font-weight: 600;
}
.cid-tPLeCKcy6i {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPLeCKcy6i .img-wrapper {
  text-align: center;
}
.cid-tPLeCKcy6i img {
  margin: auto;
  width: 68px;
  padding-bottom: 1rem;
}
.cid-tPLeCKcy6i .row {
  align-items: flex-start;
}
.cid-tPLeCKcy6i .card-wrapper {
  border-radius: 4px;
  background: #eeeeee;
}
@media (max-width: 992px) {
  .cid-tPLeCKcy6i .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tPLeCKcy6i .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPLeCKcy6i .card-wrapper {
    padding: 1rem;
  }
}
.cid-tPLeCKcy6i .mbr-text,
.cid-tPLeCKcy6i .mbr-section-btn {
  color: #113344;
}
.cid-tPLeCKcy6i .card-title {
  color: #113344;
}
.cid-tPLeCKVCUX {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/25dates-white-fancy-background-2704x2704.webp");
}
.cid-tPLeCKVCUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPLeCKVCUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 576px) {
  .cid-tPLeCKVCUX .image-wrapper {
    display: none;
  }
}
.cid-tPLeCKVCUX .row {
  flex-direction: row-reverse;
}
.cid-tPLeCKVCUX img {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}
.cid-tPLeCLy1rV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/25dates-seamless-background-dark-1536x1536.webp");
}
.cid-tPLeCLy1rV .carousel-item {
  justify-content: center;
}
.cid-tPLeCLy1rV .carousel-item.active,
.cid-tPLeCLy1rV .carousel-item-next,
.cid-tPLeCLy1rV .carousel-item-prev {
  display: flex;
}
.cid-tPLeCLy1rV .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #e85a4f;
}
.cid-tPLeCLy1rV .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-tPLeCLy1rV .carousel-control-next span {
  padding-left: 5px;
}
.cid-tPLeCLy1rV .carousel-control-prev span {
  padding-right: 5px;
}
.cid-tPLeCLy1rV .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tPLeCLy1rV .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-tPLeCLy1rV .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tPLeCLy1rV .mbr-section-title b,
.cid-tPLeCLy1rV .mbr-section-title strong {
  font-weight: 600;
}
.cid-tPLeCLy1rV .user_text {
  color: #ffffff;
}
.cid-tPLeCLy1rV .user_name {
  color: #ffffff;
}
.cid-tPLeCLy1rV .user_desk {
  color: #ffffff;
}
.cid-tPLeCLy1rV H3 {
  color: #ffffff;
}
.cid-tPLeCMkoQd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/25dates-white-fancy-background-2704x2704.webp");
  background-position: 50% 80%;
}
.cid-tPLeCMkoQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPLeCMkoQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  position: absolute;
  top: 0;
}
.cid-tPLeCMkoQd .row {
  justify-content: flex-start;
}
.cid-tPLeCMkoQd .main-col {
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-tPLeCMkoQd .main-col {
    flex-wrap: wrap;
    min-height: auto;
  }
}
.cid-tPLeCMkoQd .bg-color {
  padding: .5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tPLeCMkoQd .bg-effect {
  background-image: url(../../../assets/images/25dates-seamless-background-dark-1536x1536.webp);
  background-repeat: repeat !important;
  background-size: 75% !important;
  background-color: black !important;
}
.cid-tPLeCMkoQd .title-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 35%;
  padding: .5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .cid-tPLeCMkoQd .title-container {
    padding: .2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPLeCMkoQd .title-container {
    width: 100%;
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-tPLeCMkoQd .title-container {
    padding: 1rem;
  }
}
.cid-tPLeCMkoQd .content-container {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 65%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tPLeCMkoQd .content-container {
    width: 100%;
  }
}
.cid-tPLeCMkoQd .mbr-section-title {
  color: #ffffff;
  width: 100%;
}
.cid-tPLeCMkoQd .mbr-text {
  color: #ffffff;
  width: 100%;
  text-align: center;
  font-weight: 600;
}
.cid-tPLeCMkoQd .mbr-section-btn {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.cid-tPLeCMkoQd .img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 2px solid #000000;
}
.cid-tPLeCMkoQd .img-wrap img {
  flex-grow: 1;
  object-fit: cover;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 991px) {
  .cid-tPLeCMkoQd .img-wrap img {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tPLeCMkoQd .img-wrap img {
    height: auto;
  }
}
.cid-tPLeCMkoQd .mbr-section-title,
.cid-tPLeCMkoQd .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tPLeCMkoQd .mbr-section-title b,
.cid-tPLeCMkoQd .mbr-section-title strong {
  color: #AF0B0B;
}
.cid-tPLeCMkoQd svg {
  min-width: 238px;
  left: 10%;
  width: 30%;
  height: auto;
  position: absolute;
}
.cid-tPLeCN8AAQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tPLeCN8AAQ .mbr-iconfont {
  font-size: 2rem !important;
  font-family: 'Moririse2' !important;
  color: #af0b0b;
  margin-left: 1rem;
}
.cid-tPLeCN8AAQ .panel-group {
  border: none;
}
.cid-tPLeCN8AAQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tPLeCN8AAQ .panel-body,
.cid-tPLeCN8AAQ .card-header {
  padding: 1rem 0;
}
.cid-tPLeCN8AAQ .panel-title-edit {
  color: #113344;
}
.cid-tPLeCN8AAQ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tPLeCN8AAQ .mbr-section-title b,
.cid-tPLeCN8AAQ .mbr-section-title strong {
  font-weight: 600;
}
.cid-tPLeCN8AAQ H3 {
  color: #113344;
}
.cid-tPLeCN8AAQ .panel-text {
  color: #113344;
}
.cid-tPLeCO4PIJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #eeeeee;
}
.cid-tPLeCO4PIJ .mbr-text,
.cid-tPLeCO4PIJ .mbr-section-btn {
  color: #113344;
}
@media (max-width: 991px) {
  .cid-tPLeCO4PIJ .mbr-text,
  .cid-tPLeCO4PIJ .mbr-section-title {
    text-align: center;
  }
}
.cid-tPLeCO4PIJ a.btn {
  height: 100%;
  margin: 0;
}
.cid-tPLeCO4PIJ .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-tPLeCO4PIJ .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tPLeCO4PIJ .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tPLeCO4PIJ .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-tPLeCO4PIJ .justify-content-center {
  align-items: center;
}
.cid-tPLeCO4PIJ .desaturate {
  filter: brightness(1.3) grayscale(50%);
  transition: filter 0.3s ease;
}
.cid-tPLeCO4PIJ .desaturate:hover {
  filter: brightness(1) grayscale(0);
}
.cid-tPLeCO4PIJ .mbr-section-title b,
.cid-tPLeCO4PIJ .mbr-section-title strong {
  font-weight: 600;
}
.cid-tPLeCO4PIJ H1 {
  color: #113344;
}
.cid-tPLeCO4PIJ P {
  color: #113344;
}
.cid-tPLeCOVEmB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tPLeCOVEmB .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tPLeCOVEmB .card {
  padding: .25rem;
}
.cid-tPLeCOVEmB .card-wrapper {
  display: flex;
  justify-content: center;
  border-radius: 4px;
  background: #eeeeee;
}
@media (max-width: 991px) {
  .cid-tPLeCOVEmB .card-wrapper {
    padding: .5rem 1rem;
  }
}
@media (max-width: 576px) {
  .cid-tPLeCOVEmB .card-wrapper {
    padding: .25rem;
  }
}
@media (min-width: 992px) {
  .cid-tPLeCOVEmB .card-wrapper {
    padding: 1rem 2rem .5rem 1rem;
  }
}
.cid-tPLeCOVEmB .mbr-iconfont {
  font-size: 2em;
  color: #af0b0b;
  position: relative;
  top: .5rem;
}
.cid-tPLeCOVEmB .mbr-section-title {
  color: #113344;
}
.cid-tPLeCOVEmB .card-title {
  text-align: center;
  display: inline-block;
  color: #113344;
}
.cid-tPLeCOVEmB P {
  text-align: center;
}
.cid-tPLeCOVEmB .mbr-section-title b,
.cid-tPLeCOVEmB .mbr-section-title strong {
  font-weight: 600;
}
.cid-tPLeCQh2C8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #eeeeee;
}
.cid-tPLeCQh2C8 .list-group-item {
  background-color: transparent;
  padding: .5rem 1rem;
}
.cid-tPLeCQh2C8 .plan-body {
  padding-bottom: 2rem;
}
.cid-tPLeCQh2C8 .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tPLeCQh2C8 .price {
  color: #af0b0b;
}
.cid-tPLeCQh2C8 .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tPLeCQh2C8 .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tPLeCQh2C8 .plan .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-tPLeCQh2C8 .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tPLeCQh2C8 .plan {
    margin-bottom: 2rem;
  }
}
.cid-tPLeCQh2C8 UL {
  color: #113344;
}
.cid-tPLeCQh2C8 .price-term {
  color: #113344;
}
.cid-tPLeCQh2C8 .plan-title {
  color: #113344;
}
.cid-tPLeCRbMU4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/photoreal-an-couple-in-their-50s-on-a-late-night-dinner-date-t-3-1-1536x1536.jpg");
  overflow: hidden;
}
.cid-tPLeCRbMU4 svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(1, 2);
}
@media (min-width: 1380px) {
  .cid-tPLeCRbMU4 svg {
    transform: translate(-50%) scale(1.2, 1.8);
  }
}
@media (min-width: 1600px) {
  .cid-tPLeCRbMU4 svg {
    transform: translate(-50%) scale(1.8, 1.6);
  }
}
@media (min-width: 2400px) {
  .cid-tPLeCRbMU4 svg {
    transform: translate(-50%) scale(2.8, 1.4);
  }
}
.cid-tPLeCRbMU4 #e2_shape {
  fill: #ffffff;
}
.cid-tPLeCRbMU4 .mbr-text {
  font-size: 1.35rem;
}
.cid-tPLeCRbMU4 img {
  margin-left: auto;
  margin-right: auto;
}
.cid-tPLeCRbMU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPLeCRbMU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPLeCRbMU4 .mbr-section-title b,
.cid-tPLeCRbMU4 .mbr-section-title strong {
  font-weight: 600;
}
.cid-tPLeCS0zDs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/25dates-seamless-background-dark-1536x1536.webp");
  overflow: hidden;
}
