@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);





body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.625rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.8rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.625rem;
}
.display-5 > .mbr-iconfont {
  font-size: 4.2rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.375rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.9rem;
    font-size: calc( 1.91875rem + (3.625 - 1.91875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91875rem + (3.625 - 1.91875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.1rem;
    font-size: calc( 1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 20px 20px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #5fcac7 !important;
}
.bg-success {
  background-color: #4b4342 !important;
}
.bg-info {
  background-color: #482be7 !important;
}
.bg-warning {
  background-color: #919dab !important;
}
.bg-danger {
  background-color: #5fcac7 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #5fcac7 !important;
  border-color: #5fcac7 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #37a6a3 !important;
  border-color: #37a6a3 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #37a6a3 !important;
  border-color: #37a6a3 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ff91a4 !important;
  border-color: #ff91a4 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #ff4465 !important;
  border-color: #ff4465 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff4465 !important;
  border-color: #ff4465 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #482be7 !important;
  border-color: #482be7 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #2c14b1 !important;
  border-color: #2c14b1 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2c14b1 !important;
  border-color: #2c14b1 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4b4342 !important;
  border-color: #4b4342 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #221f1e !important;
  border-color: #221f1e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #221f1e !important;
  border-color: #221f1e !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #919dab !important;
  border-color: #919dab !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #687788 !important;
  border-color: #687788 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #687788 !important;
  border-color: #687788 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #5fcac7 !important;
  border-color: #5fcac7 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #37a6a3 !important;
  border-color: #37a6a3 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #37a6a3 !important;
  border-color: #37a6a3 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  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,
.btn-primary-outline.active {
  background: none;
  border-color: #319290;
  color: #319290;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #5fcac7;
  border-color: #5fcac7;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5fcac7 !important;
  border-color: #5fcac7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #ff2b50;
  color: #ff2b50;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #ff91a4;
  border-color: #ff91a4;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff91a4 !important;
  border-color: #ff91a4 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #27119b;
  color: #27119b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #482be7;
  border-color: #482be7;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #482be7 !important;
  border-color: #482be7 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #151312;
  color: #151312;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #4b4342;
  border-color: #4b4342;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #4b4342 !important;
  border-color: #4b4342 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #5d6a79;
  color: #5d6a79;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #919dab;
  border-color: #919dab;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #919dab !important;
  border-color: #919dab !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #319290;
  color: #319290;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #5fcac7;
  border-color: #5fcac7;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #5fcac7 !important;
  border-color: #5fcac7 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  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: #5fcac7 !important;
}
.text-secondary {
  color: #ff91a4 !important;
}
.text-success {
  color: #4b4342 !important;
}
.text-info {
  color: #482be7 !important;
}
.text-warning {
  color: #919dab !important;
}
.text-danger {
  color: #5fcac7 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #319290 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff2b50 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #151312 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #27119b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #5d6a79 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #319290 !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: #482be7;
}
.alert-warning {
  background-color: #919dab;
}
.alert-danger {
  background-color: #5fcac7;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.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 a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5fcac7;
  border-color: #5fcac7;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #5fcac7;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8fdfd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #beb6b5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #e6e2fc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9dde2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f8fdfd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #5fcac7;
}
.btn-md {
  transition: none;
  padding: 0.5rem 2rem;
}
.btn-md:hover {
  background-color: #ff91a4 !important;
  border-color: #ff91a4 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5fcac7;
  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-number__spin {
  background: #ffffff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5fcac7;
  border-bottom-color: #5fcac7;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #5fcac7 !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: #ff91a4 !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: 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='%235fcac7' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-szmAqdvUny {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-szmAqdvUny nav.navbar {
  position: fixed;
}
.cid-szmAqdvUny img {
  width: 50px!important;
  height: 50px!important;
}
.cid-szmAqdvUny .navbar-short {
  background: #ffffff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.cid-szmAqdvUny .navbar-short .nav-link {
  color: black!important;
}
.cid-szmAqdvUny .navbar {
  transition: all .3s;
  min-height: 77px;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-szmAqdvUny .navbar.opened {
  transition: all .3s;
}
.cid-szmAqdvUny .navbar .navbar-logo img {
  width: auto;
}
.cid-szmAqdvUny .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-szmAqdvUny .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-szmAqdvUny .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-szmAqdvUny .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-szmAqdvUny .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-szmAqdvUny .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: 55%;
}
.cid-szmAqdvUny .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-szmAqdvUny .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-szmAqdvUny .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-szmAqdvUny .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-szmAqdvUny .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-szmAqdvUny .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-szmAqdvUny .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: 55%;
  }
  .cid-szmAqdvUny .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-szmAqdvUny .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 1rem;
    height: 77px;
  }
  .cid-szmAqdvUny .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-szmAqdvUny .navbar .icons-menu {
    padding: 0;
    padding-top: 1rem;
    padding-bottom: 1.6rem;
  }
}
.cid-szmAqdvUny .navbar.navbar-short {
  min-height: 60px;
}
.cid-szmAqdvUny .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-szmAqdvUny .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-szmAqdvUny .navbar-logo {
  margin-right: 1rem!important;
}
.cid-szmAqdvUny .nav-link {
  transition: all 0.3s;
  position: relative;
}
.cid-szmAqdvUny .nav-link:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  transition: all 0.3s;
  bottom: 5px;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  background: #ff91a4;
}
.cid-szmAqdvUny .nav-link:hover,
.cid-szmAqdvUny .nav-link:focus {
  color: #ff91a4 !important;
}
.cid-szmAqdvUny .nav-link:hover:before,
.cid-szmAqdvUny .nav-link:focus:before {
  bottom: -17px;
  opacity: 1;
}
.cid-szmAqdvUny .dropdown-menu {
  padding: 0.5rem 0;
  border: 2px solid black;
  border-radius: 8px;
}
.cid-szmAqdvUny .dropdown-item {
  padding: 0 2rem;
  backround: white;
  color: black !important;
}
.cid-szmAqdvUny .dropdown-item:before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  transition: all 0.3s;
  left: -5px;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  background: #ff91a4;
}
.cid-szmAqdvUny .dropdown-item:hover,
.cid-szmAqdvUny .dropdown-item:focus {
  color: #ff91a4 !important;
  transform: translateX(10px);
}
.cid-szmAqdvUny .dropdown-item:hover:before,
.cid-szmAqdvUny .dropdown-item:focus:before {
  left: 7px;
  opacity: 1;
}
.cid-szmAqdvUny .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #000000 inset;
  border-radius: 50%;
  color: #000000 !important;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-szmAqdvUny .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px #ff91a4 inset;
}
.cid-szmAqdvUny .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-szmAqdvUny .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-szmAqdvUny .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
}
.cid-szmAqdvUny .icon-bg {
  position: absolute;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
  background: #ff91a4;
}
.cid-szmAqdvUny .navbar-nav {
  margin: auto;
}
.cid-szmAqdvUny .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-szmAqdvUny .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-szmAqdvUny .container {
  display: flex;
  margin: auto;
}
.cid-szmAqdvUny .navbar-caption {
  padding-right: 4rem;
}
.cid-szmAqdvUny .dropdown-menu,
.cid-szmAqdvUny .navbar.opened {
  background: #ffffff !important;
}
.cid-szmAqdvUny .nav-item:focus,
.cid-szmAqdvUny .nav-link:focus {
  outline: none;
}
.cid-szmAqdvUny .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-szmAqdvUny .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-szmAqdvUny .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-szmAqdvUny .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-szmAqdvUny .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-szmAqdvUny .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-szmAqdvUny .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-szmAqdvUny .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-szmAqdvUny .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-szmAqdvUny .dropdown-item.active,
.cid-szmAqdvUny .dropdown-item:active {
  background-color: transparent;
}
.cid-szmAqdvUny .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-szmAqdvUny .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-szmAqdvUny .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-szmAqdvUny .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-szmAqdvUny .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-szmAqdvUny .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-szmAqdvUny ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-szmAqdvUny .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-szmAqdvUny button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-szmAqdvUny button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-szmAqdvUny button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szmAqdvUny button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szmAqdvUny button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szmAqdvUny button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szmAqdvUny nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szmAqdvUny nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szmAqdvUny nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szmAqdvUny nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szmAqdvUny .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-szmAqdvUny a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-szmAqdvUny .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-szmAqdvUny .navbar {
    height: 77px;
  }
  .cid-szmAqdvUny .navbar.opened {
    height: auto;
  }
  .cid-szmAqdvUny .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-szmAqdvUny .navbar {
    background: #ffffff;
  }
  .cid-szmAqdvUny .nav-link {
    color: black!important;
  }
}
.cid-szmiBkQten {
  background-image: url("../../../assets/images/2021-1616-2000x1500.jpg");
}
.cid-szmvyg767g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szmvyg767g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szmvyg767g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szmvyg767g .text-wrapper {
    padding: 2rem;
  }
}
.cid-szmwUOwq6T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ececec;
}
@media (max-width: 991px) {
  .cid-szmwUOwq6T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szmwUOwq6T .row {
  flex-direction: row-reverse;
}
.cid-szmwUOwq6T img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szmwUOwq6T .text-wrapper {
    padding: 2rem;
  }
}
.cid-szmxD6cEVZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-szmxD6cEVZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-szmxD6cEVZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-szmxD6cEVZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-szmq7kGU3W {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ececec;
}
.cid-szmq7kGU3W .item {
  padding-bottom: 2rem;
}
.cid-szmq7kGU3W .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-szmq7kGU3W .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-szmq7kGU3W .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-szmq7kGU3W .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-szmq7kGU3W .carousel-control,
.cid-szmq7kGU3W .close {
  background: #1b1b1b;
}
.cid-szmq7kGU3W .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-szmq7kGU3W .carousel-control-prev span {
  margin-right: 5px;
}
.cid-szmq7kGU3W .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-szmq7kGU3W .carousel-control-next span {
  margin-left: 5px;
}
.cid-szmq7kGU3W .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-szmq7kGU3W .close::before {
  content: '\e91a';
}
.cid-szmq7kGU3W .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-szmq7kGU3W .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-szmq7kGU3W .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szmq7kGU3W .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-szmq7kGU3W .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-szmq7kGU3W .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-szmq7kGU3W .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-szmq7kGU3W .carousel-indicators li.active,
.cid-szmq7kGU3W .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-szmq7kGU3W .carousel-indicators li::after,
.cid-szmq7kGU3W .carousel-indicators li::before {
  content: none;
}
.cid-szmq7kGU3W .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-szmq7kGU3W .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-szmq7kGU3W .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-szmq7kGU3W .carousel-indicators {
    display: none;
  }
}
.cid-szmq7kGU3W .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-szmq7kGU3W .carousel-inner > .active {
  display: block;
}
.cid-szmq7kGU3W .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szmq7kGU3W .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szmq7kGU3W .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-szmq7kGU3W .carousel-control,
  .cid-szmq7kGU3W .carousel-indicators,
  .cid-szmq7kGU3W .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-szmq7kGU3W .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-szmq7kGU3W .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-szmq7kGU3W .carousel-indicators .active,
