body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 5rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #cc2952 !important;
}
.bg-success {
  background-color: #edca35 !important;
}
.bg-info {
  background-color: #4f4943 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #9e1e3e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-info,
.btn-info:active {
  background-color: #4f4943 !important;
  border-color: #4f4943 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #262320 !important;
  border-color: #262320 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #262320 !important;
  border-color: #262320 !important;
}
.btn-success,
.btn-success:active {
  background-color: #edca35 !important;
  border-color: #edca35 !important;
  color: #201b03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #201b03 !important;
  background-color: #c4a211 !important;
  border-color: #c4a211 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #201b03 !important;
  background-color: #c4a211 !important;
  border-color: #c4a211 !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: #9e1e3e !important;
  border-color: #9e1e3e !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #5e1225 !important;
  border-color: #5e1225 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5e1225 !important;
  border-color: #5e1225 !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: #771830;
  color: #771830;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #cc2952;
  border-color: #cc2952;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #181614;
  color: #181614;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #4f4943;
  border-color: #4f4943;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4f4943 !important;
  border-color: #4f4943 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ad8f0f;
  color: #ad8f0f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #201b03;
  background-color: #edca35;
  border-color: #edca35;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #201b03 !important;
  background-color: #edca35 !important;
  border-color: #edca35 !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: #480e1c;
  color: #480e1c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #9e1e3e;
  border-color: #9e1e3e;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #9e1e3e !important;
  border-color: #9e1e3e !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: #cc2952 !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #edca35 !important;
}
.text-info {
  color: #4f4943 !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #9e1e3e !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #771830 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0b566f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ad8f0f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #181614 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #480e1c !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: #4f4943;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #9e1e3e;
}
.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: #cc2952;
  border-color: #cc2952;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #cc2952;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5ccd6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fefbf0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c1bcb6;
}
.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: #e05c7d;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #cc2952;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #cc2952;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #cc2952;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #cc2952;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #cc2952;
  border-bottom-color: #cc2952;
}
.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: #cc2952 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #149dcc !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23cc2952' %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.3;
}
.cid-sTlyLPgYWa {
  background-image: url("../../../assets/images/vesna.webp");
}
.cid-sTlyLPgYWa .mbr-section-title {
  color: #efefef;
}
.cid-tygdtW1XDz {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tygdtW1XDz .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 50px;
}
.cid-tygdtW1XDz .dentaura-cover {
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
  background-color: Transparent;
  background-repeat: no-repeat;
  margin: 0px;
  padding: 0px;
  height: 40px;
  z-index: 1;
  position: relative;
}
.cid-tygdtW1XDz .dentaura-cover .dentaura-skew:before {
  content: '';
  position: absolute;
  left: 0;
  top: -76px;
  overflow: visible;
  width: 100%;
  height: 115px;
  background-color: #ffffff;
  z-index: -1;
  -webkit-transform: skewY(-2deg);
  -moz-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  -o-transform: skewY(-2deg);
  transform: skewY(-2deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: initial;
  -webkit-box-shadow: 0 10px 1px 1px #ffffff;
  -moz-box-shadow: 0 10px 1px 1px #ffffff;
  box-shadow: 0 10px 1px 1px #ffffff;
}
.cid-tygdtW1XDz .dentaura-y-down {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.cid-smHz9QF7ay {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-smHz9QF7ay .mbr-section-subtitle {
  color: #232323;
  font-weight: 300;
}
.cid-smHz9QF7ay .mbr-content-text {
  color: #767676;
}
.cid-smHz9QF7ay .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-smHz9QF7ay .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
@media (max-width: 767px) {
  .cid-smHz9QF7ay .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-smHz9QF7ay .img-text {
  color: #9e1e3e;
}
.cid-smHz9QF7ay .mbr-section-title {
  color: #9e1e3e;
}
.cid-tfog9m8Ru7 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tfog9m8Ru7 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tfog9m8Ru7 .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-tfog9m8Ru7 .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tfog9m8Ru7 .img-text {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border: 2px solid #9e1e3e;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-tfog9m8Ru7 .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-tfog9m8Ru7 .cards-block {
    border-top: 2px solid #9e1e3e;
  }
}
.cid-tfog9m8Ru7 .cards-block .card {
  border-bottom: 2px solid #9e1e3e;
  border-radius: 0;
}
.cid-tfog9m8Ru7 .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
@media (max-width: 767px) {
  .cid-tfog9m8Ru7 .panel-item {
    flex-direction: column;
    align-items: center;
  }
  .cid-tfog9m8Ru7 .panel-item .card-img {
    padding: 0;
    padding-bottom: 1rem;
  }
}
.cid-tfog9m8Ru7 .mbr-section-title {
  color: #9e1e3e;
}
.cid-tfog9m8Ru7 H4 {
  color: #9e1e3e;
}
.cid-tfog9m8Ru7 .img-text {
  color: #9e1e3e;
}
.cid-tpZDxHliwZ {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/sokol-ris2.webp");
}
.cid-tpZDxHliwZ .video-wrapper iframe {
  width: 100%;
}
.cid-tpZDxHliwZ .mbr-section-title,
.cid-tpZDxHliwZ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tpZDxHliwZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpZDxHliwZ .mbr-section-title {
  color: #f7ed4a;
}
.cid-tpZDxHliwZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tpZDxHliwZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tpZDxHliwZ .mbr-description {
  color: #ffffff;
}
.cid-tuq9VEL9bx {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tuq9VEL9bx .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 50px;
}
.cid-tuq9VEL9bx .dentaura-cover {
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
  background-color: Transparent;
  background-repeat: no-repeat;
  margin: 0px;
  padding: 0px;
  height: 40px;
  z-index: 1;
  position: relative;
}
.cid-tuq9VEL9bx .dentaura-cover .dentaura-skew:before {
  content: '';
  position: absolute;
  left: 0;
  top: -76px;
  overflow: visible;
  width: 100%;
  height: 115px;
  background-color: #ffffff;
  z-index: -1;
  -webkit-transform: skewY(-2deg);
  -moz-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  -o-transform: skewY(-2deg);
  transform: skewY(-2deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: initial;
  -webkit-box-shadow: 0 10px 1px 1px #ffffff;
  -moz-box-shadow: 0 10px 1px 1px #ffffff;
  box-shadow: 0 10px 1px 1px #ffffff;
}
.cid-tuq9VEL9bx .dentaura-y-down {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.cid-sTlIhHKbzo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sTlIhHKbzo .mbr-section-title {
  color: #9e1e3e;
}
.cid-sTlIFM25ax {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTlIFM25ax .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTlIFM25ax .row {
  flex-direction: row-reverse;
}
.cid-sTlIFM25ax img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTlIFM25ax .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTlIFM25ax .mbr-section-title {
  color: #9e1e3e;
}
.cid-u6GbCgFrDm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6GbCgFrDm .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6GbCgFrDm .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-u6GbCgFrDm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6GbCgFrDm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6GbCgFrDm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6GbCgFrDm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u6GbCgFrDm .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-u6GbCgFrDm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u6GbCgFrDm .card-title {
  color: #9e1e3e;
}
.cid-sTlIGyMWg1 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTlIGyMWg1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTlIGyMWg1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTlIGyMWg1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTlIGyMWg1 .mbr-section-title {
  color: #9e1e3e;
}
.cid-tuq3G2dyha {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/rein-ris2.webp");
}
.cid-tuq3G2dyha .video-wrapper iframe {
  width: 100%;
}
.cid-tuq3G2dyha .mbr-section-title,
.cid-tuq3G2dyha .mbr-section-subtitle,
.cid-tuq3G2dyha .mbr-text {
  text-align: center;
}
.cid-tuq3G2dyha .mbr-section-title {
  color: #f7ed4a;
}
.cid-tuq3G2dyha .mbr-text {
  color: #ffffff;
}
.cid-tygdrnHOLh {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tygdrnHOLh .container-fluid {
  margin: 0px;
  padding: 0px;
  height: auto;
  min-height: 50px;
}
.cid-tygdrnHOLh .dentaura-cover {
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
  background-color: Transparent;
  background-repeat: no-repeat;
  margin: 0px;
  padding: 0px;
  height: 40px;
  z-index: 1;
  position: relative;
}
.cid-tygdrnHOLh .dentaura-cover .dentaura-skew:before {
  content: '';
  position: absolute;
  left: 0;
  top: -76px;
  overflow: visible;
  width: 100%;
  height: 115px;
  background-color: #ffffff;
  z-index: -1;
  -webkit-transform: skewY(-2deg);
  -moz-transform: skewY(-2deg);
  -ms-transform: skewY(-2deg);
  -o-transform: skewY(-2deg);
  transform: skewY(-2deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: initial;
  -webkit-box-shadow: 0 10px 1px 1px #ffffff;
  -moz-box-shadow: 0 10px 1px 1px #ffffff;
  box-shadow: 0 10px 1px 1px #ffffff;
}
.cid-tygdrnHOLh .dentaura-y-down {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.cid-tpZHiI8lEb {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tpZHiI8lEb .oldcost {
  text-decoration: line-through;
  color: #0f7699;
}
.cid-tpZHiI8lEb .currentcost {
  color: #ff3366;
}
.cid-tpZHiI8lEb .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tpZHiI8lEb .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tpZHiI8lEb .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tpZHiI8lEb .text-box {
    padding: 1rem;
  }
}
.cid-tpZHiI8lEb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tpZHiI8lEb H5 {
  color: #9e1e3e;
  text-align: center;
}
.cid-tpZHiI8lEb .mbr-text,
.cid-tpZHiI8lEb .cost,
.cid-tpZHiI8lEb .mbr-section-btn {
  text-align: center;
}
.cid-tyg7AQuzzn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tyg7AQuzzn .mbr-section-title {
  color: #9e1e3e;
}
.cid-tyg9wfGaVs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tyg9wfGaVs .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tyg9wfGaVs .plan-body {
  padding-bottom: 2rem;
}
.cid-tyg9wfGaVs .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tyg9wfGaVs .price {
  color: #cc2952;
}
.cid-tyg9wfGaVs .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tyg9wfGaVs .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tyg9wfGaVs .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-tyg9wfGaVs .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tyg9wfGaVs .plan {
    margin-bottom: 2rem;
  }
}
.cid-tygb0uqeOt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tygb0uqeOt .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tygb0uqeOt .plan-body {
  padding-bottom: 2rem;
}
.cid-tygb0uqeOt .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tygb0uqeOt .price {
  color: #cc2952;
}
.cid-tygb0uqeOt .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tygb0uqeOt .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tygb0uqeOt .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-tygb0uqeOt .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tygb0uqeOt .plan {
    margin-bottom: 2rem;
  }
}
.cid-tygb1uySMF {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tygb1uySMF .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tygb1uySMF .plan-body {
  padding-bottom: 2rem;
}
.cid-tygb1uySMF .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tygb1uySMF .price {
  color: #cc2952;
}
.cid-tygb1uySMF .plan {
  word-break: break-word;
  background-color: #ffffff;
}
.cid-tygb1uySMF .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-tygb1uySMF .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-tygb1uySMF .plan .list-group-item:last-child::after {
  display: none;
}
@media (max-width: 991px) {
  .cid-tygb1uySMF .plan {
    margin-bottom: 2rem;
  }
}
.cid-tpZNWoauPi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9e1e3e;
  overflow: hidden;
}