.cid-szmq7kGU3W .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-szmq7kGU3W .carousel-indicators .active {
  background: #fff;
}
.cid-szmq7kGU3W .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-szmq7kGU3W .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-szmq7kGU3W .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-szmq7kGU3W .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-szmq7kGU3W .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-szmq7kGU3W .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-szmq7kGU3W .carousel {
  width: 100%;
}
.cid-szmq7kGU3W .modal-backdrop.in {
  opacity: 0.8;
}
.cid-szmq7kGU3W .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-szmq7kGU3W .modal.fade .modal-dialog,
.cid-szmq7kGU3W .modal.in .modal-dialog {
  transform: none;
}
.cid-szmq7kGU3W .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-szmq7kGU3W H6 {
  text-align: center;
}
.cid-szmyxXpIWu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  z-index: 0;
}
.cid-szmyxXpIWu .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-szmyxXpIWu img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-szmyxXpIWu .icon1 {
  background: #a8aaf1;
}
.cid-szmyxXpIWu .icon2 {
  background: #ff9083;
}
.cid-szmyxXpIWu .icon3 {
  background: #72dfe9;
}
.cid-szmyxXpIWu .card-box {
  padding-left: 1rem;
}
.cid-szmyxXpIWu .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-szmyxXpIWu .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-szmyxXpIWu .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-szmyxXpIWu .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-szmyxXpIWu .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-szmyxXpIWu .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-szmyxXpIWu .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-szmyxXpIWu .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-szmyxXpIWu .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-szmyxXpIWu .card-text {
  color: #000000;
}
.cid-szmyxXpIWu .title {
  color: #ffffff;
}
.cid-szmyxXpIWu .title,
.cid-szmyxXpIWu .img-col {
  color: #000000;
}
.cid-sAFEbiacTD {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ececec;
}
.cid-sAFEbiacTD .carousel-item {
  justify-content: center;
}
.cid-sAFEbiacTD .carousel-item.active,
.cid-sAFEbiacTD .carousel-item-next,
.cid-sAFEbiacTD .carousel-item-prev {
  display: flex;
}
.cid-sAFEbiacTD .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sAFEbiacTD .carousel-controls {
    display: none;
  }
}
.cid-sAFEbiacTD .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sAFEbiacTD .author-wrap {
  margin-bottom: 10px;
}
.cid-sAFEbiacTD .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sAFEbiacTD .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sAFEbiacTD .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sAFEbiacTD .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sAFEbiacTD .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sAFEbiacTD .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sAFEbiacTD .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sAFEbiacTD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sAFEbiacTD .carousel-indicators li.active {
  background-color: #5aac98;
}
.cid-sAFEbiacTD .carousel-indicators li.active,
.cid-sAFEbiacTD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sAFEbiacTD .carousel-indicators li::after,
.cid-sAFEbiacTD .carousel-indicators li::before {
  content: none;
}
.cid-sAFEbiacTD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sAFEbiacTD .carousel-indicators {
    display: none !important;
  }
}
.cid-szn3RWwFQA {
  padding-top: 615px;
  background-image: url("../../../assets/images/table-dianas-1280x543.jpg");
}
.cid-szmBbQUbis {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-szmBbQUbis .links {
  text-align: center;
  color: #656565;
}
.cid-szmBbQUbis p {
  margin: 0;
}
