body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #9933cc !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #9933cc !important;
  border-color: #9933cc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #6b248f !important;
  border-color: #6b248f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6b248f !important;
  border-color: #6b248f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #5c1f7a;
  color: #5c1f7a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #9933cc;
  border-color: #9933cc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9933cc !important;
  border-color: #9933cc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #9933cc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5c1f7a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  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-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9933cc;
  border-color: #9933cc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #9933cc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ebd6f5;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #9933cc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@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: #9933cc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #9933cc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@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: #9933cc;
  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: #9933cc;
  border-bottom-color: #9933cc;
}
.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: #9933cc !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: #ff3366 !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='%239933cc' %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-qTkzRZLJNu .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3.8rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uswte8f7Nn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-uswte8f7Nn .container {
    padding: 1rem;
  }
}
.cid-uswte8f7Nn .card-box {
  padding: 0 2rem;
}
.cid-uswte8f7Nn .card {
  padding: 0!important;
}
.cid-uswte8f7Nn .mbr-section-btn {
  padding-top: 2rem;
}
.cid-uswte8f7Nn .container-fluid {
  padding: 0;
}
.cid-uswte8f7Nn .card1 {
  background-image: url("../../../assets/images/img-140582-ac-20241016-appartement-75007-paris-2024.049-r04-copy-1-laurent-ferry-photography-paris-photographe-1920-25s.jpg");
}
.cid-uswte8f7Nn .card2 {
  background-image: url("../../../assets/images/img-60419-nikky-doualle-first-shoot-paris-16-laurent-ferry-photography-lr-jpg-20200719-17-27-59-srvb-6.jpeg");
}
.cid-uswte8f7Nn .card3 {
  background-image: url("../../../assets/images/img-33967-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-5-1619x108027.jpeg");
}
.cid-uswte8f7Nn .card4 {
  background-image: url("../../../assets/images/img-56603-lr-raw-srvb-approuved-hd-laure-weise-comedienne-laurentferry-com-all-rights-reserved-ask-before-use-7-1919x1280.jpeg");
}
.cid-uswte8f7Nn h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-uswte8f7Nn p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-uswte8f7Nn .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-uswte8f7Nn .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-uswte8f7Nn .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-uswte8f7Nn .mbr-text,
.cid-uswte8f7Nn .mbr-section-btn {
  color: #ffffff;
}
.cid-sRFjUAl4vq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-sRFjUAl4vq .container {
    padding: 1rem;
  }
}
.cid-sRFjUAl4vq .card-box {
  padding: 0 2rem;
}
.cid-sRFjUAl4vq .card {
  padding: 0!important;
}
.cid-sRFjUAl4vq .mbr-section-btn {
  padding-top: 2rem;
}
.cid-sRFjUAl4vq .container-fluid {
  padding: 0;
}
.cid-sRFjUAl4vq .card1 {
  background-image: url("../../../assets/images/img-04836-paris-pyramide-du-louvre-1920-laurentferry-photographe-paris-illumine.jpeg");
}
.cid-sRFjUAl4vq .card2 {
  background-image: url("../../../assets/images/img-04961-paris-facade-gucci-nocturne-en-passant-1920-laurentferry-photographe-paris-illumine.jpeg");
}
.cid-sRFjUAl4vq .card3 {
  background-image: url("../../../assets/images/img-05154-20211127-paris-facade-la-reserve-avenue-gabriel-en-passant-1920-laurentferry-photographe-paris-illumine-2.jpeg");
}
.cid-sRFjUAl4vq .card4 {
  background-image: url("../../../assets/images/img-04782-paris-pyramide-du-louvre-1920-laurentferry-photographe-paris-illumine.jpeg");
}
.cid-sRFjUAl4vq h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sRFjUAl4vq p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sRFjUAl4vq .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-sRFjUAl4vq .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-sRFjUAl4vq .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-uswu5FkUCJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-uswu5FkUCJ .mbr-text {
    text-align: center;
  }
}
.cid-uswu5FkUCJ .container-fluid {
  padding: 0;
}
.cid-uswu5FkUCJ .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-uswu5FkUCJ img {
  height: 100%;
  object-fit: cover;
}
.cid-uswu5FkUCJ .mbr-figure {
  height: 100%;
}
.cid-uswu5FkUCJ .col-lg-6 {
  padding: 0;
}
.cid-uswu5FkUCJ .row {
  margin: 0;
}
.cid-t7ITMan4Cr {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-t7ITMan4Cr .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-t7ITMan4Cr .social-list a:focus {
  text-decoration: none;
}
.cid-sRX1yrbcab {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRX1yrbcab .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRX1yrbcab .social-list a:focus {
  text-decoration: none;
}
.cid-sIZ3Is6ZJm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sIZ3Is6ZJm .mbr-text {
    text-align: center;
  }
}
.cid-sIZ3Is6ZJm .container-fluid {
  padding: 0;
}
.cid-sIZ3Is6ZJm .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sIZ3Is6ZJm img {
  height: 100%;
  object-fit: cover;
}
.cid-sIZ3Is6ZJm .mbr-figure {
  height: 100%;
}
.cid-sIZ3Is6ZJm .col-lg-6 {
  padding: 0;
}
.cid-sIZ3Is6ZJm .row {
  margin: 0;
}
.cid-sRX2hfRXp9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRX2hfRXp9 .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRX2hfRXp9 .social-list a:focus {
  text-decoration: none;
}
.cid-usww3JUSj6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-usww3JUSj6 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-usww3JUSj6 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-usww3JUSj6 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-usww3JUSj6 .mbr-figure,
  .cid-usww3JUSj6 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-t5V6QzHnts {
  text-align: center;
  overflow: hidden;
}
.cid-t5V6QzHnts .custom-widget svg {
  width: 65px;
  height: 65px;
  color: #777;
  fill: #777;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.cid-rCyiPxsO5f {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rCyiPxsO5f .title {
  margin-bottom: 2rem;
}
.cid-rCyiPxsO5f .mbr-section-subtitle {
  color: #767676;
}
.cid-rCyiPxsO5f a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rCyiPxsO5f a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rCyiPxsO5f textarea.form-control {
  min-height: 188px;
}
.cid-qTkAaeaxX5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .content {
    text-align: center;
  }
  .cid-qTkAaeaxX5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qTkAaeaxX5 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qTkAaeaxX5 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qTkAaeaxX5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qTkAaeaxX5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qTkAaeaxX5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qTkAaeaxX5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qTkAaeaxX5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qTkAaeaxX5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qTkAaeaxX5 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qTkAaeaxX5 H5 {
  color: #000000;
}
.cid-qTkAaeaxX5 P {
  color: #000000;
}
.cid-stkEiPM8vu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-stkEiPM8vu .content {
    text-align: center;
  }
  .cid-stkEiPM8vu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-stkEiPM8vu .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-stkEiPM8vu .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-stkEiPM8vu .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-stkEiPM8vu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-stkEiPM8vu .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-stkEiPM8vu .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-stkEiPM8vu .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-stkEiPM8vu .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-stkEiPM8vu .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-stkEiPM8vu .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-stkEiPM8vu .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-stkEiPM8vu H5 {
  color: #000000;
}
.cid-stkEiPM8vu P {
  color: #000000;
}
.cid-rCbsqFQLVP .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rCbsqFQLVP .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rCbsqFQLVP a {
  font-style: normal;
}
.cid-rCbsqFQLVP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rCbsqFQLVP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rCbsqFQLVP .nav-item:focus,
.cid-rCbsqFQLVP .nav-link:focus {
  outline: none;
}
.cid-rCbsqFQLVP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rCbsqFQLVP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rCbsqFQLVP .menu-logo {
  margin-right: auto;
}
.cid-rCbsqFQLVP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rCbsqFQLVP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rCbsqFQLVP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rCbsqFQLVP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rCbsqFQLVP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rCbsqFQLVP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rCbsqFQLVP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rCbsqFQLVP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rCbsqFQLVP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rCbsqFQLVP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rCbsqFQLVP .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rCbsqFQLVP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rCbsqFQLVP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rCbsqFQLVP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rCbsqFQLVP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rCbsqFQLVP .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rCbsqFQLVP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rCbsqFQLVP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rCbsqFQLVP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rCbsqFQLVP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rCbsqFQLVP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rCbsqFQLVP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rCbsqFQLVP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rCbsqFQLVP button.navbar-toggler:focus {
  outline: none;
}
.cid-rCbsqFQLVP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rCbsqFQLVP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rCbsqFQLVP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rCbsqFQLVP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rCbsqFQLVP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rCbsqFQLVP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rCbsqFQLVP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rCbsqFQLVP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rCbsqFQLVP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rCbsqFQLVP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rCbsqFQLVP .collapsed .btn {
  display: flex;
}
.cid-rCbsqFQLVP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rCbsqFQLVP .collapsed .navbar-collapse.collapsing,
.cid-rCbsqFQLVP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rCbsqFQLVP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rCbsqFQLVP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rCbsqFQLVP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rCbsqFQLVP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rCbsqFQLVP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rCbsqFQLVP .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rCbsqFQLVP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rCbsqFQLVP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rCbsqFQLVP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rCbsqFQLVP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rCbsqFQLVP .collapsed button.navbar-toggler {
  display: block;
}
.cid-rCbsqFQLVP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rCbsqFQLVP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rCbsqFQLVP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rCbsqFQLVP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rCbsqFQLVP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rCbsqFQLVP .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rCbsqFQLVP .navbar-expand {
    flex-direction: column;
  }
  .cid-rCbsqFQLVP img {
    height: 3.8rem !important;
  }
  .cid-rCbsqFQLVP .btn {
    display: flex;
  }
  .cid-rCbsqFQLVP button.navbar-toggler {
    display: block;
  }
  .cid-rCbsqFQLVP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rCbsqFQLVP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rCbsqFQLVP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rCbsqFQLVP .navbar-collapse.collapsing,
  .cid-rCbsqFQLVP .navbar-collapse.show {
    display: block !important;
  }
  .cid-rCbsqFQLVP .navbar-collapse.collapsing .navbar-nav,
  .cid-rCbsqFQLVP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rCbsqFQLVP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rCbsqFQLVP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rCbsqFQLVP .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rCbsqFQLVP .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rCbsqFQLVP .navbar-collapse.collapsing .navbar-buttons,
  .cid-rCbsqFQLVP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rCbsqFQLVP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rCbsqFQLVP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rCbsqFQLVP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rCbsqFQLVP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rCbsqFQLVP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rCbsqFQLVP .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rCbsqFQLVP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rCbsqFQLVP .navbar-collapse {
  flex-basis: auto;
}
.cid-rCbsqFQLVP .nav-link:hover,
.cid-rCbsqFQLVP .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-rCbu4ifshP .modal-body .close {
  background: #1b1b1b;
}
.cid-rCbu4ifshP .modal-body .close span {
  font-style: normal;
}
.cid-rCbu4ifshP .carousel-inner > .active,
.cid-rCbu4ifshP .carousel-inner > .next,
.cid-rCbu4ifshP .carousel-inner > .prev {
  display: table;
}
.cid-rCbu4ifshP .carousel-control .icon-next,
.cid-rCbu4ifshP .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rCbu4ifshP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rCbu4ifshP .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rCbu4ifshP .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rCbu4ifshP .boxed-slider > div {
  position: relative;
}
.cid-rCbu4ifshP .container img {
  width: 100%;
}
.cid-rCbu4ifshP .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rCbu4ifshP .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rCbu4ifshP .mbr-table-cell {
  padding: 0;
}
.cid-rCbu4ifshP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rCbu4ifshP .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-rCbu4ifshP .mbr-overlay {
  z-index: 1;
}
.cid-rCbu4ifshP .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rCbu4ifshP .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rCbu4ifshP .carousel-item .container {
    width: 100%;
  }
}
.cid-rCbu4ifshP .carousel-item-next.carousel-item-left,
.cid-rCbu4ifshP .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rCbu4ifshP .active.carousel-item-right,
.cid-rCbu4ifshP .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rCbu4ifshP .active.carousel-item-left,
.cid-rCbu4ifshP .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rCbu4ifshP .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rCbu4ifshP .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rCbu4ifshP .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rCbu4ifshP .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rCbu4ifshP .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rCbu4ifshP .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rCbu4ifshP .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rCbu4ifshP .mbr-slider .carousel-indicators li.active,
.cid-rCbu4ifshP .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rCbu4ifshP .mbr-slider .carousel-indicators li::after,
.cid-rCbu4ifshP .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rCbu4ifshP .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rCbu4ifshP .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rCbu4ifshP .mbr-slider > .container img {
  width: 100%;
}
.cid-rCbu4ifshP .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rCbu4ifshP .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rCbu4ifshP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rCbu4ifshP .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rCbu4ifshP .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rCbu4ifshP .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rCbu4ifshP .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rCbu4ifshP .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rCbu4ifshP .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rCbu4ifshP .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rCbu4ifshP .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rCbu4ifshP .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rCbu4ifshP .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-txPwRCG8tb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-txPwRCG8tb .mbr-text {
    text-align: center;
  }
}
.cid-txPwRCG8tb .container-fluid {
  padding: 0;
}
.cid-txPwRCG8tb .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-txPwRCG8tb img {
  height: 100%;
  object-fit: cover;
}
.cid-txPwRCG8tb .mbr-figure {
  height: 100%;
}
.cid-txPwRCG8tb .col-lg-6 {
  padding: 0;
}
.cid-txPwRCG8tb .row {
  margin: 0;
}
.cid-sRGieYqKk9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRGieYqKk9 .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRGieYqKk9 .social-list a:focus {
  text-decoration: none;
}
.cid-rCbQSmFGYu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rCbQSmFGYu .title {
  margin-bottom: 2rem;
}
.cid-rCbQSmFGYu .mbr-section-subtitle {
  color: #767676;
}
.cid-rCbQSmFGYu a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rCbQSmFGYu a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rCbQSmFGYu textarea.form-control {
  min-height: 188px;
}
.cid-rCbsrbKYZ0 {
  background-image: url("../../../assets/images/img-33967-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1619x108027.jpg");
}
.cid-rCbsrbKYZ0 h1 {
  color: #616161;
}
.cid-rCbsrbKYZ0 h2,
.cid-rCbsrbKYZ0 h3,
.cid-rCbsrbKYZ0 p {
  color: #767676;
}
.cid-rCbsrbKYZ0 .mbr-section-subtitle {
  font-style: italic;
}
.cid-rCbsrbKYZ0 .mbr-text,
.cid-rCbsrbKYZ0 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-rCbsrbKYZ0 H1 {
  color: #ffffff;
}
.cid-rDviCxnIJ8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rDviCxnIJ8 .content {
    text-align: center;
  }
  .cid-rDviCxnIJ8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDviCxnIJ8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rDviCxnIJ8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rDviCxnIJ8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rDviCxnIJ8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rDviCxnIJ8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rDviCxnIJ8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rDviCxnIJ8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rDviCxnIJ8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rDviCxnIJ8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rDviCxnIJ8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDviCxnIJ8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rDviCxnIJ8 H5 {
  color: #000000;
}
.cid-rDviCxnIJ8 P {
  color: #000000;
}
.cid-t5VnIR0dgg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VnIR0dgg .content {
    text-align: center;
  }
  .cid-t5VnIR0dgg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VnIR0dgg .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VnIR0dgg .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VnIR0dgg .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VnIR0dgg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VnIR0dgg .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VnIR0dgg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VnIR0dgg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VnIR0dgg .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VnIR0dgg .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VnIR0dgg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VnIR0dgg .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VnIR0dgg H5 {
  color: #000000;
}
.cid-t5VnIR0dgg P {
  color: #000000;
}
.cid-rDetd0duCN .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rDetd0duCN .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rDetd0duCN a {
  font-style: normal;
}
.cid-rDetd0duCN .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rDetd0duCN .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rDetd0duCN .nav-item:focus,
.cid-rDetd0duCN .nav-link:focus {
  outline: none;
}
.cid-rDetd0duCN .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rDetd0duCN .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rDetd0duCN .menu-logo {
  margin-right: auto;
}
.cid-rDetd0duCN .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rDetd0duCN .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rDetd0duCN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rDetd0duCN .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rDetd0duCN .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rDetd0duCN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rDetd0duCN button.navbar-toggler:focus {
  outline: none;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDetd0duCN .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rDetd0duCN .collapsed .btn {
  display: flex;
}
.cid-rDetd0duCN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing,
.cid-rDetd0duCN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rDetd0duCN .collapsed button.navbar-toggler {
  display: block;
}
.cid-rDetd0duCN .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rDetd0duCN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rDetd0duCN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rDetd0duCN .navbar-expand {
    flex-direction: column;
  }
  .cid-rDetd0duCN img {
    height: 3.8rem !important;
  }
  .cid-rDetd0duCN .btn {
    display: flex;
  }
  .cid-rDetd0duCN button.navbar-toggler {
    display: block;
  }
  .cid-rDetd0duCN .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rDetd0duCN .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rDetd0duCN .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing,
  .cid-rDetd0duCN .navbar-collapse.show {
    display: block !important;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-buttons,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDetd0duCN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rDetd0duCN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rDetd0duCN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rDetd0duCN .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rDetd0duCN .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rDetd0duCN .navbar-collapse {
  flex-basis: auto;
}
.cid-rDetd0duCN .nav-link:hover,
.cid-rDetd0duCN .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-t8glmGEt7m {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t8glmGEt7m .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t8glmGEt7m .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8glmGEt7m .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8glmGEt7m .title {
  padding: 0 2rem;
}
.cid-t8glmGEt7m .container {
  padding: 0 1rem;
}
.cid-t8glmGEt7m .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-t8glmGEt7m .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-t8glmGEt7m .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t8glmGEt7m .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t8glmGEt7m .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-t8glmGEt7m .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-t8glmGEt7m .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-t8glmGEt7m .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t8glmGEt7m .icon-focus {
  display: none;
}
.cid-t8glmGEt7m .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-t8glmGEt7m .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-t8glmGEt7m li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-t8glmGEt7m li {
  position: relative;
}
.cid-t8glmGEt7m .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-t8glmGEt7m .btn {
  font-family: Rubik !important;
}
.cid-t8glmGEt7m .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-t8glmGEt7m .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8glmGEt7m li:not(:last-child):after {
    top: 9px;
  }
  .cid-t8glmGEt7m .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-t8glmGEt7m .container {
    padding: 0rem 0.5rem;
  }
  .cid-t8glmGEt7m .title {
    padding: 0 1rem;
  }
}
.cid-t8glmGEt7m H2 {
  color: #000000;
}
.cid-t8gsEdPQ8B {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-t8gsEdPQ8B .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-t8gsEdPQ8B .social-list a:focus {
  text-decoration: none;
}
.cid-sidQre203f {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sidQre203f .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sidQre203f .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sidQre203f .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sidQre203f .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sidQre203f .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sidQre203f .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sidQre203f .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sidQre203f .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sidQre203f .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sidQre203f .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sidQre203f .plan-title {
  color: #9933cc;
}
.cid-rDetcVi9si {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rDetcVi9si .title {
  margin-bottom: 2rem;
}
.cid-rDetcVi9si .mbr-section-subtitle {
  color: #767676;
}
.cid-rDetcVi9si a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rDetcVi9si a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rDetcVi9si textarea.form-control {
  min-height: 188px;
}
.cid-rDetcQ4AJm .modal-body .close {
  background: #1b1b1b;
}
.cid-rDetcQ4AJm .modal-body .close span {
  font-style: normal;
}
.cid-rDetcQ4AJm .carousel-inner > .active,
.cid-rDetcQ4AJm .carousel-inner > .next,
.cid-rDetcQ4AJm .carousel-inner > .prev {
  display: table;
}
.cid-rDetcQ4AJm .carousel-control .icon-next,
.cid-rDetcQ4AJm .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rDetcQ4AJm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDetcQ4AJm .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rDetcQ4AJm .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rDetcQ4AJm .boxed-slider > div {
  position: relative;
}
.cid-rDetcQ4AJm .container img {
  width: 100%;
}
.cid-rDetcQ4AJm .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rDetcQ4AJm .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rDetcQ4AJm .mbr-table-cell {
  padding: 0;
}
.cid-rDetcQ4AJm .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rDetcQ4AJm .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-rDetcQ4AJm .mbr-overlay {
  z-index: 1;
}
.cid-rDetcQ4AJm .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rDetcQ4AJm .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rDetcQ4AJm .carousel-item .container {
    width: 100%;
  }
}
.cid-rDetcQ4AJm .carousel-item-next.carousel-item-left,
.cid-rDetcQ4AJm .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rDetcQ4AJm .active.carousel-item-right,
.cid-rDetcQ4AJm .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rDetcQ4AJm .active.carousel-item-left,
.cid-rDetcQ4AJm .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rDetcQ4AJm .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rDetcQ4AJm .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rDetcQ4AJm .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rDetcQ4AJm .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rDetcQ4AJm .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rDetcQ4AJm .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rDetcQ4AJm .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rDetcQ4AJm .mbr-slider .carousel-indicators li.active,
.cid-rDetcQ4AJm .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rDetcQ4AJm .mbr-slider .carousel-indicators li::after,
.cid-rDetcQ4AJm .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rDetcQ4AJm .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rDetcQ4AJm .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rDetcQ4AJm .mbr-slider > .container img {
  width: 100%;
}
.cid-rDetcQ4AJm .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rDetcQ4AJm .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rDetcQ4AJm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rDetcQ4AJm .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rDetcQ4AJm .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rDetcQ4AJm .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rDetcQ4AJm .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rDetcQ4AJm .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rDetcQ4AJm .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rDetcQ4AJm .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rDetcQ4AJm .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rDetcQ4AJm .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rDetcQ4AJm .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sRG2zBJ4ur {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRG2zBJ4ur .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRG2zBJ4ur .social-list a:focus {
  text-decoration: none;
}
.cid-rDviPviXSM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rDviPviXSM .content {
    text-align: center;
  }
  .cid-rDviPviXSM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDviPviXSM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rDviPviXSM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rDviPviXSM .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rDviPviXSM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rDviPviXSM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rDviPviXSM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rDviPviXSM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rDviPviXSM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rDviPviXSM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rDviPviXSM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDviPviXSM .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rDviPviXSM H5 {
  color: #000000;
}
.cid-rDviPviXSM P {
  color: #000000;
}
.cid-t5VnYF5ptv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VnYF5ptv .content {
    text-align: center;
  }
  .cid-t5VnYF5ptv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VnYF5ptv .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VnYF5ptv .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VnYF5ptv .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VnYF5ptv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VnYF5ptv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VnYF5ptv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VnYF5ptv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VnYF5ptv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VnYF5ptv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VnYF5ptv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VnYF5ptv .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VnYF5ptv H5 {
  color: #000000;
}
.cid-t5VnYF5ptv P {
  color: #000000;
}
.cid-rDgRY1zXBG .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rDgRY1zXBG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rDgRY1zXBG a {
  font-style: normal;
}
.cid-rDgRY1zXBG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rDgRY1zXBG .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rDgRY1zXBG .nav-item:focus,
.cid-rDgRY1zXBG .nav-link:focus {
  outline: none;
}
.cid-rDgRY1zXBG .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rDgRY1zXBG .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rDgRY1zXBG .menu-logo {
  margin-right: auto;
}
.cid-rDgRY1zXBG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rDgRY1zXBG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rDgRY1zXBG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rDgRY1zXBG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rDgRY1zXBG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rDgRY1zXBG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rDgRY1zXBG .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rDgRY1zXBG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rDgRY1zXBG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDgRY1zXBG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rDgRY1zXBG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rDgRY1zXBG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rDgRY1zXBG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rDgRY1zXBG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rDgRY1zXBG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rDgRY1zXBG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rDgRY1zXBG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rDgRY1zXBG .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rDgRY1zXBG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rDgRY1zXBG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rDgRY1zXBG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rDgRY1zXBG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rDgRY1zXBG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rDgRY1zXBG button.navbar-toggler:focus {
  outline: none;
}
.cid-rDgRY1zXBG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rDgRY1zXBG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rDgRY1zXBG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rDgRY1zXBG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rDgRY1zXBG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rDgRY1zXBG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDgRY1zXBG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rDgRY1zXBG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rDgRY1zXBG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDgRY1zXBG .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rDgRY1zXBG .collapsed .btn {
  display: flex;
}
.cid-rDgRY1zXBG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rDgRY1zXBG .collapsed .navbar-collapse.collapsing,
.cid-rDgRY1zXBG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rDgRY1zXBG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rDgRY1zXBG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rDgRY1zXBG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rDgRY1zXBG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rDgRY1zXBG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rDgRY1zXBG .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rDgRY1zXBG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rDgRY1zXBG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rDgRY1zXBG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rDgRY1zXBG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rDgRY1zXBG .collapsed button.navbar-toggler {
  display: block;
}
.cid-rDgRY1zXBG .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rDgRY1zXBG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rDgRY1zXBG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rDgRY1zXBG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rDgRY1zXBG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rDgRY1zXBG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rDgRY1zXBG .navbar-expand {
    flex-direction: column;
  }
  .cid-rDgRY1zXBG img {
    height: 3.8rem !important;
  }
  .cid-rDgRY1zXBG .btn {
    display: flex;
  }
  .cid-rDgRY1zXBG button.navbar-toggler {
    display: block;
  }
  .cid-rDgRY1zXBG .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rDgRY1zXBG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rDgRY1zXBG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rDgRY1zXBG .navbar-collapse.collapsing,
  .cid-rDgRY1zXBG .navbar-collapse.show {
    display: block !important;
  }
  .cid-rDgRY1zXBG .navbar-collapse.collapsing .navbar-nav,
  .cid-rDgRY1zXBG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rDgRY1zXBG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rDgRY1zXBG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rDgRY1zXBG .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rDgRY1zXBG .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDgRY1zXBG .navbar-collapse.collapsing .navbar-buttons,
  .cid-rDgRY1zXBG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rDgRY1zXBG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rDgRY1zXBG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDgRY1zXBG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rDgRY1zXBG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rDgRY1zXBG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rDgRY1zXBG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rDgRY1zXBG .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rDgRY1zXBG .navbar-collapse {
  flex-basis: auto;
}
.cid-rDgRY1zXBG .nav-link:hover,
.cid-rDgRY1zXBG .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-rDgRXMjgov .modal-body .close {
  background: #1b1b1b;
}
.cid-rDgRXMjgov .modal-body .close span {
  font-style: normal;
}
.cid-rDgRXMjgov .carousel-inner > .active,
.cid-rDgRXMjgov .carousel-inner > .next,
.cid-rDgRXMjgov .carousel-inner > .prev {
  display: table;
}
.cid-rDgRXMjgov .carousel-control .icon-next,
.cid-rDgRXMjgov .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rDgRXMjgov .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDgRXMjgov .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rDgRXMjgov .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rDgRXMjgov .boxed-slider > div {
  position: relative;
}
.cid-rDgRXMjgov .container img {
  width: 100%;
}
.cid-rDgRXMjgov .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rDgRXMjgov .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rDgRXMjgov .mbr-table-cell {
  padding: 0;
}
.cid-rDgRXMjgov .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rDgRXMjgov .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-rDgRXMjgov .mbr-overlay {
  z-index: 1;
}
.cid-rDgRXMjgov .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rDgRXMjgov .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rDgRXMjgov .carousel-item .container {
    width: 100%;
  }
}
.cid-rDgRXMjgov .carousel-item-next.carousel-item-left,
.cid-rDgRXMjgov .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rDgRXMjgov .active.carousel-item-right,
.cid-rDgRXMjgov .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rDgRXMjgov .active.carousel-item-left,
.cid-rDgRXMjgov .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rDgRXMjgov .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rDgRXMjgov .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rDgRXMjgov .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rDgRXMjgov .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rDgRXMjgov .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rDgRXMjgov .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rDgRXMjgov .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rDgRXMjgov .mbr-slider .carousel-indicators li.active,
.cid-rDgRXMjgov .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rDgRXMjgov .mbr-slider .carousel-indicators li::after,
.cid-rDgRXMjgov .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rDgRXMjgov .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rDgRXMjgov .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rDgRXMjgov .mbr-slider > .container img {
  width: 100%;
}
.cid-rDgRXMjgov .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rDgRXMjgov .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rDgRXMjgov .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rDgRXMjgov .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rDgRXMjgov .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rDgRXMjgov .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rDgRXMjgov .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rDgRXMjgov .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rDgRXMjgov .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rDgRXMjgov .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rDgRXMjgov .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rDgRXMjgov .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rDgRXMjgov .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sRG1YP2Pv5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRG1YP2Pv5 .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRG1YP2Pv5 .social-list a:focus {
  text-decoration: none;
}
.cid-sREJMMVvfx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sREJMMVvfx .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sREJMMVvfx .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sREJMMVvfx .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sREJMMVvfx .mbr-figure,
  .cid-sREJMMVvfx img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rDgRYwlyHo {
  background-image: url("../../../assets/images/img-9345-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1900x94028.jpg");
}
.cid-rDgRYwlyHo h1 {
  color: #616161;
}
.cid-rDgRYwlyHo h2,
.cid-rDgRYwlyHo h3,
.cid-rDgRYwlyHo p {
  color: #767676;
}
.cid-rDgRYwlyHo .mbr-section-subtitle {
  font-style: italic;
}
.cid-rDgRYwlyHo .mbr-text,
.cid-rDgRYwlyHo .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-rDgRYwlyHo H1 {
  color: #ffffff;
}
.cid-rDgRXVu5zh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rDgRXVu5zh .title {
  margin-bottom: 2rem;
}
.cid-rDgRXVu5zh .mbr-section-subtitle {
  color: #767676;
}
.cid-rDgRXVu5zh a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rDgRXVu5zh a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rDgRXVu5zh textarea.form-control {
  min-height: 188px;
}
.cid-sRGhAPQe0D {
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-3-1920x128024.jpg");
}
.cid-sRGhAPQe0D H1 {
  color: #ffffff;
}
.cid-rDvjfIVq2p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rDvjfIVq2p .content {
    text-align: center;
  }
  .cid-rDvjfIVq2p .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDvjfIVq2p .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rDvjfIVq2p .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rDvjfIVq2p .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rDvjfIVq2p .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rDvjfIVq2p .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rDvjfIVq2p .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rDvjfIVq2p .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rDvjfIVq2p .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rDvjfIVq2p .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rDvjfIVq2p .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDvjfIVq2p .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rDvjfIVq2p H5 {
  color: #000000;
}
.cid-rDvjfIVq2p P {
  color: #000000;
}
.cid-t5VoTWz6kP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VoTWz6kP .content {
    text-align: center;
  }
  .cid-t5VoTWz6kP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VoTWz6kP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VoTWz6kP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VoTWz6kP .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VoTWz6kP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VoTWz6kP .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VoTWz6kP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VoTWz6kP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VoTWz6kP .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VoTWz6kP .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VoTWz6kP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VoTWz6kP .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VoTWz6kP H5 {
  color: #000000;
}
.cid-t5VoTWz6kP P {
  color: #000000;
}
.cid-rWVSHXXXHC .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rWVSHXXXHC .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rWVSHXXXHC a {
  font-style: normal;
}
.cid-rWVSHXXXHC .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rWVSHXXXHC .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rWVSHXXXHC .nav-item:focus,
.cid-rWVSHXXXHC .nav-link:focus {
  outline: none;
}
.cid-rWVSHXXXHC .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rWVSHXXXHC .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rWVSHXXXHC .menu-logo {
  margin-right: auto;
}
.cid-rWVSHXXXHC .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rWVSHXXXHC .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rWVSHXXXHC .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rWVSHXXXHC .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rWVSHXXXHC .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rWVSHXXXHC .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rWVSHXXXHC .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rWVSHXXXHC .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rWVSHXXXHC .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWVSHXXXHC .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rWVSHXXXHC .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rWVSHXXXHC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rWVSHXXXHC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rWVSHXXXHC .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rWVSHXXXHC .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWVSHXXXHC .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rWVSHXXXHC .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rWVSHXXXHC .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rWVSHXXXHC .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rWVSHXXXHC .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rWVSHXXXHC .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rWVSHXXXHC .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rWVSHXXXHC button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rWVSHXXXHC button.navbar-toggler:focus {
  outline: none;
}
.cid-rWVSHXXXHC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rWVSHXXXHC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWVSHXXXHC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWVSHXXXHC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWVSHXXXHC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWVSHXXXHC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWVSHXXXHC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWVSHXXXHC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWVSHXXXHC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWVSHXXXHC .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rWVSHXXXHC .collapsed .btn {
  display: flex;
}
.cid-rWVSHXXXHC .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rWVSHXXXHC .collapsed .navbar-collapse.collapsing,
.cid-rWVSHXXXHC .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rWVSHXXXHC .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rWVSHXXXHC .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rWVSHXXXHC .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rWVSHXXXHC .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rWVSHXXXHC .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rWVSHXXXHC .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rWVSHXXXHC .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rWVSHXXXHC .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rWVSHXXXHC .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rWVSHXXXHC .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rWVSHXXXHC .collapsed button.navbar-toggler {
  display: block;
}
.cid-rWVSHXXXHC .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rWVSHXXXHC .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rWVSHXXXHC .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rWVSHXXXHC .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rWVSHXXXHC .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rWVSHXXXHC .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rWVSHXXXHC .navbar-expand {
    flex-direction: column;
  }
  .cid-rWVSHXXXHC img {
    height: 3.8rem !important;
  }
  .cid-rWVSHXXXHC .btn {
    display: flex;
  }
  .cid-rWVSHXXXHC button.navbar-toggler {
    display: block;
  }
  .cid-rWVSHXXXHC .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rWVSHXXXHC .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rWVSHXXXHC .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rWVSHXXXHC .navbar-collapse.collapsing,
  .cid-rWVSHXXXHC .navbar-collapse.show {
    display: block !important;
  }
  .cid-rWVSHXXXHC .navbar-collapse.collapsing .navbar-nav,
  .cid-rWVSHXXXHC .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rWVSHXXXHC .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rWVSHXXXHC .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rWVSHXXXHC .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rWVSHXXXHC .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rWVSHXXXHC .navbar-collapse.collapsing .navbar-buttons,
  .cid-rWVSHXXXHC .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rWVSHXXXHC .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rWVSHXXXHC .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rWVSHXXXHC .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rWVSHXXXHC .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rWVSHXXXHC .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rWVSHXXXHC .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rWVSHXXXHC .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rWVSHXXXHC .navbar-collapse {
  flex-basis: auto;
}
.cid-rWVSHXXXHC .nav-link:hover,
.cid-rWVSHXXXHC .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-rWVSIbyFy8 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rWVSIbyFy8 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-rWVSIbyFy8 .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-rWVSIbyFy8 .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-rWVSIbyFy8 .separline {
  position: relative;
}
.cid-rWVSIbyFy8 .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-rWVSIbyFy8 .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-rWVSIsooyC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rWVSIsooyC .title {
  margin-bottom: 2rem;
}
.cid-rWVSIsooyC .mbr-section-subtitle {
  color: #767676;
}
.cid-rWVSIsooyC a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rWVSIsooyC a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rWVSIsooyC textarea.form-control {
  min-height: 188px;
}
.cid-rWVSIywYNv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWVSIywYNv .content {
    text-align: center;
  }
  .cid-rWVSIywYNv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rWVSIywYNv .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWVSIywYNv .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWVSIywYNv .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWVSIywYNv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWVSIywYNv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rWVSIywYNv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWVSIywYNv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rWVSIywYNv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWVSIywYNv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWVSIywYNv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWVSIywYNv .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rWVSIywYNv H5 {
  color: #000000;
}
.cid-rWVSIywYNv P {
  color: #000000;
}
.cid-t5VpjRJGRy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VpjRJGRy .content {
    text-align: center;
  }
  .cid-t5VpjRJGRy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VpjRJGRy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VpjRJGRy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VpjRJGRy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VpjRJGRy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VpjRJGRy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VpjRJGRy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VpjRJGRy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VpjRJGRy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VpjRJGRy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VpjRJGRy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VpjRJGRy .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VpjRJGRy H5 {
  color: #000000;
}
.cid-t5VpjRJGRy P {
  color: #000000;
}
.cid-rWVT0TOtYX .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rWVT0TOtYX .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rWVT0TOtYX a {
  font-style: normal;
}
.cid-rWVT0TOtYX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rWVT0TOtYX .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rWVT0TOtYX .nav-item:focus,
.cid-rWVT0TOtYX .nav-link:focus {
  outline: none;
}
.cid-rWVT0TOtYX .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rWVT0TOtYX .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rWVT0TOtYX .menu-logo {
  margin-right: auto;
}
.cid-rWVT0TOtYX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rWVT0TOtYX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rWVT0TOtYX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rWVT0TOtYX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rWVT0TOtYX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rWVT0TOtYX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rWVT0TOtYX .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rWVT0TOtYX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rWVT0TOtYX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rWVT0TOtYX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rWVT0TOtYX .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rWVT0TOtYX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rWVT0TOtYX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rWVT0TOtYX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rWVT0TOtYX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rWVT0TOtYX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rWVT0TOtYX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rWVT0TOtYX .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rWVT0TOtYX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rWVT0TOtYX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rWVT0TOtYX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rWVT0TOtYX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rWVT0TOtYX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rWVT0TOtYX button.navbar-toggler:focus {
  outline: none;
}
.cid-rWVT0TOtYX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rWVT0TOtYX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rWVT0TOtYX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rWVT0TOtYX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rWVT0TOtYX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rWVT0TOtYX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWVT0TOtYX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rWVT0TOtYX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rWVT0TOtYX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rWVT0TOtYX .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rWVT0TOtYX .collapsed .btn {
  display: flex;
}
.cid-rWVT0TOtYX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rWVT0TOtYX .collapsed .navbar-collapse.collapsing,
.cid-rWVT0TOtYX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rWVT0TOtYX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rWVT0TOtYX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rWVT0TOtYX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rWVT0TOtYX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rWVT0TOtYX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rWVT0TOtYX .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rWVT0TOtYX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rWVT0TOtYX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rWVT0TOtYX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rWVT0TOtYX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rWVT0TOtYX .collapsed button.navbar-toggler {
  display: block;
}
.cid-rWVT0TOtYX .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rWVT0TOtYX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rWVT0TOtYX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rWVT0TOtYX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rWVT0TOtYX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rWVT0TOtYX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rWVT0TOtYX .navbar-expand {
    flex-direction: column;
  }
  .cid-rWVT0TOtYX img {
    height: 3.8rem !important;
  }
  .cid-rWVT0TOtYX .btn {
    display: flex;
  }
  .cid-rWVT0TOtYX button.navbar-toggler {
    display: block;
  }
  .cid-rWVT0TOtYX .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rWVT0TOtYX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rWVT0TOtYX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rWVT0TOtYX .navbar-collapse.collapsing,
  .cid-rWVT0TOtYX .navbar-collapse.show {
    display: block !important;
  }
  .cid-rWVT0TOtYX .navbar-collapse.collapsing .navbar-nav,
  .cid-rWVT0TOtYX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rWVT0TOtYX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rWVT0TOtYX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rWVT0TOtYX .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rWVT0TOtYX .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rWVT0TOtYX .navbar-collapse.collapsing .navbar-buttons,
  .cid-rWVT0TOtYX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rWVT0TOtYX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rWVT0TOtYX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rWVT0TOtYX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rWVT0TOtYX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rWVT0TOtYX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rWVT0TOtYX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rWVT0TOtYX .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rWVT0TOtYX .navbar-collapse {
  flex-basis: auto;
}
.cid-rWVT0TOtYX .nav-link:hover,
.cid-rWVT0TOtYX .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-rWVWBpZ7AL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rWVWBpZ7AL .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-rWVT1rVYQn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rWVT1rVYQn .title {
  margin-bottom: 2rem;
}
.cid-rWVT1rVYQn .mbr-section-subtitle {
  color: #767676;
}
.cid-rWVT1rVYQn a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rWVT1rVYQn a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rWVT1rVYQn textarea.form-control {
  min-height: 188px;
}
.cid-rWVT1CWJlQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWVT1CWJlQ .content {
    text-align: center;
  }
  .cid-rWVT1CWJlQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rWVT1CWJlQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rWVT1CWJlQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rWVT1CWJlQ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rWVT1CWJlQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rWVT1CWJlQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rWVT1CWJlQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWVT1CWJlQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rWVT1CWJlQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rWVT1CWJlQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWVT1CWJlQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rWVT1CWJlQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rWVT1CWJlQ H5 {
  color: #000000;
}
.cid-rWVT1CWJlQ P {
  color: #000000;
}
.cid-t5VppM0igz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VppM0igz .content {
    text-align: center;
  }
  .cid-t5VppM0igz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VppM0igz .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VppM0igz .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VppM0igz .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VppM0igz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VppM0igz .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VppM0igz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VppM0igz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VppM0igz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VppM0igz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VppM0igz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VppM0igz .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VppM0igz H5 {
  color: #000000;
}
.cid-t5VppM0igz P {
  color: #000000;
}
.cid-rDgnTlAYf1 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rDgnTlAYf1 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rDgnTlAYf1 a {
  font-style: normal;
}
.cid-rDgnTlAYf1 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rDgnTlAYf1 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rDgnTlAYf1 .nav-item:focus,
.cid-rDgnTlAYf1 .nav-link:focus {
  outline: none;
}
.cid-rDgnTlAYf1 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rDgnTlAYf1 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rDgnTlAYf1 .menu-logo {
  margin-right: auto;
}
.cid-rDgnTlAYf1 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rDgnTlAYf1 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rDgnTlAYf1 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rDgnTlAYf1 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rDgnTlAYf1 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rDgnTlAYf1 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rDgnTlAYf1 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rDgnTlAYf1 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rDgnTlAYf1 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDgnTlAYf1 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rDgnTlAYf1 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rDgnTlAYf1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rDgnTlAYf1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rDgnTlAYf1 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rDgnTlAYf1 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rDgnTlAYf1 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rDgnTlAYf1 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rDgnTlAYf1 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rDgnTlAYf1 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rDgnTlAYf1 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rDgnTlAYf1 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rDgnTlAYf1 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rDgnTlAYf1 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rDgnTlAYf1 button.navbar-toggler:focus {
  outline: none;
}
.cid-rDgnTlAYf1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rDgnTlAYf1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rDgnTlAYf1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rDgnTlAYf1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rDgnTlAYf1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rDgnTlAYf1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDgnTlAYf1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rDgnTlAYf1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rDgnTlAYf1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDgnTlAYf1 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rDgnTlAYf1 .collapsed .btn {
  display: flex;
}
.cid-rDgnTlAYf1 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.collapsing,
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rDgnTlAYf1 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rDgnTlAYf1 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rDgnTlAYf1 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rDgnTlAYf1 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rDgnTlAYf1 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rDgnTlAYf1 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rDgnTlAYf1 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rDgnTlAYf1 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rDgnTlAYf1 .navbar-expand {
    flex-direction: column;
  }
  .cid-rDgnTlAYf1 img {
    height: 3.8rem !important;
  }
  .cid-rDgnTlAYf1 .btn {
    display: flex;
  }
  .cid-rDgnTlAYf1 button.navbar-toggler {
    display: block;
  }
  .cid-rDgnTlAYf1 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rDgnTlAYf1 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rDgnTlAYf1 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rDgnTlAYf1 .navbar-collapse.collapsing,
  .cid-rDgnTlAYf1 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rDgnTlAYf1 .navbar-collapse.collapsing .navbar-nav,
  .cid-rDgnTlAYf1 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rDgnTlAYf1 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rDgnTlAYf1 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rDgnTlAYf1 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rDgnTlAYf1 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDgnTlAYf1 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rDgnTlAYf1 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rDgnTlAYf1 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rDgnTlAYf1 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDgnTlAYf1 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rDgnTlAYf1 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rDgnTlAYf1 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rDgnTlAYf1 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rDgnTlAYf1 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rDgnTlAYf1 .navbar-collapse {
  flex-basis: auto;
}
.cid-rDgnTlAYf1 .nav-link:hover,
.cid-rDgnTlAYf1 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-usuVT6RFq3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-usuVT6RFq3 .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-usuVT6RFq3 .mbr-figure img {
  height: 275px;
  width: 275px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-usuVT6RFq3 .mbr-text,
.cid-usuVT6RFq3 .mbr-section-btn {
  color: #767676;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-usuVT6RFq3 img {
    height: 250px!important;
    width: 250px!important;
  }
}
.cid-usuVT6RFq3 H1 {
  color: #9933cc;
}
.cid-usuVY4mqMd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-usuVY4mqMd .mbr-section-subtitle {
  color: #767676;
}
.cid-usuVY4mqMd H2 {
  color: #9933cc;
}
.cid-usuWyzCq6d {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-usuWyzCq6d .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-usuWyzCq6d .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usuWyzCq6d .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usuWyzCq6d .title {
  padding: 0 2rem;
}
.cid-usuWyzCq6d .container {
  padding: 0 1rem;
}
.cid-usuWyzCq6d .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-usuWyzCq6d .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-usuWyzCq6d .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-usuWyzCq6d .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-usuWyzCq6d .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-usuWyzCq6d .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-usuWyzCq6d .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-usuWyzCq6d .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-usuWyzCq6d .icon-focus {
  display: none;
}
.cid-usuWyzCq6d .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-usuWyzCq6d .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-usuWyzCq6d li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-usuWyzCq6d li {
  position: relative;
}
.cid-usuWyzCq6d .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-usuWyzCq6d .btn {
  font-family: Rubik !important;
}
.cid-usuWyzCq6d .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-usuWyzCq6d .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-usuWyzCq6d li:not(:last-child):after {
    top: 9px;
  }
  .cid-usuWyzCq6d .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-usuWyzCq6d .container {
    padding: 0rem 0.5rem;
  }
  .cid-usuWyzCq6d .title {
    padding: 0 1rem;
  }
}
.cid-usuWyzCq6d H2 {
  color: #000000;
}
.cid-usuWIolZAN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-usuWIolZAN .mbr-text {
    text-align: center;
  }
}
.cid-usuWIolZAN .container-fluid {
  padding: 0;
}
.cid-usuWIolZAN .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-usuWIolZAN img {
  height: 100%;
  object-fit: cover;
}
.cid-usuWIolZAN .mbr-figure {
  height: 100%;
}
.cid-usuWIolZAN .col-lg-6 {
  padding: 0;
}
.cid-usuWIolZAN .row {
  margin: 0;
}
.cid-usuXg3Lg7P {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-usuXg3Lg7P .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-usuXg3Lg7P .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-usuXg3Lg7P .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-usuXg3Lg7P .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-usuXg3Lg7P .plan .list-group-item:last-child::after {
  display: none;
}
.cid-usuXg3Lg7P .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-usuXg3Lg7P .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-usuXg3Lg7P .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-usuXg3Lg7P .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-usuXg3Lg7P .price-figure {
    font-size: 4.25rem;
  }
}
.cid-usuXg3Lg7P .plan-title {
  color: #9933cc;
}
.cid-ut6ZVdpMAB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ut6ZVdpMAB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ut6ZVdpMAB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ut6ZVdpMAB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ut6ZVdpMAB .title {
  padding: 0 2rem;
}
.cid-ut6ZVdpMAB .container {
  padding: 0 1rem;
}
.cid-ut6ZVdpMAB .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-ut6ZVdpMAB .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-ut6ZVdpMAB .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-ut6ZVdpMAB .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-ut6ZVdpMAB .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-ut6ZVdpMAB .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-ut6ZVdpMAB .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-ut6ZVdpMAB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ut6ZVdpMAB .icon-focus {
  display: none;
}
.cid-ut6ZVdpMAB .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-ut6ZVdpMAB .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-ut6ZVdpMAB li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-ut6ZVdpMAB li {
  position: relative;
}
.cid-ut6ZVdpMAB .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-ut6ZVdpMAB .btn {
  font-family: Rubik !important;
}
.cid-ut6ZVdpMAB .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ut6ZVdpMAB .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ut6ZVdpMAB li:not(:last-child):after {
    top: 9px;
  }
  .cid-ut6ZVdpMAB .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-ut6ZVdpMAB .container {
    padding: 0rem 0.5rem;
  }
  .cid-ut6ZVdpMAB .title {
    padding: 0 1rem;
  }
}
.cid-ut6ZVdpMAB H2 {
  color: #000000;
}
.cid-ucAznI1krX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ucAznI1krX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ucAznI1krX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucAznI1krX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucAznI1krX .title {
  padding: 0 2rem;
}
.cid-ucAznI1krX .container {
  padding: 0 1rem;
}
.cid-ucAznI1krX .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-ucAznI1krX .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-ucAznI1krX .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-ucAznI1krX .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-ucAznI1krX .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-ucAznI1krX .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-ucAznI1krX .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-ucAznI1krX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ucAznI1krX .icon-focus {
  display: none;
}
.cid-ucAznI1krX .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-ucAznI1krX .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-ucAznI1krX li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-ucAznI1krX li {
  position: relative;
}
.cid-ucAznI1krX .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-ucAznI1krX .btn {
  font-family: Rubik !important;
}
.cid-ucAznI1krX .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ucAznI1krX .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ucAznI1krX li:not(:last-child):after {
    top: 9px;
  }
  .cid-ucAznI1krX .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-ucAznI1krX .container {
    padding: 0rem 0.5rem;
  }
  .cid-ucAznI1krX .title {
    padding: 0 1rem;
  }
}
.cid-ucAznI1krX H2 {
  color: #000000;
}
.cid-ucAxOcXcSK {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-ucAxOcXcSK .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-ucAxOcXcSK .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-ucAxOcXcSK .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-ucAxOcXcSK .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-ucAxOcXcSK .plan .list-group-item:last-child::after {
  display: none;
}
.cid-ucAxOcXcSK .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-ucAxOcXcSK .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucAxOcXcSK .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-ucAxOcXcSK .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-ucAxOcXcSK .price-figure {
    font-size: 4.25rem;
  }
}
.cid-ucAxOcXcSK .plan-title {
  color: #9933cc;
}
.cid-usuY4H8odH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-usuY4H8odH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-usuY4H8odH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usuY4H8odH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usuY4H8odH .title {
  padding: 0 2rem;
}
.cid-usuY4H8odH .container {
  padding: 0 1rem;
}
.cid-usuY4H8odH .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-usuY4H8odH .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-usuY4H8odH .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-usuY4H8odH .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-usuY4H8odH .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-usuY4H8odH .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-usuY4H8odH .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-usuY4H8odH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-usuY4H8odH .icon-focus {
  display: none;
}
.cid-usuY4H8odH .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-usuY4H8odH .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-usuY4H8odH li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-usuY4H8odH li {
  position: relative;
}
.cid-usuY4H8odH .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-usuY4H8odH .btn {
  font-family: Rubik !important;
}
.cid-usuY4H8odH .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-usuY4H8odH .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-usuY4H8odH li:not(:last-child):after {
    top: 9px;
  }
  .cid-usuY4H8odH .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-usuY4H8odH .container {
    padding: 0rem 0.5rem;
  }
  .cid-usuY4H8odH .title {
    padding: 0 1rem;
  }
}
.cid-usuY4H8odH H2 {
  color: #000000;
}
.cid-ut710U3Aht {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ut710U3Aht .mbr-section-subtitle {
  color: #767676;
}
.cid-sIZjeenxWq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIZjeenxWq .box1 {
  background-image: url("../../../assets/images/laurent-ferry-photographe-immobilier-paris-videaste-immobilier-duplex-appartement-video-immobiliere-horizontale.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-sIZjeenxWq .box2 {
  background-image: url("../../../assets/images/laurent-ferry-photographe-immobilier-paris-videaste-immobilier-maison-appartement-video-immobiliere-horizontale.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-sIZjeenxWq .icon-wrap {
  background-color: #149dcc !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sIZjeenxWq .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sIZjeenxWq .icon-wrap span {
  padding-left: 8px;
}
.cid-sIZjeenxWq .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sIZjeenxWq .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sIZjeenxWq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sIZjeenxWq .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-sIZjeenxWq .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sIZjeenxWq a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sIZjeenxWq a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sIZjeenxWq {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-sIZjeenxWq .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sIZjeenxWq {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-sIZjeenxWq .box1,
  .cid-sIZjeenxWq .box2 {
    height: 250px;
  }
}
.cid-uYHp8Oqs7c {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uYHp8Oqs7c .mbr-section-subtitle {
  color: #767676;
}
.cid-txPGjcvyht {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-txPGjcvyht .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-txPGjcvyht .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-txPGjcvyht .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-txPGjcvyht .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-txPGjcvyht .plan .list-group-item:last-child::after {
  display: none;
}
.cid-txPGjcvyht .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-txPGjcvyht .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txPGjcvyht .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-txPGjcvyht .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-txPGjcvyht .price-figure {
    font-size: 4.25rem;
  }
}
.cid-txPGjcvyht .plan-title {
  color: #9933cc;
}
.cid-sRFK7k244o {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRFK7k244o .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRFK7k244o .social-list a:focus {
  text-decoration: none;
}
.cid-rDgnTi3JTy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rDgnTi3JTy .title {
  margin-bottom: 2rem;
}
.cid-rDgnTi3JTy .mbr-section-subtitle {
  color: #767676;
}
.cid-rDgnTi3JTy a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rDgnTi3JTy a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rDgnTi3JTy textarea.form-control {
  min-height: 188px;
}
.cid-rDvj2r7y4F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rDvj2r7y4F .content {
    text-align: center;
  }
  .cid-rDvj2r7y4F .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDvj2r7y4F .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rDvj2r7y4F .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rDvj2r7y4F .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rDvj2r7y4F .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rDvj2r7y4F .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rDvj2r7y4F .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rDvj2r7y4F .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rDvj2r7y4F .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rDvj2r7y4F .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rDvj2r7y4F .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDvj2r7y4F .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rDvj2r7y4F H5 {
  color: #000000;
}
.cid-rDvj2r7y4F P {
  color: #000000;
}
.cid-t5Voq3op1C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5Voq3op1C .content {
    text-align: center;
  }
  .cid-t5Voq3op1C .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5Voq3op1C .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5Voq3op1C .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5Voq3op1C .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5Voq3op1C .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5Voq3op1C .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5Voq3op1C .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5Voq3op1C .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5Voq3op1C .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5Voq3op1C .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5Voq3op1C .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5Voq3op1C .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5Voq3op1C H5 {
  color: #000000;
}
.cid-t5Voq3op1C P {
  color: #000000;
}
.cid-uYHz9Xc0km {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uYHz9Xc0km .mbr-section-subtitle {
  color: #767676;
}
.cid-s9OC0LtmQX .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-s9OC0LtmQX .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s9OC0LtmQX a {
  font-style: normal;
}
.cid-s9OC0LtmQX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s9OC0LtmQX .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s9OC0LtmQX .nav-item:focus,
.cid-s9OC0LtmQX .nav-link:focus {
  outline: none;
}
.cid-s9OC0LtmQX .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s9OC0LtmQX .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s9OC0LtmQX .menu-logo {
  margin-right: auto;
}
.cid-s9OC0LtmQX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s9OC0LtmQX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s9OC0LtmQX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s9OC0LtmQX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s9OC0LtmQX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s9OC0LtmQX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s9OC0LtmQX .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s9OC0LtmQX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s9OC0LtmQX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9OC0LtmQX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s9OC0LtmQX .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s9OC0LtmQX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s9OC0LtmQX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9OC0LtmQX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s9OC0LtmQX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9OC0LtmQX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s9OC0LtmQX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s9OC0LtmQX .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s9OC0LtmQX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s9OC0LtmQX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s9OC0LtmQX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s9OC0LtmQX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s9OC0LtmQX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s9OC0LtmQX button.navbar-toggler:focus {
  outline: none;
}
.cid-s9OC0LtmQX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9OC0LtmQX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9OC0LtmQX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9OC0LtmQX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9OC0LtmQX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9OC0LtmQX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9OC0LtmQX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9OC0LtmQX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9OC0LtmQX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9OC0LtmQX .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s9OC0LtmQX .collapsed .btn {
  display: flex;
}
.cid-s9OC0LtmQX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s9OC0LtmQX .collapsed .navbar-collapse.collapsing,
.cid-s9OC0LtmQX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s9OC0LtmQX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s9OC0LtmQX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s9OC0LtmQX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s9OC0LtmQX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s9OC0LtmQX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-s9OC0LtmQX .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-s9OC0LtmQX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s9OC0LtmQX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s9OC0LtmQX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s9OC0LtmQX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s9OC0LtmQX .collapsed button.navbar-toggler {
  display: block;
}
.cid-s9OC0LtmQX .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s9OC0LtmQX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s9OC0LtmQX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s9OC0LtmQX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s9OC0LtmQX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s9OC0LtmQX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s9OC0LtmQX .navbar-expand {
    flex-direction: column;
  }
  .cid-s9OC0LtmQX img {
    height: 3.8rem !important;
  }
  .cid-s9OC0LtmQX .btn {
    display: flex;
  }
  .cid-s9OC0LtmQX button.navbar-toggler {
    display: block;
  }
  .cid-s9OC0LtmQX .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s9OC0LtmQX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s9OC0LtmQX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s9OC0LtmQX .navbar-collapse.collapsing,
  .cid-s9OC0LtmQX .navbar-collapse.show {
    display: block !important;
  }
  .cid-s9OC0LtmQX .navbar-collapse.collapsing .navbar-nav,
  .cid-s9OC0LtmQX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s9OC0LtmQX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s9OC0LtmQX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s9OC0LtmQX .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-s9OC0LtmQX .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-s9OC0LtmQX .navbar-collapse.collapsing .navbar-buttons,
  .cid-s9OC0LtmQX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s9OC0LtmQX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s9OC0LtmQX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s9OC0LtmQX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s9OC0LtmQX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s9OC0LtmQX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s9OC0LtmQX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s9OC0LtmQX .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s9OC0LtmQX .navbar-collapse {
  flex-basis: auto;
}
.cid-s9OC0LtmQX .nav-link:hover,
.cid-s9OC0LtmQX .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-s9OC0RNxam {
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x128024.jpg");
}
.cid-s9OC0RNxam H1 {
  color: #ffffff;
}
.cid-s9OC0UI3s0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-s9OC0UI3s0 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-s9OC0UI3s0 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-s9OC0UI3s0 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-s9OC0UI3s0 .mbr-figure,
  .cid-s9OC0UI3s0 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-s9OC0WDLnq {
  background-image: url("../../../assets/images/img-33967-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1619x108027.jpg");
}
.cid-s9OC0WDLnq h1 {
  color: #616161;
}
.cid-s9OC0WDLnq h2,
.cid-s9OC0WDLnq h3,
.cid-s9OC0WDLnq p {
  color: #767676;
}
.cid-s9OC0WDLnq .mbr-section-subtitle {
  font-style: italic;
}
.cid-s9OC0WDLnq .mbr-text,
.cid-s9OC0WDLnq .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-s9OC0WDLnq H1 {
  color: #ffffff;
}
.cid-s9OC11mSQY {
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x128025.jpg");
}
.cid-s9OC11mSQY h1 {
  color: #616161;
}
.cid-s9OC11mSQY h2,
.cid-s9OC11mSQY h3,
.cid-s9OC11mSQY p {
  color: #767676;
}
.cid-s9OC11mSQY .mbr-section-subtitle {
  font-style: italic;
}
.cid-s9OC11mSQY H1 {
  color: #767676;
}
.cid-s9OC11mSQY .mbr-text,
.cid-s9OC11mSQY .mbr-section-btn {
  color: #cc6329;
}
.cid-s9OC16Meul {
  background-image: url("../../../assets/images/img-56558-lr-raw-srvb-approuved-hd-laure-weise-comedienne-laurentferry-com-all-rights-reserved-ask-before-use-2-1919x128026.jpg");
}
.cid-s9OC16Meul h1 {
  color: #616161;
}
.cid-s9OC16Meul h2,
.cid-s9OC16Meul h3,
.cid-s9OC16Meul p {
  color: #767676;
}
.cid-s9OC16Meul .mbr-section-subtitle {
  font-style: italic;
}
.cid-s9OC16Meul .mbr-text,
.cid-s9OC16Meul .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-s9OC16Meul H1 {
  color: #ffffff;
}
.cid-s9OC1cnLZA {
  background-image: url("../../../assets/images/img-9345-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1900x94028.jpg");
}
.cid-s9OC1cnLZA h1 {
  color: #616161;
}
.cid-s9OC1cnLZA h2,
.cid-s9OC1cnLZA h3,
.cid-s9OC1cnLZA p {
  color: #767676;
}
.cid-s9OC1cnLZA .mbr-section-subtitle {
  font-style: italic;
}
.cid-s9OC1cnLZA .mbr-text,
.cid-s9OC1cnLZA .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-s9OC1cnLZA H1 {
  color: #ffffff;
}
.cid-s9OC1gIOiG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s9OC1gIOiG .title {
  margin-bottom: 2rem;
}
.cid-s9OC1gIOiG .mbr-section-subtitle {
  color: #767676;
}
.cid-s9OC1gIOiG a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s9OC1gIOiG a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-s9OC1gIOiG textarea.form-control {
  min-height: 188px;
}
.cid-s9OC1m42N8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s9OC1m42N8 .content {
    text-align: center;
  }
  .cid-s9OC1m42N8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9OC1m42N8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s9OC1m42N8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s9OC1m42N8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s9OC1m42N8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s9OC1m42N8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s9OC1m42N8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s9OC1m42N8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s9OC1m42N8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s9OC1m42N8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s9OC1m42N8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s9OC1m42N8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s9OC1m42N8 H5 {
  color: #000000;
}
.cid-s9OC1m42N8 P {
  color: #000000;
}
.cid-s9OC1sT7vc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s9OC1sT7vc .content {
    text-align: center;
  }
  .cid-s9OC1sT7vc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9OC1sT7vc .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s9OC1sT7vc .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s9OC1sT7vc .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s9OC1sT7vc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s9OC1sT7vc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s9OC1sT7vc .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s9OC1sT7vc .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s9OC1sT7vc .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s9OC1sT7vc .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s9OC1sT7vc .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s9OC1sT7vc .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s9OC1sT7vc H5 {
  color: #000000;
}
.cid-s9OC1sT7vc P {
  color: #000000;
}
.cid-sbdg9IPZpT .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sbdg9IPZpT .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sbdg9IPZpT a {
  font-style: normal;
}
.cid-sbdg9IPZpT .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sbdg9IPZpT .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sbdg9IPZpT .nav-item:focus,
.cid-sbdg9IPZpT .nav-link:focus {
  outline: none;
}
.cid-sbdg9IPZpT .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sbdg9IPZpT .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sbdg9IPZpT .menu-logo {
  margin-right: auto;
}
.cid-sbdg9IPZpT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sbdg9IPZpT .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sbdg9IPZpT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sbdg9IPZpT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sbdg9IPZpT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sbdg9IPZpT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sbdg9IPZpT .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sbdg9IPZpT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sbdg9IPZpT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sbdg9IPZpT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sbdg9IPZpT .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sbdg9IPZpT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sbdg9IPZpT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sbdg9IPZpT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sbdg9IPZpT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sbdg9IPZpT .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sbdg9IPZpT .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sbdg9IPZpT .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sbdg9IPZpT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sbdg9IPZpT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sbdg9IPZpT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sbdg9IPZpT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sbdg9IPZpT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sbdg9IPZpT button.navbar-toggler:focus {
  outline: none;
}
.cid-sbdg9IPZpT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sbdg9IPZpT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sbdg9IPZpT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sbdg9IPZpT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sbdg9IPZpT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sbdg9IPZpT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sbdg9IPZpT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sbdg9IPZpT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sbdg9IPZpT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sbdg9IPZpT .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sbdg9IPZpT .collapsed .btn {
  display: flex;
}
.cid-sbdg9IPZpT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sbdg9IPZpT .collapsed .navbar-collapse.collapsing,
.cid-sbdg9IPZpT .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sbdg9IPZpT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sbdg9IPZpT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sbdg9IPZpT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sbdg9IPZpT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sbdg9IPZpT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sbdg9IPZpT .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sbdg9IPZpT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sbdg9IPZpT .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sbdg9IPZpT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sbdg9IPZpT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sbdg9IPZpT .collapsed button.navbar-toggler {
  display: block;
}
.cid-sbdg9IPZpT .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sbdg9IPZpT .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sbdg9IPZpT .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sbdg9IPZpT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sbdg9IPZpT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sbdg9IPZpT .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sbdg9IPZpT .navbar-expand {
    flex-direction: column;
  }
  .cid-sbdg9IPZpT img {
    height: 3.8rem !important;
  }
  .cid-sbdg9IPZpT .btn {
    display: flex;
  }
  .cid-sbdg9IPZpT button.navbar-toggler {
    display: block;
  }
  .cid-sbdg9IPZpT .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sbdg9IPZpT .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sbdg9IPZpT .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sbdg9IPZpT .navbar-collapse.collapsing,
  .cid-sbdg9IPZpT .navbar-collapse.show {
    display: block !important;
  }
  .cid-sbdg9IPZpT .navbar-collapse.collapsing .navbar-nav,
  .cid-sbdg9IPZpT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sbdg9IPZpT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sbdg9IPZpT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sbdg9IPZpT .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sbdg9IPZpT .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sbdg9IPZpT .navbar-collapse.collapsing .navbar-buttons,
  .cid-sbdg9IPZpT .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sbdg9IPZpT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sbdg9IPZpT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sbdg9IPZpT .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sbdg9IPZpT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sbdg9IPZpT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sbdg9IPZpT .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sbdg9IPZpT .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sbdg9IPZpT .navbar-collapse {
  flex-basis: auto;
}
.cid-sbdg9IPZpT .nav-link:hover,
.cid-sbdg9IPZpT .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sbdg9CDTHK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x128024.jpg");
}
.cid-sbdg9CDTHK H1 {
  color: #ffffff;
}
.cid-sbdg9GpGPp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sbdg9GpGPp .title {
  margin-bottom: 2rem;
}
.cid-sbdg9GpGPp .mbr-section-subtitle {
  color: #767676;
}
.cid-sbdg9GpGPp a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sbdg9GpGPp a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sbdg9GpGPp textarea.form-control {
  min-height: 188px;
}
.cid-sbdg9DQJYH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sbdg9DQJYH .mbr-text {
    text-align: center;
  }
}
.cid-sbdg9DQJYH .container-fluid {
  padding: 0;
}
.cid-sbdg9DQJYH .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sbdg9DQJYH img {
  height: 100%;
  object-fit: cover;
}
.cid-sbdg9DQJYH .mbr-figure {
  height: 100%;
}
.cid-sbdg9DQJYH .col-lg-6 {
  padding: 0;
}
.cid-sbdg9DQJYH .row {
  margin: 0;
}
.cid-sbdg9EVlBa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sbdg9EVlBa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sbdg9EVlBa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sbdg9EVlBa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sbdg9EVlBa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sbdg9EVlBa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sbdg9EVlBa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sbdg9EVlBa .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sbdg9EVlBa .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sbdg9EVlBa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sbdg9I52Y4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sbdg9I52Y4 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sbdg9I52Y4 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sbdg9I52Y4 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sbdg9I52Y4 .mbr-figure,
  .cid-sbdg9I52Y4 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sbdg9JJ3Id {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sbdg9JJ3Id .content {
    text-align: center;
  }
  .cid-sbdg9JJ3Id .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sbdg9JJ3Id .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sbdg9JJ3Id .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sbdg9JJ3Id .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sbdg9JJ3Id .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sbdg9JJ3Id .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sbdg9JJ3Id .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sbdg9JJ3Id .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sbdg9JJ3Id .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sbdg9JJ3Id .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sbdg9JJ3Id .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sbdg9JJ3Id .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sbdg9JJ3Id H5 {
  color: #000000;
}
.cid-sbdg9JJ3Id P {
  color: #000000;
}
.cid-t5Vo5qa1tW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5Vo5qa1tW .content {
    text-align: center;
  }
  .cid-t5Vo5qa1tW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5Vo5qa1tW .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5Vo5qa1tW .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5Vo5qa1tW .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5Vo5qa1tW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5Vo5qa1tW .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5Vo5qa1tW .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5Vo5qa1tW .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5Vo5qa1tW .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5Vo5qa1tW .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5Vo5qa1tW .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5Vo5qa1tW .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5Vo5qa1tW H5 {
  color: #000000;
}
.cid-t5Vo5qa1tW P {
  color: #000000;
}
.cid-saRzWoApEJ .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-saRzWoApEJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-saRzWoApEJ a {
  font-style: normal;
}
.cid-saRzWoApEJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-saRzWoApEJ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-saRzWoApEJ .nav-item:focus,
.cid-saRzWoApEJ .nav-link:focus {
  outline: none;
}
.cid-saRzWoApEJ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-saRzWoApEJ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-saRzWoApEJ .menu-logo {
  margin-right: auto;
}
.cid-saRzWoApEJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-saRzWoApEJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-saRzWoApEJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-saRzWoApEJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-saRzWoApEJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-saRzWoApEJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-saRzWoApEJ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-saRzWoApEJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-saRzWoApEJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-saRzWoApEJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-saRzWoApEJ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-saRzWoApEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-saRzWoApEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-saRzWoApEJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-saRzWoApEJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-saRzWoApEJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-saRzWoApEJ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-saRzWoApEJ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-saRzWoApEJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-saRzWoApEJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-saRzWoApEJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-saRzWoApEJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-saRzWoApEJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-saRzWoApEJ button.navbar-toggler:focus {
  outline: none;
}
.cid-saRzWoApEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-saRzWoApEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-saRzWoApEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-saRzWoApEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-saRzWoApEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-saRzWoApEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-saRzWoApEJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-saRzWoApEJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-saRzWoApEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-saRzWoApEJ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-saRzWoApEJ .collapsed .btn {
  display: flex;
}
.cid-saRzWoApEJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-saRzWoApEJ .collapsed .navbar-collapse.collapsing,
.cid-saRzWoApEJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-saRzWoApEJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-saRzWoApEJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-saRzWoApEJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-saRzWoApEJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-saRzWoApEJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-saRzWoApEJ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-saRzWoApEJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-saRzWoApEJ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-saRzWoApEJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-saRzWoApEJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-saRzWoApEJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-saRzWoApEJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-saRzWoApEJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-saRzWoApEJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-saRzWoApEJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-saRzWoApEJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-saRzWoApEJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-saRzWoApEJ .navbar-expand {
    flex-direction: column;
  }
  .cid-saRzWoApEJ img {
    height: 3.8rem !important;
  }
  .cid-saRzWoApEJ .btn {
    display: flex;
  }
  .cid-saRzWoApEJ button.navbar-toggler {
    display: block;
  }
  .cid-saRzWoApEJ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-saRzWoApEJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-saRzWoApEJ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-saRzWoApEJ .navbar-collapse.collapsing,
  .cid-saRzWoApEJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-saRzWoApEJ .navbar-collapse.collapsing .navbar-nav,
  .cid-saRzWoApEJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-saRzWoApEJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-saRzWoApEJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-saRzWoApEJ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-saRzWoApEJ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-saRzWoApEJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-saRzWoApEJ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-saRzWoApEJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-saRzWoApEJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-saRzWoApEJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-saRzWoApEJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-saRzWoApEJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-saRzWoApEJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-saRzWoApEJ .menu-logo {
    flex-shrink: 0;
  }
}
.cid-saRzWoApEJ .navbar-collapse {
  flex-basis: auto;
}
.cid-saRzWoApEJ .nav-link:hover,
.cid-saRzWoApEJ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-saRzW57uqM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x128024.jpg");
}
.cid-saRzW57uqM H1 {
  color: #ffffff;
}
.cid-saRzWcVgtr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-saRzWcVgtr .mbr-text {
    text-align: center;
  }
}
.cid-saRzWcVgtr .container-fluid {
  padding: 0;
}
.cid-saRzWcVgtr .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-saRzWcVgtr img {
  height: 100%;
  object-fit: cover;
}
.cid-saRzWcVgtr .mbr-figure {
  height: 100%;
}
.cid-saRzWcVgtr .col-lg-6 {
  padding: 0;
}
.cid-saRzWcVgtr .row {
  margin: 0;
}
.cid-saRzWhMuGF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saRzWhMuGF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-saRzWhMuGF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-saRzWhMuGF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-saRzWhMuGF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-saRzWhMuGF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-saRzWhMuGF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-saRzWhMuGF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-saRzWhMuGF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-saRzWhMuGF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-saRAd2SITj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-saRAd2SITj .title {
  margin-bottom: 2rem;
}
.cid-saRAd2SITj .mbr-section-subtitle {
  color: #767676;
}
.cid-saRAd2SITj a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-saRAd2SITj a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-saRAd2SITj textarea.form-control {
  min-height: 188px;
}
.cid-saRzWk6zcv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-saRzWk6zcv .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-saRzWk6zcv .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-saRzWk6zcv .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-saRzWk6zcv .mbr-figure,
  .cid-saRzWk6zcv img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-saRzWqHjVs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-saRzWqHjVs .content {
    text-align: center;
  }
  .cid-saRzWqHjVs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-saRzWqHjVs .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-saRzWqHjVs .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-saRzWqHjVs .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-saRzWqHjVs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-saRzWqHjVs .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-saRzWqHjVs .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-saRzWqHjVs .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-saRzWqHjVs .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-saRzWqHjVs .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-saRzWqHjVs .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-saRzWqHjVs .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-saRzWqHjVs H5 {
  color: #000000;
}
.cid-saRzWqHjVs P {
  color: #000000;
}
.cid-t5VocqE5fr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VocqE5fr .content {
    text-align: center;
  }
  .cid-t5VocqE5fr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VocqE5fr .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VocqE5fr .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VocqE5fr .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VocqE5fr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VocqE5fr .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VocqE5fr .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VocqE5fr .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VocqE5fr .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VocqE5fr .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VocqE5fr .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VocqE5fr .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VocqE5fr H5 {
  color: #000000;
}
.cid-t5VocqE5fr P {
  color: #000000;
}
.cid-s9OUviR8lI .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-s9OUviR8lI .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s9OUviR8lI a {
  font-style: normal;
}
.cid-s9OUviR8lI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-s9OUviR8lI .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-s9OUviR8lI .nav-item:focus,
.cid-s9OUviR8lI .nav-link:focus {
  outline: none;
}
.cid-s9OUviR8lI .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-s9OUviR8lI .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-s9OUviR8lI .menu-logo {
  margin-right: auto;
}
.cid-s9OUviR8lI .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-s9OUviR8lI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s9OUviR8lI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s9OUviR8lI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s9OUviR8lI .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s9OUviR8lI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s9OUviR8lI .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-s9OUviR8lI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-s9OUviR8lI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s9OUviR8lI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s9OUviR8lI .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-s9OUviR8lI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-s9OUviR8lI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s9OUviR8lI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s9OUviR8lI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s9OUviR8lI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-s9OUviR8lI .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s9OUviR8lI .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-s9OUviR8lI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s9OUviR8lI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s9OUviR8lI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s9OUviR8lI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s9OUviR8lI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-s9OUviR8lI button.navbar-toggler:focus {
  outline: none;
}
.cid-s9OUviR8lI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s9OUviR8lI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s9OUviR8lI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s9OUviR8lI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s9OUviR8lI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s9OUviR8lI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9OUviR8lI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s9OUviR8lI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s9OUviR8lI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s9OUviR8lI .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-s9OUviR8lI .collapsed .btn {
  display: flex;
}
.cid-s9OUviR8lI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s9OUviR8lI .collapsed .navbar-collapse.collapsing,
.cid-s9OUviR8lI .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s9OUviR8lI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s9OUviR8lI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s9OUviR8lI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s9OUviR8lI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s9OUviR8lI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-s9OUviR8lI .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-s9OUviR8lI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s9OUviR8lI .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s9OUviR8lI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s9OUviR8lI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-s9OUviR8lI .collapsed button.navbar-toggler {
  display: block;
}
.cid-s9OUviR8lI .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-s9OUviR8lI .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-s9OUviR8lI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-s9OUviR8lI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s9OUviR8lI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s9OUviR8lI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-s9OUviR8lI .navbar-expand {
    flex-direction: column;
  }
  .cid-s9OUviR8lI img {
    height: 3.8rem !important;
  }
  .cid-s9OUviR8lI .btn {
    display: flex;
  }
  .cid-s9OUviR8lI button.navbar-toggler {
    display: block;
  }
  .cid-s9OUviR8lI .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-s9OUviR8lI .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-s9OUviR8lI .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s9OUviR8lI .navbar-collapse.collapsing,
  .cid-s9OUviR8lI .navbar-collapse.show {
    display: block !important;
  }
  .cid-s9OUviR8lI .navbar-collapse.collapsing .navbar-nav,
  .cid-s9OUviR8lI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s9OUviR8lI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s9OUviR8lI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-s9OUviR8lI .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-s9OUviR8lI .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-s9OUviR8lI .navbar-collapse.collapsing .navbar-buttons,
  .cid-s9OUviR8lI .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s9OUviR8lI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s9OUviR8lI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s9OUviR8lI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-s9OUviR8lI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s9OUviR8lI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s9OUviR8lI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-s9OUviR8lI .menu-logo {
    flex-shrink: 0;
  }
}
.cid-s9OUviR8lI .navbar-collapse {
  flex-basis: auto;
}
.cid-s9OUviR8lI .nav-link:hover,
.cid-s9OUviR8lI .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-s9OUvorV7C {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x128024.jpg");
}
.cid-s9OUvorV7C H1 {
  color: #ffffff;
}
.cid-s9ZTKC98xK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-s9ZTKC98xK .mbr-text {
    text-align: center;
  }
}
.cid-s9ZTKC98xK .container-fluid {
  padding: 0;
}
.cid-s9ZTKC98xK .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-s9ZTKC98xK img {
  height: 100%;
  object-fit: cover;
}
.cid-s9ZTKC98xK .mbr-figure {
  height: 100%;
}
.cid-s9ZTKC98xK .col-lg-6 {
  padding: 0;
}
.cid-s9ZTKC98xK .row {
  margin: 0;
}
.cid-sa05LFs8K1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sa05LFs8K1 h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-sa05LFs8K1 .mbr-section-subtitle {
  color: #767676;
}
.cid-sa05LFs8K1 .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .cid-sa05LFs8K1 .article-right-border {
    border-right: 2px dotted #e2e2e2;
  }
}
.cid-sa05LFs8K1 .mbr-text-right {
  color: #767676;
}
.cid-sa0dZMBUi7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-saAvkgRKa8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saAvkgRKa8 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-saAvkgRKa8 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-saAvkgRKa8 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-saAvkgRKa8 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-saAvkgRKa8 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-saAvkgRKa8 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-saAvkgRKa8 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-saAvkgRKa8 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-saAvkgRKa8 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sIZ48Vt7lt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sIZ48Vt7lt .mbr-text {
    text-align: center;
  }
}
.cid-sIZ48Vt7lt .container-fluid {
  padding: 0;
}
.cid-sIZ48Vt7lt .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sIZ48Vt7lt img {
  height: 100%;
  object-fit: cover;
}
.cid-sIZ48Vt7lt .mbr-figure {
  height: 100%;
}
.cid-sIZ48Vt7lt .col-lg-6 {
  padding: 0;
}
.cid-sIZ48Vt7lt .row {
  margin: 0;
}
.cid-t8g2iV2ZBt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-t8g2iV2ZBt .mbr-text {
    text-align: center;
  }
}
.cid-t8g2iV2ZBt .container-fluid {
  padding: 0;
}
.cid-t8g2iV2ZBt .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-t8g2iV2ZBt img {
  height: 100%;
  object-fit: cover;
}
.cid-t8g2iV2ZBt .mbr-figure {
  height: 100%;
}
.cid-t8g2iV2ZBt .col-lg-6 {
  padding: 0;
}
.cid-t8g2iV2ZBt .row {
  margin: 0;
}
.cid-sRG14Sz5JF {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRG14Sz5JF .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRG14Sz5JF .social-list a:focus {
  text-decoration: none;
}
.cid-sBaGUnZbpQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sBaGUnZbpQ .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sBaGUnZbpQ .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sBaGUnZbpQ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sBaGUnZbpQ .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sBaGUnZbpQ .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sBaGUnZbpQ .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sBaGUnZbpQ .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sBaGUnZbpQ .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sBaGUnZbpQ .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sBaGUnZbpQ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sBaGUnZbpQ .plan-title {
  color: #9933cc;
}
.cid-sa0QtI7A1a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sa0QtI7A1a .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sa0QtI7A1a .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sa0QtI7A1a .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sa0QtI7A1a .mbr-figure,
  .cid-sa0QtI7A1a img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-s9OUvc8Kyx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s9OUvc8Kyx .title {
  margin-bottom: 2rem;
}
.cid-s9OUvc8Kyx .mbr-section-subtitle {
  color: #767676;
}
.cid-s9OUvc8Kyx a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-s9OUvc8Kyx a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-s9OUvc8Kyx textarea.form-control {
  min-height: 188px;
}
.cid-s9OUvQ1cGC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s9OUvQ1cGC .content {
    text-align: center;
  }
  .cid-s9OUvQ1cGC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-s9OUvQ1cGC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s9OUvQ1cGC .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s9OUvQ1cGC .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s9OUvQ1cGC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s9OUvQ1cGC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s9OUvQ1cGC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s9OUvQ1cGC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s9OUvQ1cGC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s9OUvQ1cGC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s9OUvQ1cGC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s9OUvQ1cGC .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s9OUvQ1cGC H5 {
  color: #000000;
}
.cid-s9OUvQ1cGC P {
  color: #000000;
}
.cid-t5VnRB61k4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VnRB61k4 .content {
    text-align: center;
  }
  .cid-t5VnRB61k4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VnRB61k4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VnRB61k4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VnRB61k4 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VnRB61k4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VnRB61k4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VnRB61k4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VnRB61k4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VnRB61k4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VnRB61k4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VnRB61k4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VnRB61k4 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VnRB61k4 H5 {
  color: #000000;
}
.cid-t5VnRB61k4 P {
  color: #000000;
}
.cid-rzTqolOTED .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rzTqolOTED .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rzTqolOTED a {
  font-style: normal;
}
.cid-rzTqolOTED .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rzTqolOTED .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rzTqolOTED .nav-item:focus,
.cid-rzTqolOTED .nav-link:focus {
  outline: none;
}
.cid-rzTqolOTED .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rzTqolOTED .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rzTqolOTED .menu-logo {
  margin-right: auto;
}
.cid-rzTqolOTED .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rzTqolOTED .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rzTqolOTED .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rzTqolOTED .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rzTqolOTED .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rzTqolOTED .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rzTqolOTED .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rzTqolOTED .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rzTqolOTED .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzTqolOTED .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rzTqolOTED .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rzTqolOTED .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rzTqolOTED .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rzTqolOTED .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rzTqolOTED .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzTqolOTED .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rzTqolOTED .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rzTqolOTED .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rzTqolOTED .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rzTqolOTED .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rzTqolOTED .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rzTqolOTED .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rzTqolOTED button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rzTqolOTED button.navbar-toggler:focus {
  outline: none;
}
.cid-rzTqolOTED button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzTqolOTED button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzTqolOTED button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzTqolOTED button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzTqolOTED button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzTqolOTED nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzTqolOTED nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzTqolOTED nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzTqolOTED nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzTqolOTED .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rzTqolOTED .collapsed .btn {
  display: flex;
}
.cid-rzTqolOTED .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rzTqolOTED .collapsed .navbar-collapse.collapsing,
.cid-rzTqolOTED .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rzTqolOTED .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rzTqolOTED .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rzTqolOTED .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rzTqolOTED .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rzTqolOTED .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rzTqolOTED .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rzTqolOTED .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rzTqolOTED .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rzTqolOTED .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rzTqolOTED .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rzTqolOTED .collapsed button.navbar-toggler {
  display: block;
}
.cid-rzTqolOTED .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rzTqolOTED .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rzTqolOTED .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rzTqolOTED .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rzTqolOTED .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rzTqolOTED .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rzTqolOTED .navbar-expand {
    flex-direction: column;
  }
  .cid-rzTqolOTED img {
    height: 3.8rem !important;
  }
  .cid-rzTqolOTED .btn {
    display: flex;
  }
  .cid-rzTqolOTED button.navbar-toggler {
    display: block;
  }
  .cid-rzTqolOTED .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rzTqolOTED .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rzTqolOTED .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rzTqolOTED .navbar-collapse.collapsing,
  .cid-rzTqolOTED .navbar-collapse.show {
    display: block !important;
  }
  .cid-rzTqolOTED .navbar-collapse.collapsing .navbar-nav,
  .cid-rzTqolOTED .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rzTqolOTED .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rzTqolOTED .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rzTqolOTED .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rzTqolOTED .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rzTqolOTED .navbar-collapse.collapsing .navbar-buttons,
  .cid-rzTqolOTED .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rzTqolOTED .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rzTqolOTED .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rzTqolOTED .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rzTqolOTED .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rzTqolOTED .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rzTqolOTED .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rzTqolOTED .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rzTqolOTED .navbar-collapse {
  flex-basis: auto;
}
.cid-rzTqolOTED .nav-link:hover,
.cid-rzTqolOTED .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-rzTtUbk5r5 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rzTtUbk5r5 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-rzTtUbk5r5 .step {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border-radius: 50%;
  border: 2px solid #efefef;
}
@media (max-width: 767px) {
  .cid-rzTtUbk5r5 .step {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.cid-rzTtUbk5r5 .separline {
  position: relative;
}
.cid-rzTtUbk5r5 .separline:after {
  top: 68px;
  left: 30px;
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - (32px + 4px) * 2);
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-rzTtUbk5r5 .separline:after {
    top: 52px;
    left: 22px;
    height: calc(100% - 56px);
  }
}
.cid-rzTqoDDYoB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rzTqoDDYoB .title {
  margin-bottom: 2rem;
}
.cid-rzTqoDDYoB .mbr-section-subtitle {
  color: #767676;
}
.cid-rzTqoDDYoB a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rzTqoDDYoB a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-rzTqoDDYoB textarea.form-control {
  min-height: 188px;
}
.cid-rDvjyjLMI2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rDvjyjLMI2 .content {
    text-align: center;
  }
  .cid-rDvjyjLMI2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDvjyjLMI2 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rDvjyjLMI2 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rDvjyjLMI2 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rDvjyjLMI2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rDvjyjLMI2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rDvjyjLMI2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rDvjyjLMI2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rDvjyjLMI2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rDvjyjLMI2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rDvjyjLMI2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDvjyjLMI2 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rDvjyjLMI2 H5 {
  color: #000000;
}
.cid-rDvjyjLMI2 P {
  color: #000000;
}
.cid-rDvjA1CHtO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rDvjA1CHtO .content {
    text-align: center;
  }
  .cid-rDvjA1CHtO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rDvjA1CHtO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rDvjA1CHtO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rDvjA1CHtO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rDvjA1CHtO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rDvjA1CHtO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rDvjA1CHtO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rDvjA1CHtO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rDvjA1CHtO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rDvjA1CHtO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rDvjA1CHtO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rDvjA1CHtO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rDvjA1CHtO H5 {
  color: #000000;
}
.cid-rDvjA1CHtO P {
  color: #000000;
}
.cid-qTkzRZLJNu .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3.8rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sISDqjcRDF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/laurent-fery-conseiller-immobilier-presentation-de-mise-en-valeur-dun-appartement-a-paris-18-pres-de-montmartre-pour-particuliers.jpg");
}
.cid-sISDqjcRDF .container-fluid {
  padding: 0 3rem;
}
.cid-sISDqjcRDF .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-sISDqjcRDF .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sISDqjcRDF .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sISDqjcRDF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sISDqjcRDF .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sISDqjcRDF a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sISDqjcRDF a.close:hover {
  color: #ffffff;
}
.cid-sISDqjcRDF svg {
  transition: all 0.5s ease-in;
}
.cid-sISDqjcRDF svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-sISDqjcRDF svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-sISDqjcRDF svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sISDqjcRDF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sISDqjcRDF .icon-description,
.cid-sISDqjcRDF .mbr-media {
  color: #80713a;
}
.cid-sISDqjcRDF H1 {
  color: #80713a;
}
.cid-sISDqjcRDF .mbr-text,
.cid-sISDqjcRDF .mbr-section-btn {
  color: #80713a;
}
.cid-sISCEep7Cl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sISCEep7Cl .mbr-text {
    text-align: center;
  }
}
.cid-sISCEep7Cl .container-fluid {
  padding: 0;
}
.cid-sISCEep7Cl .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sISCEep7Cl img {
  height: 100%;
  object-fit: cover;
}
.cid-sISCEep7Cl .mbr-figure {
  height: 100%;
}
.cid-sISCEep7Cl .col-lg-6 {
  padding: 0;
}
.cid-sISCEep7Cl .row {
  margin: 0;
}
.cid-sIZ21Ngjrc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sIZ21Ngjrc .mbr-text {
    text-align: center;
  }
}
.cid-sIZ21Ngjrc .container-fluid {
  padding: 0;
}
.cid-sIZ21Ngjrc .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sIZ21Ngjrc img {
  height: 100%;
  object-fit: cover;
}
.cid-sIZ21Ngjrc .mbr-figure {
  height: 100%;
}
.cid-sIZ21Ngjrc .col-lg-6 {
  padding: 0;
}
.cid-sIZ21Ngjrc .row {
  margin: 0;
}
.cid-sRzbCtaRI8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-sRzbCtaRI8 .container {
    padding: 1rem;
  }
}
.cid-sRzbCtaRI8 .card-box {
  padding: 0 2rem;
}
.cid-sRzbCtaRI8 .card {
  padding: 0!important;
}
.cid-sRzbCtaRI8 .mbr-section-btn {
  padding-top: 2rem;
}
.cid-sRzbCtaRI8 .container-fluid {
  padding: 0;
}
.cid-sRzbCtaRI8 .card1 {
  background-image: url("../../../assets/images/img-33967-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1-1619x108012.jpeg");
}
.cid-sRzbCtaRI8 .card2 {
  background-image: url("../../../assets/images/img-56603-lr-raw-srvb-approuved-hd-laure-weise-comedienne-laurentferry-com-all-rights-reserved-ask-before-use-2-1919x1280.jpeg");
}
.cid-sRzbCtaRI8 .card3 {
  background-image: url("../../../assets/images/20200719-img-60601-nikky-doualle-first-shoot-paris-16-laurent-ferry-photography-laurent-ferry-photography-940-height-1.jpeg");
}
.cid-sRzbCtaRI8 .card4 {
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x1280.jpeg");
}
.cid-sRzbCtaRI8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sRzbCtaRI8 p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sRzbCtaRI8 .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-sRzbCtaRI8 .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-sRzbCtaRI8 .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-sRzbGK4gxH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-sRzbGK4gxH .container {
    padding: 1rem;
  }
}
.cid-sRzbGK4gxH .card-box {
  padding: 0 2rem;
}
.cid-sRzbGK4gxH .card {
  padding: 0!important;
}
.cid-sRzbGK4gxH .mbr-section-btn {
  padding-top: 2rem;
}
.cid-sRzbGK4gxH .container-fluid {
  padding: 0;
}
.cid-sRzbGK4gxH .card1 {
  background-image: url("../../../assets/images/img-33967-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1-1619x108012.jpeg");
}
.cid-sRzbGK4gxH .card2 {
  background-image: url("../../../assets/images/img-56603-lr-raw-srvb-approuved-hd-laure-weise-comedienne-laurentferry-com-all-rights-reserved-ask-before-use-2-1919x1280.jpeg");
}
.cid-sRzbGK4gxH .card3 {
  background-image: url("../../../assets/images/20200719-img-60601-nikky-doualle-first-shoot-paris-16-laurent-ferry-photography-laurent-ferry-photography-940-height-1.jpeg");
}
.cid-sRzbGK4gxH .card4 {
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x1280.jpeg");
}
.cid-sRzbGK4gxH h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sRzbGK4gxH p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-sRzbGK4gxH .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-sRzbGK4gxH .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-sRzbGK4gxH .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-sRESHyLWO6 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sRESHyLWO6 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sRESHyLWO6 a {
  font-style: normal;
}
.cid-sRESHyLWO6 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sRESHyLWO6 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sRESHyLWO6 .nav-item:focus,
.cid-sRESHyLWO6 .nav-link:focus {
  outline: none;
}
.cid-sRESHyLWO6 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sRESHyLWO6 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sRESHyLWO6 .menu-logo {
  margin-right: auto;
}
.cid-sRESHyLWO6 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sRESHyLWO6 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sRESHyLWO6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sRESHyLWO6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sRESHyLWO6 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sRESHyLWO6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sRESHyLWO6 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sRESHyLWO6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sRESHyLWO6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRESHyLWO6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sRESHyLWO6 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sRESHyLWO6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sRESHyLWO6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRESHyLWO6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sRESHyLWO6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRESHyLWO6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sRESHyLWO6 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sRESHyLWO6 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sRESHyLWO6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sRESHyLWO6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sRESHyLWO6 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sRESHyLWO6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sRESHyLWO6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sRESHyLWO6 button.navbar-toggler:focus {
  outline: none;
}
.cid-sRESHyLWO6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRESHyLWO6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sRESHyLWO6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sRESHyLWO6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sRESHyLWO6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sRESHyLWO6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRESHyLWO6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sRESHyLWO6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sRESHyLWO6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRESHyLWO6 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sRESHyLWO6 .collapsed .btn {
  display: flex;
}
.cid-sRESHyLWO6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sRESHyLWO6 .collapsed .navbar-collapse.collapsing,
.cid-sRESHyLWO6 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sRESHyLWO6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sRESHyLWO6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sRESHyLWO6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sRESHyLWO6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sRESHyLWO6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sRESHyLWO6 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sRESHyLWO6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sRESHyLWO6 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sRESHyLWO6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sRESHyLWO6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sRESHyLWO6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sRESHyLWO6 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sRESHyLWO6 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sRESHyLWO6 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sRESHyLWO6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sRESHyLWO6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sRESHyLWO6 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sRESHyLWO6 .navbar-expand {
    flex-direction: column;
  }
  .cid-sRESHyLWO6 img {
    height: 3.8rem !important;
  }
  .cid-sRESHyLWO6 .btn {
    display: flex;
  }
  .cid-sRESHyLWO6 button.navbar-toggler {
    display: block;
  }
  .cid-sRESHyLWO6 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sRESHyLWO6 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sRESHyLWO6 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sRESHyLWO6 .navbar-collapse.collapsing,
  .cid-sRESHyLWO6 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sRESHyLWO6 .navbar-collapse.collapsing .navbar-nav,
  .cid-sRESHyLWO6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sRESHyLWO6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sRESHyLWO6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sRESHyLWO6 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sRESHyLWO6 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRESHyLWO6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sRESHyLWO6 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sRESHyLWO6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sRESHyLWO6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRESHyLWO6 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sRESHyLWO6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sRESHyLWO6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sRESHyLWO6 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sRESHyLWO6 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sRESHyLWO6 .navbar-collapse {
  flex-basis: auto;
}
.cid-sRESHyLWO6 .nav-link:hover,
.cid-sRESHyLWO6 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sRESHwIgVc .modal-body .close {
  background: #1b1b1b;
}
.cid-sRESHwIgVc .modal-body .close span {
  font-style: normal;
}
.cid-sRESHwIgVc .carousel-inner > .active,
.cid-sRESHwIgVc .carousel-inner > .next,
.cid-sRESHwIgVc .carousel-inner > .prev {
  display: table;
}
.cid-sRESHwIgVc .carousel-control .icon-next,
.cid-sRESHwIgVc .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sRESHwIgVc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRESHwIgVc .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRESHwIgVc .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sRESHwIgVc .boxed-slider > div {
  position: relative;
}
.cid-sRESHwIgVc .container img {
  width: 100%;
}
.cid-sRESHwIgVc .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sRESHwIgVc .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sRESHwIgVc .mbr-table-cell {
  padding: 0;
}
.cid-sRESHwIgVc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sRESHwIgVc .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sRESHwIgVc .mbr-overlay {
  z-index: 1;
}
.cid-sRESHwIgVc .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sRESHwIgVc .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sRESHwIgVc .carousel-item .container {
    width: 100%;
  }
}
.cid-sRESHwIgVc .carousel-item-next.carousel-item-left,
.cid-sRESHwIgVc .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sRESHwIgVc .active.carousel-item-right,
.cid-sRESHwIgVc .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sRESHwIgVc .active.carousel-item-left,
.cid-sRESHwIgVc .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sRESHwIgVc .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sRESHwIgVc .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRESHwIgVc .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sRESHwIgVc .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sRESHwIgVc .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sRESHwIgVc .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sRESHwIgVc .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sRESHwIgVc .mbr-slider .carousel-indicators li.active,
.cid-sRESHwIgVc .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sRESHwIgVc .mbr-slider .carousel-indicators li::after,
.cid-sRESHwIgVc .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sRESHwIgVc .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sRESHwIgVc .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sRESHwIgVc .mbr-slider > .container img {
  width: 100%;
}
.cid-sRESHwIgVc .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sRESHwIgVc .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sRESHwIgVc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRESHwIgVc .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sRESHwIgVc .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sRESHwIgVc .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sRESHwIgVc .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sRESHwIgVc .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sRESHwIgVc .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sRESHwIgVc .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sRESHwIgVc .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sRESHwIgVc .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sRESHwIgVc .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sRESHwIgVc H2 {
  text-align: left;
  color: #ffffff;
}
.cid-sRESHwIgVc P {
  text-align: left;
  color: #ffffff;
}
.cid-sREWO6BZsT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sREWO6BZsT .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sREWO6BZsT .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sREWO6BZsT .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sREWO6BZsT .mbr-figure,
  .cid-sREWO6BZsT img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-txPILqSDi3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-txPILqSDi3 .mbr-text {
    text-align: center;
  }
}
.cid-txPILqSDi3 .container-fluid {
  padding: 0;
}
.cid-txPILqSDi3 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-txPILqSDi3 img {
  height: 100%;
  object-fit: cover;
}
.cid-txPILqSDi3 .mbr-figure {
  height: 100%;
}
.cid-txPILqSDi3 .col-lg-6 {
  padding: 0;
}
.cid-txPILqSDi3 .row {
  margin: 0;
}
.cid-sRFZDAUZb4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRFZDAUZb4 .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRFZDAUZb4 .social-list a:focus {
  text-decoration: none;
}
.cid-sRFJCAizle {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-sRFJCAizle .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-sRFJCAizle .mbr-text {
  color: #cccccc;
}
.cid-sRFJCAizle .border-r {
  border-right: 1px solid #656565;
}
.cid-sRFJCAizle p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sRFJCAizle .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-sRFJCAizle .card {
    margin-bottom: 2rem;
  }
}
.cid-sRFeJsVLQ1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sRFeJsVLQ1 .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sRFeJsVLQ1 .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sRFeJsVLQ1 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sRFeJsVLQ1 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sRFeJsVLQ1 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sRFeJsVLQ1 .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sRFeJsVLQ1 .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sRFeJsVLQ1 .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sRFeJsVLQ1 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sRFeJsVLQ1 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sRFeJsVLQ1 .plan-title {
  color: #9933cc;
}
.cid-sRESHDsJP2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sRESHDsJP2 .box1 {
  background-image: url("../../../assets/images/laurent-ferry-photographe-immobilier-paris-videaste-immobilier-duplex-appartement-video-immobiliere-horizontale.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-sRESHDsJP2 .box2 {
  background-image: url("../../../assets/images/laurent-ferry-photographe-immobilier-paris-videaste-immobilier-maison-appartement-video-immobiliere-horizontale.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-sRESHDsJP2 .icon-wrap {
  background-color: #149dcc !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sRESHDsJP2 .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sRESHDsJP2 .icon-wrap span {
  padding-left: 8px;
}
.cid-sRESHDsJP2 .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sRESHDsJP2 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sRESHDsJP2 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sRESHDsJP2 .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-sRESHDsJP2 .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sRESHDsJP2 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sRESHDsJP2 a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sRESHDsJP2 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-sRESHDsJP2 .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sRESHDsJP2 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-sRESHDsJP2 .box1,
  .cid-sRESHDsJP2 .box2 {
    height: 250px;
  }
}
.cid-uYHA2Zn0yf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uYHA2Zn0yf .mbr-section-subtitle {
  color: #767676;
}
.cid-sRESHEtKss {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sRESHEtKss .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sRESHEtKss .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sRESHEtKss .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sRESHEtKss .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sRESHEtKss .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sRESHEtKss .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sRESHEtKss .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sRESHEtKss .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sRESHEtKss .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sRESHEtKss .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sRESHEtKss .plan-title {
  color: #9933cc;
}
.cid-sRESHG3g85 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sRESHG3g85 .title {
  margin-bottom: 2rem;
}
.cid-sRESHG3g85 .mbr-section-subtitle {
  color: #767676;
}
.cid-sRESHG3g85 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sRESHG3g85 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sRESHG3g85 textarea.form-control {
  min-height: 188px;
}
.cid-sRESHHNn43 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sRESHHNn43 .content {
    text-align: center;
  }
  .cid-sRESHHNn43 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sRESHHNn43 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sRESHHNn43 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sRESHHNn43 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sRESHHNn43 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sRESHHNn43 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sRESHHNn43 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sRESHHNn43 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sRESHHNn43 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sRESHHNn43 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sRESHHNn43 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRESHHNn43 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sRESHHNn43 H5 {
  color: #000000;
}
.cid-sRESHHNn43 P {
  color: #000000;
}
.cid-t5Vox7JP46 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5Vox7JP46 .content {
    text-align: center;
  }
  .cid-t5Vox7JP46 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5Vox7JP46 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5Vox7JP46 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5Vox7JP46 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5Vox7JP46 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5Vox7JP46 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5Vox7JP46 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5Vox7JP46 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5Vox7JP46 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5Vox7JP46 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5Vox7JP46 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5Vox7JP46 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5Vox7JP46 H5 {
  color: #000000;
}
.cid-t5Vox7JP46 P {
  color: #000000;
}
.cid-sREXL4hb6b .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sREXL4hb6b .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sREXL4hb6b a {
  font-style: normal;
}
.cid-sREXL4hb6b .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sREXL4hb6b .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sREXL4hb6b .nav-item:focus,
.cid-sREXL4hb6b .nav-link:focus {
  outline: none;
}
.cid-sREXL4hb6b .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sREXL4hb6b .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sREXL4hb6b .menu-logo {
  margin-right: auto;
}
.cid-sREXL4hb6b .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sREXL4hb6b .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sREXL4hb6b .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sREXL4hb6b .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sREXL4hb6b .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sREXL4hb6b .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sREXL4hb6b .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sREXL4hb6b .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sREXL4hb6b .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sREXL4hb6b .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sREXL4hb6b .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sREXL4hb6b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sREXL4hb6b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sREXL4hb6b .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sREXL4hb6b .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sREXL4hb6b .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sREXL4hb6b .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sREXL4hb6b .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sREXL4hb6b .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sREXL4hb6b .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sREXL4hb6b .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sREXL4hb6b .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sREXL4hb6b button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sREXL4hb6b button.navbar-toggler:focus {
  outline: none;
}
.cid-sREXL4hb6b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sREXL4hb6b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sREXL4hb6b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sREXL4hb6b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sREXL4hb6b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sREXL4hb6b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sREXL4hb6b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sREXL4hb6b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sREXL4hb6b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sREXL4hb6b .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sREXL4hb6b .collapsed .btn {
  display: flex;
}
.cid-sREXL4hb6b .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sREXL4hb6b .collapsed .navbar-collapse.collapsing,
.cid-sREXL4hb6b .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sREXL4hb6b .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sREXL4hb6b .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sREXL4hb6b .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sREXL4hb6b .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sREXL4hb6b .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sREXL4hb6b .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sREXL4hb6b .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sREXL4hb6b .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sREXL4hb6b .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sREXL4hb6b .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sREXL4hb6b .collapsed button.navbar-toggler {
  display: block;
}
.cid-sREXL4hb6b .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sREXL4hb6b .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sREXL4hb6b .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sREXL4hb6b .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sREXL4hb6b .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sREXL4hb6b .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sREXL4hb6b .navbar-expand {
    flex-direction: column;
  }
  .cid-sREXL4hb6b img {
    height: 3.8rem !important;
  }
  .cid-sREXL4hb6b .btn {
    display: flex;
  }
  .cid-sREXL4hb6b button.navbar-toggler {
    display: block;
  }
  .cid-sREXL4hb6b .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sREXL4hb6b .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sREXL4hb6b .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sREXL4hb6b .navbar-collapse.collapsing,
  .cid-sREXL4hb6b .navbar-collapse.show {
    display: block !important;
  }
  .cid-sREXL4hb6b .navbar-collapse.collapsing .navbar-nav,
  .cid-sREXL4hb6b .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sREXL4hb6b .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sREXL4hb6b .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sREXL4hb6b .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sREXL4hb6b .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sREXL4hb6b .navbar-collapse.collapsing .navbar-buttons,
  .cid-sREXL4hb6b .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sREXL4hb6b .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sREXL4hb6b .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sREXL4hb6b .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sREXL4hb6b .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sREXL4hb6b .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sREXL4hb6b .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sREXL4hb6b .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sREXL4hb6b .navbar-collapse {
  flex-basis: auto;
}
.cid-sREXL4hb6b .nav-link:hover,
.cid-sREXL4hb6b .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-t8VJmS8J0C {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t8VJmS8J0C .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t8VJmS8J0C .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8VJmS8J0C .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8VJmS8J0C .title {
  padding: 0 2rem;
}
.cid-t8VJmS8J0C .container {
  padding: 0 1rem;
}
.cid-t8VJmS8J0C .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-t8VJmS8J0C .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-t8VJmS8J0C .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t8VJmS8J0C .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t8VJmS8J0C .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-t8VJmS8J0C .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-t8VJmS8J0C .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-t8VJmS8J0C .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t8VJmS8J0C .icon-focus {
  display: none;
}
.cid-t8VJmS8J0C .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-t8VJmS8J0C .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-t8VJmS8J0C li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-t8VJmS8J0C li {
  position: relative;
}
.cid-t8VJmS8J0C .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-t8VJmS8J0C .btn {
  font-family: Rubik !important;
}
.cid-t8VJmS8J0C .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-t8VJmS8J0C .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8VJmS8J0C li:not(:last-child):after {
    top: 9px;
  }
  .cid-t8VJmS8J0C .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-t8VJmS8J0C .container {
    padding: 0rem 0.5rem;
  }
  .cid-t8VJmS8J0C .title {
    padding: 0 1rem;
  }
}
.cid-t8VJmS8J0C H2 {
  color: #000000;
}
.cid-sREXL2h7LM .modal-body .close {
  background: #1b1b1b;
}
.cid-sREXL2h7LM .modal-body .close span {
  font-style: normal;
}
.cid-sREXL2h7LM .carousel-inner > .active,
.cid-sREXL2h7LM .carousel-inner > .next,
.cid-sREXL2h7LM .carousel-inner > .prev {
  display: table;
}
.cid-sREXL2h7LM .carousel-control .icon-next,
.cid-sREXL2h7LM .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sREXL2h7LM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sREXL2h7LM .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sREXL2h7LM .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sREXL2h7LM .boxed-slider > div {
  position: relative;
}
.cid-sREXL2h7LM .container img {
  width: 100%;
}
.cid-sREXL2h7LM .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sREXL2h7LM .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sREXL2h7LM .mbr-table-cell {
  padding: 0;
}
.cid-sREXL2h7LM .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sREXL2h7LM .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sREXL2h7LM .mbr-overlay {
  z-index: 1;
}
.cid-sREXL2h7LM .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sREXL2h7LM .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sREXL2h7LM .carousel-item .container {
    width: 100%;
  }
}
.cid-sREXL2h7LM .carousel-item-next.carousel-item-left,
.cid-sREXL2h7LM .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sREXL2h7LM .active.carousel-item-right,
.cid-sREXL2h7LM .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sREXL2h7LM .active.carousel-item-left,
.cid-sREXL2h7LM .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sREXL2h7LM .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sREXL2h7LM .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sREXL2h7LM .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sREXL2h7LM .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sREXL2h7LM .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sREXL2h7LM .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sREXL2h7LM .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sREXL2h7LM .mbr-slider .carousel-indicators li.active,
.cid-sREXL2h7LM .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sREXL2h7LM .mbr-slider .carousel-indicators li::after,
.cid-sREXL2h7LM .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sREXL2h7LM .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sREXL2h7LM .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sREXL2h7LM .mbr-slider > .container img {
  width: 100%;
}
.cid-sREXL2h7LM .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sREXL2h7LM .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sREXL2h7LM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sREXL2h7LM .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sREXL2h7LM .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sREXL2h7LM .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sREXL2h7LM .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sREXL2h7LM .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sREXL2h7LM .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sREXL2h7LM .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sREXL2h7LM .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sREXL2h7LM .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sREXL2h7LM .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sREXL2h7LM H2 {
  text-align: left;
  color: #ffffff;
}
.cid-sREXL2h7LM P {
  text-align: left;
  color: #ffffff;
}
.cid-t91rmrI0M1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-t91rmrI0M1 .mbr-text {
    text-align: center;
  }
}
.cid-t91rmrI0M1 .container-fluid {
  padding: 0;
}
.cid-t91rmrI0M1 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-t91rmrI0M1 img {
  height: 100%;
  object-fit: cover;
}
.cid-t91rmrI0M1 .mbr-figure {
  height: 100%;
}
.cid-t91rmrI0M1 .col-lg-6 {
  padding: 0;
}
.cid-t91rmrI0M1 .row {
  margin: 0;
}
.cid-sREXL6TlqT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sREXL6TlqT .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sREXL6TlqT .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sREXL6TlqT .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sREXL6TlqT .mbr-figure,
  .cid-sREXL6TlqT img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sRFHYEeXUQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRFHYEeXUQ .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRFHYEeXUQ .social-list a:focus {
  text-decoration: none;
}
.cid-sREXL7DhxM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-sREXL7DhxM .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-sREXL7DhxM .mbr-text {
  color: #cccccc;
}
.cid-sREXL7DhxM .border-r {
  border-right: 1px solid #656565;
}
.cid-sREXL7DhxM p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sREXL7DhxM .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-sREXL7DhxM .card {
    margin-bottom: 2rem;
  }
}
.cid-sTKqANpXaB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sTKqANpXaB .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sTKqANpXaB .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sTKqANpXaB .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sTKqANpXaB .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sTKqANpXaB .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sTKqANpXaB .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sTKqANpXaB .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sTKqANpXaB .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sTKqANpXaB .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sTKqANpXaB .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sTKqANpXaB .plan-title {
  color: #9933cc;
}
.cid-sREXLdpk7V {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sREXLdpk7V .title {
  margin-bottom: 2rem;
}
.cid-sREXLdpk7V .mbr-section-subtitle {
  color: #767676;
}
.cid-sREXLdpk7V a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sREXLdpk7V a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sREXLdpk7V textarea.form-control {
  min-height: 188px;
}
.cid-sREXLfpYfr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sREXLfpYfr .content {
    text-align: center;
  }
  .cid-sREXLfpYfr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sREXLfpYfr .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sREXLfpYfr .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sREXLfpYfr .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sREXLfpYfr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sREXLfpYfr .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sREXLfpYfr .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sREXLfpYfr .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sREXLfpYfr .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sREXLfpYfr .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sREXLfpYfr .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sREXLfpYfr .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sREXLfpYfr H5 {
  color: #000000;
}
.cid-sREXLfpYfr P {
  color: #000000;
}
.cid-t5VoE1uGkH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VoE1uGkH .content {
    text-align: center;
  }
  .cid-t5VoE1uGkH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VoE1uGkH .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VoE1uGkH .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VoE1uGkH .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VoE1uGkH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VoE1uGkH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VoE1uGkH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VoE1uGkH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VoE1uGkH .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VoE1uGkH .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VoE1uGkH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VoE1uGkH .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VoE1uGkH H5 {
  color: #000000;
}
.cid-t5VoE1uGkH P {
  color: #000000;
}
.cid-sRF86BxVan .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sRF86BxVan .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sRF86BxVan a {
  font-style: normal;
}
.cid-sRF86BxVan .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sRF86BxVan .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sRF86BxVan .nav-item:focus,
.cid-sRF86BxVan .nav-link:focus {
  outline: none;
}
.cid-sRF86BxVan .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sRF86BxVan .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sRF86BxVan .menu-logo {
  margin-right: auto;
}
.cid-sRF86BxVan .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sRF86BxVan .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sRF86BxVan .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sRF86BxVan .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sRF86BxVan .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sRF86BxVan .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sRF86BxVan .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sRF86BxVan .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sRF86BxVan .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRF86BxVan .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sRF86BxVan .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sRF86BxVan .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sRF86BxVan .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRF86BxVan .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sRF86BxVan .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRF86BxVan .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sRF86BxVan .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sRF86BxVan .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sRF86BxVan .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sRF86BxVan .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sRF86BxVan .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sRF86BxVan .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sRF86BxVan button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sRF86BxVan button.navbar-toggler:focus {
  outline: none;
}
.cid-sRF86BxVan button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRF86BxVan button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sRF86BxVan button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sRF86BxVan button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sRF86BxVan button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sRF86BxVan nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRF86BxVan nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sRF86BxVan nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sRF86BxVan nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRF86BxVan .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sRF86BxVan .collapsed .btn {
  display: flex;
}
.cid-sRF86BxVan .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sRF86BxVan .collapsed .navbar-collapse.collapsing,
.cid-sRF86BxVan .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sRF86BxVan .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sRF86BxVan .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sRF86BxVan .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sRF86BxVan .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sRF86BxVan .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sRF86BxVan .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sRF86BxVan .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sRF86BxVan .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sRF86BxVan .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sRF86BxVan .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sRF86BxVan .collapsed button.navbar-toggler {
  display: block;
}
.cid-sRF86BxVan .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sRF86BxVan .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sRF86BxVan .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sRF86BxVan .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sRF86BxVan .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sRF86BxVan .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sRF86BxVan .navbar-expand {
    flex-direction: column;
  }
  .cid-sRF86BxVan img {
    height: 3.8rem !important;
  }
  .cid-sRF86BxVan .btn {
    display: flex;
  }
  .cid-sRF86BxVan button.navbar-toggler {
    display: block;
  }
  .cid-sRF86BxVan .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sRF86BxVan .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sRF86BxVan .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sRF86BxVan .navbar-collapse.collapsing,
  .cid-sRF86BxVan .navbar-collapse.show {
    display: block !important;
  }
  .cid-sRF86BxVan .navbar-collapse.collapsing .navbar-nav,
  .cid-sRF86BxVan .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sRF86BxVan .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sRF86BxVan .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sRF86BxVan .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sRF86BxVan .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRF86BxVan .navbar-collapse.collapsing .navbar-buttons,
  .cid-sRF86BxVan .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sRF86BxVan .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sRF86BxVan .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRF86BxVan .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sRF86BxVan .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sRF86BxVan .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sRF86BxVan .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sRF86BxVan .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sRF86BxVan .navbar-collapse {
  flex-basis: auto;
}
.cid-sRF86BxVan .nav-link:hover,
.cid-sRF86BxVan .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sRF86zpE6Q .modal-body .close {
  background: #1b1b1b;
}
.cid-sRF86zpE6Q .modal-body .close span {
  font-style: normal;
}
.cid-sRF86zpE6Q .carousel-inner > .active,
.cid-sRF86zpE6Q .carousel-inner > .next,
.cid-sRF86zpE6Q .carousel-inner > .prev {
  display: table;
}
.cid-sRF86zpE6Q .carousel-control .icon-next,
.cid-sRF86zpE6Q .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sRF86zpE6Q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRF86zpE6Q .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRF86zpE6Q .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sRF86zpE6Q .boxed-slider > div {
  position: relative;
}
.cid-sRF86zpE6Q .container img {
  width: 100%;
}
.cid-sRF86zpE6Q .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sRF86zpE6Q .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sRF86zpE6Q .mbr-table-cell {
  padding: 0;
}
.cid-sRF86zpE6Q .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sRF86zpE6Q .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sRF86zpE6Q .mbr-overlay {
  z-index: 1;
}
.cid-sRF86zpE6Q .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sRF86zpE6Q .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sRF86zpE6Q .carousel-item .container {
    width: 100%;
  }
}
.cid-sRF86zpE6Q .carousel-item-next.carousel-item-left,
.cid-sRF86zpE6Q .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sRF86zpE6Q .active.carousel-item-right,
.cid-sRF86zpE6Q .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sRF86zpE6Q .active.carousel-item-left,
.cid-sRF86zpE6Q .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sRF86zpE6Q .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sRF86zpE6Q .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRF86zpE6Q .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sRF86zpE6Q .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sRF86zpE6Q .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sRF86zpE6Q .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sRF86zpE6Q .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sRF86zpE6Q .mbr-slider .carousel-indicators li.active,
.cid-sRF86zpE6Q .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sRF86zpE6Q .mbr-slider .carousel-indicators li::after,
.cid-sRF86zpE6Q .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sRF86zpE6Q .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sRF86zpE6Q .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sRF86zpE6Q .mbr-slider > .container img {
  width: 100%;
}
.cid-sRF86zpE6Q .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sRF86zpE6Q .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sRF86zpE6Q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRF86zpE6Q .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sRF86zpE6Q .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sRF86zpE6Q .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sRF86zpE6Q .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sRF86zpE6Q .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sRF86zpE6Q .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sRF86zpE6Q .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sRF86zpE6Q .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sRF86zpE6Q .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sRF86zpE6Q .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sRF86zpE6Q H2 {
  text-align: left;
  color: #ffffff;
}
.cid-sRF86zpE6Q P {
  text-align: left;
  color: #ffffff;
}
.cid-sRF86E1CNJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sRF86E1CNJ .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sRF86E1CNJ .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sRF86E1CNJ .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sRF86E1CNJ .mbr-figure,
  .cid-sRF86E1CNJ img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sRF86COw9h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sRF86COw9h .mbr-text {
    text-align: center;
  }
}
.cid-sRF86COw9h .container-fluid {
  padding: 0;
}
.cid-sRF86COw9h .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sRF86COw9h img {
  height: 100%;
  object-fit: cover;
}
.cid-sRF86COw9h .mbr-figure {
  height: 100%;
}
.cid-sRF86COw9h .col-lg-6 {
  padding: 0;
}
.cid-sRF86COw9h .row {
  margin: 0;
}
.cid-sRFYVyMOpf {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRFYVyMOpf .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRFYVyMOpf .social-list a:focus {
  text-decoration: none;
}
.cid-sTKCtpBLvx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-sTKCtpBLvx .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-sTKCtpBLvx .mbr-text {
  color: #cccccc;
}
.cid-sTKCtpBLvx .border-r {
  border-right: 1px solid #656565;
}
.cid-sTKCtpBLvx p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sTKCtpBLvx .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-sTKCtpBLvx .card {
    margin-bottom: 2rem;
  }
}
.cid-sTKnbY782K {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sTKnbY782K .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sTKnbY782K .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sTKnbY782K .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sTKnbY782K .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sTKnbY782K .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sTKnbY782K .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sTKnbY782K .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sTKnbY782K .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sTKnbY782K .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sTKnbY782K .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sTKnbY782K .plan-title {
  color: #9933cc;
}
.cid-sRF86KHhjj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sRF86KHhjj .title {
  margin-bottom: 2rem;
}
.cid-sRF86KHhjj .mbr-section-subtitle {
  color: #767676;
}
.cid-sRF86KHhjj a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sRF86KHhjj a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sRF86KHhjj textarea.form-control {
  min-height: 188px;
}
.cid-sRF86MKeyQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sRF86MKeyQ .content {
    text-align: center;
  }
  .cid-sRF86MKeyQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sRF86MKeyQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sRF86MKeyQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sRF86MKeyQ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sRF86MKeyQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sRF86MKeyQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sRF86MKeyQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sRF86MKeyQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sRF86MKeyQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sRF86MKeyQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sRF86MKeyQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRF86MKeyQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sRF86MKeyQ H5 {
  color: #000000;
}
.cid-sRF86MKeyQ P {
  color: #000000;
}
.cid-t5VoPD9y8I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VoPD9y8I .content {
    text-align: center;
  }
  .cid-t5VoPD9y8I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VoPD9y8I .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VoPD9y8I .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VoPD9y8I .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VoPD9y8I .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VoPD9y8I .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VoPD9y8I .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VoPD9y8I .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VoPD9y8I .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VoPD9y8I .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VoPD9y8I .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VoPD9y8I .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VoPD9y8I H5 {
  color: #000000;
}
.cid-t5VoPD9y8I P {
  color: #000000;
}
.cid-sRF8saa1A0 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-sRF8saa1A0 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sRF8saa1A0 a {
  font-style: normal;
}
.cid-sRF8saa1A0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sRF8saa1A0 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sRF8saa1A0 .nav-item:focus,
.cid-sRF8saa1A0 .nav-link:focus {
  outline: none;
}
.cid-sRF8saa1A0 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sRF8saa1A0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sRF8saa1A0 .menu-logo {
  margin-right: auto;
}
.cid-sRF8saa1A0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-sRF8saa1A0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sRF8saa1A0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sRF8saa1A0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sRF8saa1A0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sRF8saa1A0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sRF8saa1A0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sRF8saa1A0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sRF8saa1A0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRF8saa1A0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sRF8saa1A0 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sRF8saa1A0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sRF8saa1A0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRF8saa1A0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sRF8saa1A0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRF8saa1A0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sRF8saa1A0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sRF8saa1A0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sRF8saa1A0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sRF8saa1A0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sRF8saa1A0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sRF8saa1A0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sRF8saa1A0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sRF8saa1A0 button.navbar-toggler:focus {
  outline: none;
}
.cid-sRF8saa1A0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRF8saa1A0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sRF8saa1A0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sRF8saa1A0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sRF8saa1A0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sRF8saa1A0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRF8saa1A0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sRF8saa1A0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sRF8saa1A0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRF8saa1A0 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sRF8saa1A0 .collapsed .btn {
  display: flex;
}
.cid-sRF8saa1A0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sRF8saa1A0 .collapsed .navbar-collapse.collapsing,
.cid-sRF8saa1A0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sRF8saa1A0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sRF8saa1A0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sRF8saa1A0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sRF8saa1A0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sRF8saa1A0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sRF8saa1A0 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sRF8saa1A0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sRF8saa1A0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sRF8saa1A0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sRF8saa1A0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sRF8saa1A0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sRF8saa1A0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sRF8saa1A0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sRF8saa1A0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sRF8saa1A0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sRF8saa1A0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sRF8saa1A0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sRF8saa1A0 .navbar-expand {
    flex-direction: column;
  }
  .cid-sRF8saa1A0 img {
    height: 3.8rem !important;
  }
  .cid-sRF8saa1A0 .btn {
    display: flex;
  }
  .cid-sRF8saa1A0 button.navbar-toggler {
    display: block;
  }
  .cid-sRF8saa1A0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sRF8saa1A0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sRF8saa1A0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sRF8saa1A0 .navbar-collapse.collapsing,
  .cid-sRF8saa1A0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sRF8saa1A0 .navbar-collapse.collapsing .navbar-nav,
  .cid-sRF8saa1A0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sRF8saa1A0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sRF8saa1A0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sRF8saa1A0 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sRF8saa1A0 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRF8saa1A0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sRF8saa1A0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sRF8saa1A0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sRF8saa1A0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRF8saa1A0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sRF8saa1A0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sRF8saa1A0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sRF8saa1A0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sRF8saa1A0 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-sRF8saa1A0 .navbar-collapse {
  flex-basis: auto;
}
.cid-sRF8saa1A0 .nav-link:hover,
.cid-sRF8saa1A0 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sRF8s8rA1q .modal-body .close {
  background: #1b1b1b;
}
.cid-sRF8s8rA1q .modal-body .close span {
  font-style: normal;
}
.cid-sRF8s8rA1q .carousel-inner > .active,
.cid-sRF8s8rA1q .carousel-inner > .next,
.cid-sRF8s8rA1q .carousel-inner > .prev {
  display: table;
}
.cid-sRF8s8rA1q .carousel-control .icon-next,
.cid-sRF8s8rA1q .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sRF8s8rA1q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRF8s8rA1q .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRF8s8rA1q .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sRF8s8rA1q .boxed-slider > div {
  position: relative;
}
.cid-sRF8s8rA1q .container img {
  width: 100%;
}
.cid-sRF8s8rA1q .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sRF8s8rA1q .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sRF8s8rA1q .mbr-table-cell {
  padding: 0;
}
.cid-sRF8s8rA1q .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sRF8s8rA1q .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sRF8s8rA1q .mbr-overlay {
  z-index: 1;
}
.cid-sRF8s8rA1q .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sRF8s8rA1q .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sRF8s8rA1q .carousel-item .container {
    width: 100%;
  }
}
.cid-sRF8s8rA1q .carousel-item-next.carousel-item-left,
.cid-sRF8s8rA1q .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sRF8s8rA1q .active.carousel-item-right,
.cid-sRF8s8rA1q .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-sRF8s8rA1q .active.carousel-item-left,
.cid-sRF8s8rA1q .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-sRF8s8rA1q .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sRF8s8rA1q .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRF8s8rA1q .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sRF8s8rA1q .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sRF8s8rA1q .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sRF8s8rA1q .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sRF8s8rA1q .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sRF8s8rA1q .mbr-slider .carousel-indicators li.active,
.cid-sRF8s8rA1q .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sRF8s8rA1q .mbr-slider .carousel-indicators li::after,
.cid-sRF8s8rA1q .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sRF8s8rA1q .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sRF8s8rA1q .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sRF8s8rA1q .mbr-slider > .container img {
  width: 100%;
}
.cid-sRF8s8rA1q .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sRF8s8rA1q .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sRF8s8rA1q .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRF8s8rA1q .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sRF8s8rA1q .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sRF8s8rA1q .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sRF8s8rA1q .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sRF8s8rA1q .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sRF8s8rA1q .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sRF8s8rA1q .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sRF8s8rA1q .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sRF8s8rA1q .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sRF8s8rA1q .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sRF8s8rA1q H2 {
  text-align: left;
  color: #ffffff;
}
.cid-sRF8s8rA1q P {
  text-align: left;
  color: #ffffff;
}
.cid-sRF8scscAw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-sRF8scscAw .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-sRF8scscAw .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sRF8scscAw .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-sRF8scscAw .mbr-figure,
  .cid-sRF8scscAw img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sRF8sbjNJL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sRF8sbjNJL .mbr-text {
    text-align: center;
  }
}
.cid-sRF8sbjNJL .container-fluid {
  padding: 0;
}
.cid-sRF8sbjNJL .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sRF8sbjNJL img {
  height: 100%;
  object-fit: cover;
}
.cid-sRF8sbjNJL .mbr-figure {
  height: 100%;
}
.cid-sRF8sbjNJL .col-lg-6 {
  padding: 0;
}
.cid-sRF8sbjNJL .row {
  margin: 0;
}
.cid-sRFXEudBxL {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-sRFXEudBxL .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-sRFXEudBxL .social-list a:focus {
  text-decoration: none;
}
.cid-sRFJU02IXL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-sRFJU02IXL .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-sRFJU02IXL .mbr-text {
  color: #cccccc;
}
.cid-sRFJU02IXL .border-r {
  border-right: 1px solid #656565;
}
.cid-sRFJU02IXL p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-sRFJU02IXL .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-sRFJU02IXL .card {
    margin-bottom: 2rem;
  }
}
.cid-sRFfGwYlfO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sRFfGwYlfO .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sRFfGwYlfO .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sRFfGwYlfO .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sRFfGwYlfO .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sRFfGwYlfO .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sRFfGwYlfO .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sRFfGwYlfO .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sRFfGwYlfO .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sRFfGwYlfO .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sRFfGwYlfO .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sRFfGwYlfO .plan-title {
  color: #9933cc;
}
.cid-sRF8sg6EHX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sRF8sg6EHX .box1 {
  background-image: url("../../../assets/images/laurent-ferry-photographe-immobilier-paris-videaste-immobilier-duplex-appartement-video-immobiliere-horizontale.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-sRF8sg6EHX .box2 {
  background-image: url("../../../assets/images/laurent-ferry-photographe-immobilier-paris-videaste-immobilier-maison-appartement-video-immobiliere-horizontale.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-sRF8sg6EHX .icon-wrap {
  background-color: #149dcc !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sRF8sg6EHX .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sRF8sg6EHX .icon-wrap span {
  padding-left: 8px;
}
.cid-sRF8sg6EHX .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sRF8sg6EHX .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sRF8sg6EHX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sRF8sg6EHX .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-sRF8sg6EHX .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sRF8sg6EHX a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sRF8sg6EHX a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sRF8sg6EHX {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-sRF8sg6EHX .box1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .cid-sRF8sg6EHX {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-sRF8sg6EHX .box1,
  .cid-sRF8sg6EHX .box2 {
    height: 250px;
  }
}
.cid-uYHBwTr2T5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uYHBwTr2T5 .mbr-section-subtitle {
  color: #767676;
}
.cid-sRF8shq3sX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sRF8shq3sX .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-sRF8shq3sX .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-sRF8shq3sX .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-sRF8shq3sX .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-sRF8shq3sX .plan .list-group-item:last-child::after {
  display: none;
}
.cid-sRF8shq3sX .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-sRF8shq3sX .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sRF8shq3sX .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-sRF8shq3sX .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-sRF8shq3sX .price-figure {
    font-size: 4.25rem;
  }
}
.cid-sRF8shq3sX .plan-title {
  color: #9933cc;
}
.cid-sRF8sj30iY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sRF8sj30iY .title {
  margin-bottom: 2rem;
}
.cid-sRF8sj30iY .mbr-section-subtitle {
  color: #767676;
}
.cid-sRF8sj30iY a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sRF8sj30iY a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sRF8sj30iY textarea.form-control {
  min-height: 188px;
}
.cid-sRF8skYlKc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sRF8skYlKc .content {
    text-align: center;
  }
  .cid-sRF8skYlKc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sRF8skYlKc .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sRF8skYlKc .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sRF8skYlKc .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sRF8skYlKc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sRF8skYlKc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sRF8skYlKc .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sRF8skYlKc .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sRF8skYlKc .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sRF8skYlKc .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sRF8skYlKc .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRF8skYlKc .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sRF8skYlKc H5 {
  color: #000000;
}
.cid-sRF8skYlKc P {
  color: #000000;
}
.cid-t5VoKnhy53 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5VoKnhy53 .content {
    text-align: center;
  }
  .cid-t5VoKnhy53 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t5VoKnhy53 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t5VoKnhy53 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t5VoKnhy53 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-t5VoKnhy53 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5VoKnhy53 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-t5VoKnhy53 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-t5VoKnhy53 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-t5VoKnhy53 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t5VoKnhy53 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t5VoKnhy53 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5VoKnhy53 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-t5VoKnhy53 H5 {
  color: #000000;
}
.cid-t5VoKnhy53 P {
  color: #000000;
}
.cid-rDetd0duCN .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rDetd0duCN .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rDetd0duCN a {
  font-style: normal;
}
.cid-rDetd0duCN .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rDetd0duCN .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rDetd0duCN .nav-item:focus,
.cid-rDetd0duCN .nav-link:focus {
  outline: none;
}
.cid-rDetd0duCN .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rDetd0duCN .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rDetd0duCN .menu-logo {
  margin-right: auto;
}
.cid-rDetd0duCN .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rDetd0duCN .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rDetd0duCN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rDetd0duCN .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rDetd0duCN .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rDetd0duCN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rDetd0duCN button.navbar-toggler:focus {
  outline: none;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDetd0duCN .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rDetd0duCN .collapsed .btn {
  display: flex;
}
.cid-rDetd0duCN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing,
.cid-rDetd0duCN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rDetd0duCN .collapsed button.navbar-toggler {
  display: block;
}
.cid-rDetd0duCN .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rDetd0duCN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rDetd0duCN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rDetd0duCN .navbar-expand {
    flex-direction: column;
  }
  .cid-rDetd0duCN img {
    height: 3.8rem !important;
  }
  .cid-rDetd0duCN .btn {
    display: flex;
  }
  .cid-rDetd0duCN button.navbar-toggler {
    display: block;
  }
  .cid-rDetd0duCN .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rDetd0duCN .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rDetd0duCN .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing,
  .cid-rDetd0duCN .navbar-collapse.show {
    display: block !important;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-buttons,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDetd0duCN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rDetd0duCN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rDetd0duCN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rDetd0duCN .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rDetd0duCN .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rDetd0duCN .navbar-collapse {
  flex-basis: auto;
}
.cid-rDetd0duCN .nav-link:hover,
.cid-rDetd0duCN .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-t8fiAp2jUe {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t8fiAp2jUe .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-t8fiAp2jUe .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-t8fiAp2jUe .row {
  justify-content: center;
}
.cid-t8fiAp2jUe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2) translateX(-8%);
  transition: 1.5s all;
}
.cid-t8fiAp2jUe .item-img {
  display: flex;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-t8fiAp2jUe .item-img {
    height: 264px;
  }
}
@media (max-width: 767px) {
  .cid-t8fiAp2jUe .item-img {
    height: 528px;
  }
}
@media (min-width: 768px) {
  .cid-t8fiAp2jUe .item-img:hover img {
    transform: scale(1.2) translateX(8%);
  }
}
.cid-t8fiAp2jUe .item:focus,
.cid-t8fiAp2jUe span:focus {
  outline: none;
}
.cid-t8fiAp2jUe .item {
  cursor: pointer;
  padding: 0;
}
.cid-t8fiAp2jUe .item-wrapper {
  position: relative;
  border-radius: 0;
  background: #f9f7f5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t8fiAp2jUe .item-wrapper {
  background: transparent;
}
.cid-t8fiAp2jUe .item-content {
  padding: 30px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-t8fiAp2jUe .item-content {
    padding: 24px 12px 48px;
  }
}
.cid-t8fiAp2jUe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t8fiAp2jUe .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-t8fiAp2jUe .mbr-text {
  text-align: center;
  color: #222222;
}
.cid-t8fiAp2jUe .item-title {
  text-align: center;
  color: #999999;
  margin-bottom: 4px;
}
.cid-usw27ta4lK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-usw27ta4lK .mbr-section-subtitle {
  color: #767676;
}
.cid-usvNOnM5Qw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usvNOnM5Qw .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-usvNOnM5Qw .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-usvNOnM5Qw .row {
  justify-content: center;
}
.cid-usvNOnM5Qw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2) translateX(-8%);
  transition: 1.5s all;
}
.cid-usvNOnM5Qw .item-img {
  display: flex;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-usvNOnM5Qw .item-img {
    height: 264px;
  }
}
@media (max-width: 767px) {
  .cid-usvNOnM5Qw .item-img {
    height: 528px;
  }
}
@media (min-width: 768px) {
  .cid-usvNOnM5Qw .item-img:hover img {
    transform: scale(1.2) translateX(8%);
  }
}
.cid-usvNOnM5Qw .item:focus,
.cid-usvNOnM5Qw span:focus {
  outline: none;
}
.cid-usvNOnM5Qw .item {
  cursor: pointer;
  padding: 0;
}
.cid-usvNOnM5Qw .item-wrapper {
  position: relative;
  border-radius: 0;
  background: #f9f7f5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-usvNOnM5Qw .item-wrapper {
  background: transparent;
}
.cid-usvNOnM5Qw .item-content {
  padding: 30px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-usvNOnM5Qw .item-content {
    padding: 24px 12px 48px;
  }
}
.cid-usvNOnM5Qw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usvNOnM5Qw .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-usvNOnM5Qw .mbr-text {
  text-align: center;
  color: #222222;
}
.cid-usvNOnM5Qw .item-title {
  text-align: center;
  color: #999999;
  margin-bottom: 4px;
}
.cid-usvKeP4iLp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-usvKeP4iLp .container {
    padding: 1rem;
  }
}
.cid-usvKeP4iLp .card-box {
  padding: 0 2rem;
}
.cid-usvKeP4iLp .card {
  padding: 0!important;
}
.cid-usvKeP4iLp .mbr-section-btn {
  padding-top: 2rem;
}
.cid-usvKeP4iLp .container-fluid {
  padding: 0;
}
.cid-usvKeP4iLp .card1 {
  background-image: url("../../../assets/images/img-140582-ac-20241016-appartement-75007-paris-2024.049-r04-copy-1-laurent-ferry-photography-paris-photographe-1920-25s.jpg");
}
.cid-usvKeP4iLp .card2 {
  background-image: url("../../../assets/images/img-60419-nikky-doualle-first-shoot-paris-16-laurent-ferry-photography-lr-jpg-20200719-17-27-59-srvb-5.jpeg");
}
.cid-usvKeP4iLp .card3 {
  background-image: url("../../../assets/images/img-33967-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-4-1619x108027.jpeg");
}
.cid-usvKeP4iLp .card4 {
  background-image: url("../../../assets/images/img-56603-lr-raw-srvb-approuved-hd-laure-weise-comedienne-laurentferry-com-all-rights-reserved-ask-before-use-6-1919x1280.jpeg");
}
.cid-usvKeP4iLp h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-usvKeP4iLp p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-usvKeP4iLp .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-usvKeP4iLp .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-usvKeP4iLp .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-usvKeP4iLp .mbr-text,
.cid-usvKeP4iLp .mbr-section-btn {
  color: #ffffff;
}
.cid-usvLmsToO0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-usvLmsToO0 .container {
    padding: 1rem;
  }
}
.cid-usvLmsToO0 .card-box {
  padding: 0 2rem;
}
.cid-usvLmsToO0 .card {
  padding: 0!important;
}
.cid-usvLmsToO0 .mbr-section-btn {
  padding-top: 2rem;
}
.cid-usvLmsToO0 .container-fluid {
  padding: 0;
}
.cid-usvLmsToO0 .card1 {
  background-image: url("../../../assets/images/img-140582-ac-20241016-appartement-75007-paris-2024.049-r04-copy-1-laurent-ferry-photography-paris-photographe-1920-25s.jpg");
}
.cid-usvLmsToO0 .card2 {
  background-image: url("../../../assets/images/img-140772-ac-20241016-appartement-75007-paris-2024.049-r04-copy-1-laurent-ferry-photography-paris-photographe-1920-25s.jpg");
}
.cid-usvLmsToO0 .card3 {
  background-image: url("../../../assets/images/img-140582-ac-20241016-appartement-75007-paris-2024.049-r04-copy-1-laurent-ferry-photography-paris-photographe-1920-25s.jpg");
}
.cid-usvLmsToO0 .card4 {
  background-image: url("../../../assets/images/img-140582-ac-20241016-appartement-75007-paris-2024.049-r04-copy-1-laurent-ferry-photography-paris-photographe-1920-25s.jpg");
}
.cid-usvLmsToO0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-usvLmsToO0 p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-usvLmsToO0 .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-usvLmsToO0 .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-usvLmsToO0 .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-t8fMbrFsTO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8fMbrFsTO .mbr-section-subtitle {
  color: #767676;
}
.cid-t8fj5X2KGF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t8fj5X2KGF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t8fj5X2KGF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8fj5X2KGF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8fj5X2KGF .title {
  padding: 0 2rem;
}
.cid-t8fj5X2KGF .container {
  padding: 0 1rem;
}
.cid-t8fj5X2KGF .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-t8fj5X2KGF .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-t8fj5X2KGF .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t8fj5X2KGF .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-t8fj5X2KGF .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-t8fj5X2KGF .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-t8fj5X2KGF .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-t8fj5X2KGF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t8fj5X2KGF .icon-focus {
  display: none;
}
.cid-t8fj5X2KGF .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-t8fj5X2KGF .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-t8fj5X2KGF li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-t8fj5X2KGF li {
  position: relative;
}
.cid-t8fj5X2KGF .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-t8fj5X2KGF .btn {
  font-family: Rubik !important;
}
.cid-t8fj5X2KGF .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-t8fj5X2KGF .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8fj5X2KGF li:not(:last-child):after {
    top: 9px;
  }
  .cid-t8fj5X2KGF .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-t8fj5X2KGF .container {
    padding: 0rem 0.5rem;
  }
  .cid-t8fj5X2KGF .title {
    padding: 0 1rem;
  }
}
.cid-t8fj5X2KGF H2 {
  color: #000000;
}
.cid-t8fRypAysC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8fRypAysC .mbr-section-subtitle {
  color: #767676;
}
.cid-t8finMFh7J {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-t8finMFh7J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t8finMFh7J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8finMFh7J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8finMFh7J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t8finMFh7J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-t8finMFh7J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-t8finMFh7J .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-t8finMFh7J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-t8finMFh7J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-t8fNpmCwG3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8fNpmCwG3 .mbr-section-subtitle {
  color: #767676;
}
.cid-t8fiWeoXm5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-t8fiWeoXm5 [class*="col"] {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.cid-t8fiWeoXm5 .container-fluid {
  padding: 0 !important;
  margin: 3rem 0;
}
.cid-t8fiWeoXm5 .carousel-item {
  justify-content: center;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-t8fiWeoXm5 .carousel-item {
    width: calc(100% + 100% / 4);
    left: calc(-100% / (2 * 4));
    margin-right: calc(-100% - 100% / 4);
  }
}
.cid-t8fiWeoXm5 .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-t8fiWeoXm5 .carousel-item .slider__image {
  height: 500px;
  width: 100%;
  overflow: hidden;
}
.cid-t8fiWeoXm5 .carousel-item .slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.cid-t8fiWeoXm5 .carousel-item .slider__image:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-t8fiWeoXm5 .slider__content .slider__title {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .cid-t8fiWeoXm5 .slider__title {
    margin-left: 2rem;
  }
}
.cid-t8fiWeoXm5 .carousel-item.active,
.cid-t8fiWeoXm5 .carousel-item-next,
.cid-t8fiWeoXm5 .carousel-item-prev {
  display: flex;
}
.cid-t8fiWeoXm5 .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t8fiWeoXm5 .carousel-control-next,
.cid-t8fiWeoXm5 .carousel-control-prev {
  opacity: 1 !important;
}
.cid-t8fiWeoXm5 .carousel-control-next:hover,
.cid-t8fiWeoXm5 .carousel-control-prev:hover {
  opacity: 1 !important;
}
.cid-t8fiWeoXm5 .carousel-controls {
  width: 100%;
  position: absolute;
  z-index: 20;
  top: 43.3%;
  transform: translateY(-50%);
}
.cid-t8fiWeoXm5 .carousel-controls a span {
  width: 95.7px;
  height: 95.7px;
  line-height: 75.7px;
  font-size: 20px;
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: #000000;
}
.cid-t8fiWeoXm5 .carousel-controls a span:hover {
  transform: scale(1.07);
  transform-origin: center;
  transition: transform 0.2s ease 0s;
}
.cid-t8fiWeoXm5 .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t8fiWeoXm5 .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-t8fiWeoXm5 .carousel-inner {
    padding-bottom: 3px;
  }
}
@media (max-width: 991px) {
  .cid-t8fiWeoXm5 .carousel-item .slider__item {
    margin-right: 0;
  }
  .cid-t8fiWeoXm5 .cloneditem-1,
  .cid-t8fiWeoXm5 .cloneditem-2,
  .cid-t8fiWeoXm5 .cloneditem-3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-t8fiWeoXm5 .carousel-controls {
    display: none;
  }
  .cid-t8fiWeoXm5 .mbr-text,
  .cid-t8fiWeoXm5 .mbr-section-title {
    padding: 0 1rem;
  }
}
.cid-t8fic0JhSh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-t8fic0JhSh .mbr-overlay {
  z-index: 1;
}
.cid-t8fic0JhSh .carousel-caption {
  bottom: 40px;
}
.cid-t8fic0JhSh .carousel-control .icon-next,
.cid-t8fic0JhSh .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8fic0JhSh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8fic0JhSh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8fic0JhSh .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8fic0JhSh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8fic0JhSh .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t8fic0JhSh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8fic0JhSh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8fic0JhSh .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-t8fic0JhSh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8fic0JhSh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8fic0JhSh .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-t8fic0JhSh .carousel-indicators li.active,
.cid-t8fic0JhSh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8fic0JhSh .carousel-indicators li::after,
.cid-t8fic0JhSh .carousel-indicators li::before {
  content: none;
}
.cid-t8fic0JhSh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t8fic0JhSh .carousel-indicators {
    display: none !important;
  }
}
.cid-t8fi2f8Gpv .modal-body .close {
  background: #1b1b1b;
}
.cid-t8fi2f8Gpv .modal-body .close span {
  font-style: normal;
}
.cid-t8fi2f8Gpv .carousel-inner > .active,
.cid-t8fi2f8Gpv .carousel-inner > .next,
.cid-t8fi2f8Gpv .carousel-inner > .prev {
  display: flex;
}
.cid-t8fi2f8Gpv .carousel-control .icon-next,
.cid-t8fi2f8Gpv .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8fi2f8Gpv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8fi2f8Gpv .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8fi2f8Gpv .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8fi2f8Gpv .boxed-slider > div {
  position: relative;
}
.cid-t8fi2f8Gpv .container img {
  width: 100%;
}
.cid-t8fi2f8Gpv .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8fi2f8Gpv .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8fi2f8Gpv .mbr-table-cell {
  padding: 0;
}
.cid-t8fi2f8Gpv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8fi2f8Gpv .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8fi2f8Gpv .mbr-overlay {
  z-index: 1;
}
.cid-t8fi2f8Gpv .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8fi2f8Gpv .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8fi2f8Gpv .carousel-item.active.right,
.cid-t8fi2f8Gpv .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8fi2f8Gpv .carousel-item.active.left,
.cid-t8fi2f8Gpv .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8fi2f8Gpv .carousel-item.active,
.cid-t8fi2f8Gpv .carousel-item.next.left,
.cid-t8fi2f8Gpv .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-t8fi2f8Gpv .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-indicators li.active,
.cid-t8fi2f8Gpv .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-indicators li::after,
.cid-t8fi2f8Gpv .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8fi2f8Gpv .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8fi2f8Gpv .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8fi2f8Gpv .mbr-slider > .container img {
  width: 100%;
}
.cid-t8fi2f8Gpv .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8fi2f8Gpv .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8fi2f8Gpv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8fi2f8Gpv .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8fi2f8Gpv .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8fi2f8Gpv .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8fi2f8Gpv .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8fi2f8Gpv .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8fi2f8Gpv .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8fi2f8Gpv .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8fi2f8Gpv .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8fi2f8Gpv .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8fi2f8Gpv .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t8fK4TUMBC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t8fK4TUMBC .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
  margin-bottom: 2rem;
}
.cid-t8fK4TUMBC .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-t8fK4TUMBC .list-img {
  width: 100px;
}
.cid-t8fK4TUMBC .ico2 {
  color: #656565;
  font-size: 1.2rem;
}
.cid-t8fK4TUMBC .btn {
  margin: 0px !important;
}
.cid-t8fK4TUMBC .text-box {
  padding: 1rem;
}
.cid-t8fK4TUMBC .text-box p {
  margin: 0;
}
.cid-t8fK4TUMBC .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-t8fK4TUMBC .ico-box p {
  margin: 0;
}
.cid-t8fK4TUMBC .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t8fK4TUMBC .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t8fK4TUMBC .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-t8fK4TUMBC .carousel-item .wrap-img {
  text-align: center;
}
.cid-t8fK4TUMBC .carousel-item .wrap-img img {
  width: auto;
  max-width: 100%;
}
.cid-t8fK4TUMBC .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-t8fK4TUMBC .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-t8fK4TUMBC .carousel-indicators li {
  display: inline-block;
}
.cid-t8fK4TUMBC .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-t8fK4TUMBC .carousel-indicators li.active {
  border: 0px;
}
.cid-t8fK4TUMBC .li1 {
  background-image: url("../../../assets/images/01.jpg");
}
.cid-t8fK4TUMBC .li2 {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-t8fK4TUMBC .li3 {
  background-image: url("../../../assets/images/03.jpg");
}
.cid-t8fK4TUMBC .li4 {
  background-image: url("../../../assets/images/01.jpg");
}
.cid-t8fK4TUMBC .li5 {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-t8fK4TUMBC .li6 {
  background-image: url("../../../assets/images/03.jpg");
}
@media (max-width: 992px) {
  .cid-t8fK4TUMBC .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-t8fK4TUMBC .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-t8fK4TUMBC .card-title2 {
  color: #274abb;
}
.cid-t8fK4TUMBC .sq {
  color: #656565;
}
.cid-t8fK4TUMBC .item {
  color: #656565;
}
.cid-t8fijHa1Eb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-t8fijHa1Eb .item-wrapper {
  width: 100%;
}
.cid-t8fijHa1Eb .carousel-caption {
  bottom: 40px;
}
.cid-t8fijHa1Eb .carousel-control {
  top: 59%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  transition: all 0.3s;
  color: #000000;
}
.cid-t8fijHa1Eb .carousel-control.carousel-control-prev {
  left: -100px;
  margin-left: 4.5rem;
}
.cid-t8fijHa1Eb .carousel-control.carousel-control-next {
  right: -100px;
  margin-right: 4.5rem;
}
.cid-t8fijHa1Eb .left-side {
  text-align: left;
}
.cid-t8fijHa1Eb .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 400px;
}
.cid-t8fijHa1Eb .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-t8fijHa1Eb .row {
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
}
.cid-t8fijHa1Eb .carousel-fade .active.carousel-item-left,
.cid-t8fijHa1Eb .carousel-fade .active.carousel-item-right {
  transition: opacity 0.5s 0s;
}
.cid-t8fijHa1Eb .carousel-fade .carousel-item-left.carousel-item-next,
.cid-t8fijHa1Eb .carousel-fade .carousel-item-right.carousel-item-prev {
  transition: opacity 0.5s 0.5s;
}
.cid-t8fijHa1Eb .carousel-control-next,
.cid-t8fijHa1Eb .carousel-control-prev {
  opacity: 1;
}
.cid-t8fijHa1Eb .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-t8fijHa1Eb .card-box:focus-within {
  opacity: 1;
}
.cid-t8fijHa1Eb .row-center {
  height: 100%;
}
.cid-t8fijHa1Eb .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 400px;
  padding: 20px;
}
.cid-t8fijHa1Eb .card-wrapper:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: black;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.cid-t8fijHa1Eb .card-wrapper:hover .card-box,
.cid-t8fijHa1Eb .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-t8fijHa1Eb .card-wrapper:hover:before,
.cid-t8fijHa1Eb .card-wrapper:focus-within:before {
  opacity: 0.5;
}
.cid-t8fijHa1Eb .card-title {
  color: #fafafa;
  text-align: left;
}
.cid-t8fijHa1Eb .carousel-item {
  justify-content: center;
}
.cid-t8fijHa1Eb .g {
  grid-row-gap: 24px;
}
.cid-t8fijHa1Eb .mobi-mbri {
  font-size: 25px;
  color: #012B3A !important;
}
.cid-t8fijHa1Eb .container {
  width: 95%;
  margin: auto;
}
@media (max-width: 1000px) {
  .cid-t8fijHa1Eb .carousel-control {
    display: none;
  }
  .cid-t8fijHa1Eb .container {
    width: 100%;
    padding: 0;
  }
}
.cid-t8fijHa1Eb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-t8fijHa1Eb .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: center;
}
.cid-t8fijHa1Eb a {
  font-weight: 400;
}
.cid-t8fijHa1Eb .card1 {
  background-image: url("../../../assets/images/image2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card2 {
  background-image: url("../../../assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card3 {
  background-image: url("../../../assets/images/image5.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card4 {
  background-image: url("../../../assets/images/image6.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card5 {
  background-image: url("../../../assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card6 {
  background-image: url("../../../assets/images/image2.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card7 {
  background-image: url("../../../assets/images/image3.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card8 {
  background-image: url("../../../assets/images/image5.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card9 {
  background-image: url("../../../assets/images/image6.jpg");
  background-size: cover;
  background-position: center;
}
.cid-t8fijHa1Eb .card10 {
  background-image: url("../../../assets/images/image4.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 576px) {
  .cid-t8fijHa1Eb .g {
    grid-row-gap: 15px;
  }
}
.cid-t8fijHa1Eb .carousel.slide {
  padding: 0;
}
.cid-t8firoM6Dg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t8firoM6Dg .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-t8firoM6Dg .modal-body .close {
  background: #1b1b1b;
}
.cid-t8firoM6Dg .modal-body .close span {
  font-style: normal;
}
.cid-t8firoM6Dg .carousel-inner > .active,
.cid-t8firoM6Dg .carousel-inner > .next,
.cid-t8firoM6Dg .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-t8firoM6Dg .carousel-control .icon-next,
.cid-t8firoM6Dg .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8firoM6Dg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8firoM6Dg .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t8firoM6Dg .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t8firoM6Dg .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8firoM6Dg .boxed-slider > div {
  position: relative;
}
.cid-t8firoM6Dg .container img {
  width: 100%;
}
.cid-t8firoM6Dg .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8firoM6Dg .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8firoM6Dg .mbr-table-cell {
  padding: 0;
}
.cid-t8firoM6Dg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8firoM6Dg .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-t8firoM6Dg .mbr-overlay {
  z-index: 1;
}
.cid-t8firoM6Dg .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8firoM6Dg .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8firoM6Dg .carousel-item.active.right,
.cid-t8firoM6Dg .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8firoM6Dg .carousel-item.active.left,
.cid-t8firoM6Dg .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8firoM6Dg .carousel-item.active,
.cid-t8firoM6Dg .carousel-item.next.left,
.cid-t8firoM6Dg .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8firoM6Dg .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 11;
}
.cid-t8firoM6Dg .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8firoM6Dg .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8firoM6Dg .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-t8firoM6Dg .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8firoM6Dg .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8firoM6Dg .mbr-slider .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-t8firoM6Dg .mbr-slider .carousel-indicators li.active,
.cid-t8firoM6Dg .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t8firoM6Dg .mbr-slider .carousel-indicators li::after,
.cid-t8firoM6Dg .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8firoM6Dg .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8firoM6Dg .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8firoM6Dg .mbr-slider > .container img {
  width: 100%;
}
.cid-t8firoM6Dg .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8firoM6Dg .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8firoM6Dg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8firoM6Dg .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8firoM6Dg .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8firoM6Dg .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8firoM6Dg .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8firoM6Dg .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8firoM6Dg .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8firoM6Dg .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8firoM6Dg .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8firoM6Dg .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8firoM6Dg .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-t8firoM6Dg .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-t8firoM6Dg .carousel-inner {
  height: 100%;
}
.cid-t8firoM6Dg .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-t8firoM6Dg .image_wrapper {
  height: 400px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-t8firoM6Dg .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-t8firoM6Dg .carousel-item .container-slide {
  text-align: center;
}
.cid-t8firoM6Dg .content-slider-wrap {
  width: 60%;
}
.cid-t8fjfc1Weu .modal-body .close {
  background: #1b1b1b;
}
.cid-t8fjfc1Weu .modal-body .close span {
  font-style: normal;
}
.cid-t8fjfc1Weu .carousel-inner > .active,
.cid-t8fjfc1Weu .carousel-inner > .next,
.cid-t8fjfc1Weu .carousel-inner > .prev {
  display: flex;
}
.cid-t8fjfc1Weu .carousel-control .icon-next,
.cid-t8fjfc1Weu .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8fjfc1Weu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8fjfc1Weu .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8fjfc1Weu .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-t8fjfc1Weu .boxed-slider > div {
  position: relative;
}
.cid-t8fjfc1Weu .container img {
  width: 100%;
}
.cid-t8fjfc1Weu .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-t8fjfc1Weu .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8fjfc1Weu .mbr-table-cell {
  padding: 0;
}
.cid-t8fjfc1Weu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t8fjfc1Weu .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8fjfc1Weu .mbr-overlay {
  z-index: 1;
}
.cid-t8fjfc1Weu .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8fjfc1Weu .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-t8fjfc1Weu .carousel-item.active.right,
.cid-t8fjfc1Weu .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8fjfc1Weu .carousel-item.active.left,
.cid-t8fjfc1Weu .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-t8fjfc1Weu .carousel-item.active,
.cid-t8fjfc1Weu .carousel-item.next.left,
.cid-t8fjfc1Weu .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
  z-index: 11;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-control:hover {
  background-color: #9933cc;
}
@media (max-width: 767px) {
  .cid-t8fjfc1Weu .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t8fjfc1Weu .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-indicators li.active,
.cid-t8fjfc1Weu .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #9933cc;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-indicators li::after,
.cid-t8fjfc1Weu .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-t8fjfc1Weu .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-t8fjfc1Weu .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-t8fjfc1Weu .mbr-slider > .container img {
  width: 100%;
}
.cid-t8fjfc1Weu .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t8fjfc1Weu .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-t8fjfc1Weu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8fjfc1Weu .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-t8fjfc1Weu .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-t8fjfc1Weu .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-t8fjfc1Weu .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-t8fjfc1Weu .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-t8fjfc1Weu .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-t8fjfc1Weu .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-t8fjfc1Weu .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-t8fjfc1Weu .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-t8fjfc1Weu .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-usvKUWZDoL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 767px) {
  .cid-usvKUWZDoL .container {
    padding: 1rem;
  }
}
.cid-usvKUWZDoL .card-box {
  padding: 0 2rem;
}
.cid-usvKUWZDoL .card {
  padding: 0!important;
}
.cid-usvKUWZDoL .mbr-section-btn {
  padding-top: 2rem;
}
.cid-usvKUWZDoL .container-fluid {
  padding: 0;
}
.cid-usvKUWZDoL .card1 {
  background-image: url("../../../assets/images/img-33967-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1619x108027.jpeg");
}
.cid-usvKUWZDoL .card2 {
  background-image: url("../../../assets/images/img-56603-lr-raw-srvb-approuved-hd-laure-weise-comedienne-laurentferry-com-all-rights-reserved-ask-before-use-3-1919x1280.jpeg");
}
.cid-usvKUWZDoL .card3 {
  background-image: url("../../../assets/images/img-60419-nikky-doualle-first-shoot-paris-16-laurent-ferry-photography-lr-jpg-20200719-17-27-59-srvb-1.jpeg");
}
.cid-usvKUWZDoL .card4 {
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x1280.jpeg");
}
.cid-usvKUWZDoL h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-usvKUWZDoL p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-usvKUWZDoL .card-wrapper {
  height: 100%;
  padding: 25rem 2rem 5rem 2rem;
  background-size: cover;
}
.cid-usvKUWZDoL .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .cid-usvKUWZDoL .card-wrapper {
    padding: 15rem 1rem 3rem 1rem;
  }
}
.cid-usvKUWZDoL .mbr-text,
.cid-usvKUWZDoL .mbr-section-btn {
  color: #ffffff;
}
.cid-txlL4lRfxT .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-txlL4lRfxT .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-txlL4lRfxT a {
  font-style: normal;
}
.cid-txlL4lRfxT .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-txlL4lRfxT .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-txlL4lRfxT .nav-item:focus,
.cid-txlL4lRfxT .nav-link:focus {
  outline: none;
}
.cid-txlL4lRfxT .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-txlL4lRfxT .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-txlL4lRfxT .menu-logo {
  margin-right: auto;
}
.cid-txlL4lRfxT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-txlL4lRfxT .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-txlL4lRfxT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-txlL4lRfxT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-txlL4lRfxT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-txlL4lRfxT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-txlL4lRfxT .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-txlL4lRfxT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-txlL4lRfxT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-txlL4lRfxT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-txlL4lRfxT .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-txlL4lRfxT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-txlL4lRfxT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txlL4lRfxT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-txlL4lRfxT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txlL4lRfxT .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-txlL4lRfxT .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-txlL4lRfxT .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-txlL4lRfxT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-txlL4lRfxT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-txlL4lRfxT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-txlL4lRfxT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-txlL4lRfxT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-txlL4lRfxT button.navbar-toggler:focus {
  outline: none;
}
.cid-txlL4lRfxT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txlL4lRfxT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txlL4lRfxT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txlL4lRfxT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txlL4lRfxT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txlL4lRfxT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txlL4lRfxT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txlL4lRfxT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txlL4lRfxT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txlL4lRfxT .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-txlL4lRfxT .collapsed .btn {
  display: flex;
}
.cid-txlL4lRfxT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-txlL4lRfxT .collapsed .navbar-collapse.collapsing,
.cid-txlL4lRfxT .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-txlL4lRfxT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-txlL4lRfxT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-txlL4lRfxT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-txlL4lRfxT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-txlL4lRfxT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-txlL4lRfxT .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-txlL4lRfxT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-txlL4lRfxT .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-txlL4lRfxT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-txlL4lRfxT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-txlL4lRfxT .collapsed button.navbar-toggler {
  display: block;
}
.cid-txlL4lRfxT .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-txlL4lRfxT .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-txlL4lRfxT .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-txlL4lRfxT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-txlL4lRfxT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-txlL4lRfxT .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-txlL4lRfxT .navbar-expand {
    flex-direction: column;
  }
  .cid-txlL4lRfxT img {
    height: 3.8rem !important;
  }
  .cid-txlL4lRfxT .btn {
    display: flex;
  }
  .cid-txlL4lRfxT button.navbar-toggler {
    display: block;
  }
  .cid-txlL4lRfxT .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-txlL4lRfxT .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-txlL4lRfxT .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-txlL4lRfxT .navbar-collapse.collapsing,
  .cid-txlL4lRfxT .navbar-collapse.show {
    display: block !important;
  }
  .cid-txlL4lRfxT .navbar-collapse.collapsing .navbar-nav,
  .cid-txlL4lRfxT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-txlL4lRfxT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-txlL4lRfxT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-txlL4lRfxT .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-txlL4lRfxT .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-txlL4lRfxT .navbar-collapse.collapsing .navbar-buttons,
  .cid-txlL4lRfxT .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-txlL4lRfxT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-txlL4lRfxT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-txlL4lRfxT .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-txlL4lRfxT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-txlL4lRfxT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-txlL4lRfxT .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-txlL4lRfxT .menu-logo {
    flex-shrink: 0;
  }
}
.cid-txlL4lRfxT .navbar-collapse {
  flex-basis: auto;
}
.cid-txlL4lRfxT .nav-link:hover,
.cid-txlL4lRfxT .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tAG0c8SyTV {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tAG0c8SyTV P {
  color: #767676;
}
.cid-tAG0Wc82rI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tAG0Wc82rI .mbr-section-subtitle {
  color: #767676;
}
.cid-tAFUO9gU2V {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tAFUO9gU2V .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tAFUO9gU2V .video-block {
    width: 100% !important;
  }
}
.cid-txlL4eFIAu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txlL4eFIAu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txlL4eFIAu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txlL4eFIAu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txlL4eFIAu .title {
  padding: 0 2rem;
}
.cid-txlL4eFIAu .container {
  padding: 0 1rem;
}
.cid-txlL4eFIAu .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-txlL4eFIAu .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-txlL4eFIAu .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txlL4eFIAu .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txlL4eFIAu .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-txlL4eFIAu .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-txlL4eFIAu .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-txlL4eFIAu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txlL4eFIAu .icon-focus {
  display: none;
}
.cid-txlL4eFIAu .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-txlL4eFIAu .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-txlL4eFIAu li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-txlL4eFIAu li {
  position: relative;
}
.cid-txlL4eFIAu .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-txlL4eFIAu .btn {
  font-family: Rubik !important;
}
.cid-txlL4eFIAu .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-txlL4eFIAu .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txlL4eFIAu li:not(:last-child):after {
    top: 9px;
  }
  .cid-txlL4eFIAu .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-txlL4eFIAu .container {
    padding: 0rem 0.5rem;
  }
  .cid-txlL4eFIAu .title {
    padding: 0 1rem;
  }
}
.cid-txlL4eFIAu H2 {
  color: #000000;
}
.cid-txmq9hOint {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-txmq9hOint .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txmq9hOint .section-text {
  padding: 2rem 0;
}
.cid-txmq9hOint .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-txmq9hOint .inner-container {
    width: 100% !important;
  }
}
.cid-txlL4pLkcr {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-txlL4pLkcr .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-txlL4pLkcr .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-txlL4pLkcr .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-txlL4pLkcr .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-txlL4pLkcr .plan .list-group-item:last-child::after {
  display: none;
}
.cid-txlL4pLkcr .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-txlL4pLkcr .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txlL4pLkcr .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-txlL4pLkcr .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-txlL4pLkcr .price-figure {
    font-size: 4.25rem;
  }
}
.cid-txlL4pLkcr .plan-title {
  color: #9933cc;
}
.cid-txlL4k2rqM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-txlL4k2rqM .mbr-text {
    text-align: center;
  }
}
.cid-txlL4k2rqM .container-fluid {
  padding: 0;
}
.cid-txlL4k2rqM .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-txlL4k2rqM img {
  height: 100%;
  object-fit: cover;
}
.cid-txlL4k2rqM .mbr-figure {
  height: 100%;
}
.cid-txlL4k2rqM .col-lg-6 {
  padding: 0;
}
.cid-txlL4k2rqM .row {
  margin: 0;
}
.cid-uYHAG6K665 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uYHAG6K665 .mbr-section-subtitle {
  color: #767676;
}
.cid-tAG2IsYtj3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tAG2IsYtj3 .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-tAG2IsYtj3 .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-tAG2IsYtj3 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-tAG2IsYtj3 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-tAG2IsYtj3 .plan .list-group-item:last-child::after {
  display: none;
}
.cid-tAG2IsYtj3 .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-tAG2IsYtj3 .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tAG2IsYtj3 .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-tAG2IsYtj3 .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-tAG2IsYtj3 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tAG2IsYtj3 .plan-title {
  color: #9933cc;
}
.cid-txlL4kVGB6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-txlL4kVGB6 .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-txlL4kVGB6 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-txlL4kVGB6 .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-txlL4kVGB6 .mbr-figure,
  .cid-txlL4kVGB6 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-txlL4roA7q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txlL4roA7q .title {
  margin-bottom: 2rem;
}
.cid-txlL4roA7q .mbr-section-subtitle {
  color: #767676;
}
.cid-txlL4roA7q a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-txlL4roA7q a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-txlL4roA7q textarea.form-control {
  min-height: 188px;
}
.cid-txlL4tZRc8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txlL4tZRc8 .content {
    text-align: center;
  }
  .cid-txlL4tZRc8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txlL4tZRc8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txlL4tZRc8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txlL4tZRc8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txlL4tZRc8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txlL4tZRc8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txlL4tZRc8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txlL4tZRc8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txlL4tZRc8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txlL4tZRc8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txlL4tZRc8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txlL4tZRc8 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txlL4tZRc8 H5 {
  color: #000000;
}
.cid-txlL4tZRc8 P {
  color: #000000;
}
.cid-txlL4vgGn0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txlL4vgGn0 .content {
    text-align: center;
  }
  .cid-txlL4vgGn0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txlL4vgGn0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txlL4vgGn0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txlL4vgGn0 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txlL4vgGn0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txlL4vgGn0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txlL4vgGn0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txlL4vgGn0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txlL4vgGn0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txlL4vgGn0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txlL4vgGn0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txlL4vgGn0 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txlL4vgGn0 H5 {
  color: #000000;
}
.cid-txlL4vgGn0 P {
  color: #000000;
}
.cid-txrU6A6EJU .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-txrU6A6EJU .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-txrU6A6EJU a {
  font-style: normal;
}
.cid-txrU6A6EJU .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-txrU6A6EJU .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-txrU6A6EJU .nav-item:focus,
.cid-txrU6A6EJU .nav-link:focus {
  outline: none;
}
.cid-txrU6A6EJU .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-txrU6A6EJU .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-txrU6A6EJU .menu-logo {
  margin-right: auto;
}
.cid-txrU6A6EJU .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-txrU6A6EJU .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-txrU6A6EJU .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-txrU6A6EJU .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-txrU6A6EJU .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-txrU6A6EJU .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-txrU6A6EJU .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-txrU6A6EJU .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-txrU6A6EJU .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-txrU6A6EJU .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-txrU6A6EJU .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-txrU6A6EJU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-txrU6A6EJU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrU6A6EJU .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-txrU6A6EJU .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrU6A6EJU .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-txrU6A6EJU .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-txrU6A6EJU .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-txrU6A6EJU .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-txrU6A6EJU .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-txrU6A6EJU .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-txrU6A6EJU .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-txrU6A6EJU button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-txrU6A6EJU button.navbar-toggler:focus {
  outline: none;
}
.cid-txrU6A6EJU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txrU6A6EJU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txrU6A6EJU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txrU6A6EJU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txrU6A6EJU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txrU6A6EJU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrU6A6EJU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txrU6A6EJU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txrU6A6EJU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrU6A6EJU .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-txrU6A6EJU .collapsed .btn {
  display: flex;
}
.cid-txrU6A6EJU .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-txrU6A6EJU .collapsed .navbar-collapse.collapsing,
.cid-txrU6A6EJU .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-txrU6A6EJU .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-txrU6A6EJU .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-txrU6A6EJU .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-txrU6A6EJU .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-txrU6A6EJU .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-txrU6A6EJU .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-txrU6A6EJU .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-txrU6A6EJU .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-txrU6A6EJU .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-txrU6A6EJU .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-txrU6A6EJU .collapsed button.navbar-toggler {
  display: block;
}
.cid-txrU6A6EJU .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-txrU6A6EJU .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-txrU6A6EJU .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-txrU6A6EJU .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-txrU6A6EJU .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-txrU6A6EJU .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-txrU6A6EJU .navbar-expand {
    flex-direction: column;
  }
  .cid-txrU6A6EJU img {
    height: 3.8rem !important;
  }
  .cid-txrU6A6EJU .btn {
    display: flex;
  }
  .cid-txrU6A6EJU button.navbar-toggler {
    display: block;
  }
  .cid-txrU6A6EJU .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-txrU6A6EJU .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-txrU6A6EJU .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-txrU6A6EJU .navbar-collapse.collapsing,
  .cid-txrU6A6EJU .navbar-collapse.show {
    display: block !important;
  }
  .cid-txrU6A6EJU .navbar-collapse.collapsing .navbar-nav,
  .cid-txrU6A6EJU .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-txrU6A6EJU .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-txrU6A6EJU .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-txrU6A6EJU .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-txrU6A6EJU .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrU6A6EJU .navbar-collapse.collapsing .navbar-buttons,
  .cid-txrU6A6EJU .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-txrU6A6EJU .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-txrU6A6EJU .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrU6A6EJU .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-txrU6A6EJU .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-txrU6A6EJU .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-txrU6A6EJU .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-txrU6A6EJU .menu-logo {
    flex-shrink: 0;
  }
}
.cid-txrU6A6EJU .navbar-collapse {
  flex-basis: auto;
}
.cid-txrU6A6EJU .nav-link:hover,
.cid-txrU6A6EJU .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-txrU6rexfp {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txrU6rexfp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txrU6rexfp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrU6rexfp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrU6rexfp .title {
  padding: 0 2rem;
}
.cid-txrU6rexfp .container {
  padding: 0 1rem;
}
.cid-txrU6rexfp .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-txrU6rexfp .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-txrU6rexfp .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrU6rexfp .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrU6rexfp .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-txrU6rexfp .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-txrU6rexfp .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-txrU6rexfp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txrU6rexfp .icon-focus {
  display: none;
}
.cid-txrU6rexfp .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-txrU6rexfp .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-txrU6rexfp li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-txrU6rexfp li {
  position: relative;
}
.cid-txrU6rexfp .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-txrU6rexfp .btn {
  font-family: Rubik !important;
}
.cid-txrU6rexfp .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-txrU6rexfp .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrU6rexfp li:not(:last-child):after {
    top: 9px;
  }
  .cid-txrU6rexfp .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-txrU6rexfp .container {
    padding: 0rem 0.5rem;
  }
  .cid-txrU6rexfp .title {
    padding: 0 1rem;
  }
}
.cid-txrU6rexfp H2 {
  color: #000000;
}
.cid-txrU6uy6rl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-txrU6uy6rl .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txrU6uy6rl .section-text {
  padding: 2rem 0;
}
.cid-txrU6uy6rl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-txrU6uy6rl .inner-container {
    width: 100% !important;
  }
}
.cid-txrU6v9ajV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-txrU6v9ajV .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-txrU6v9ajV .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-txrU6v9ajV .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-txrU6v9ajV .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-txrU6v9ajV .plan .list-group-item:last-child::after {
  display: none;
}
.cid-txrU6v9ajV .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-txrU6v9ajV .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txrU6v9ajV .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-txrU6v9ajV .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-txrU6v9ajV .price-figure {
    font-size: 4.25rem;
  }
}
.cid-txrU6v9ajV .plan-title {
  color: #9933cc;
}
.cid-txrU6wXcY4 .modal-body .close {
  background: #1b1b1b;
}
.cid-txrU6wXcY4 .modal-body .close span {
  font-style: normal;
}
.cid-txrU6wXcY4 .carousel-inner > .active,
.cid-txrU6wXcY4 .carousel-inner > .next,
.cid-txrU6wXcY4 .carousel-inner > .prev {
  display: table;
}
.cid-txrU6wXcY4 .carousel-control .icon-next,
.cid-txrU6wXcY4 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-txrU6wXcY4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrU6wXcY4 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrU6wXcY4 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-txrU6wXcY4 .boxed-slider > div {
  position: relative;
}
.cid-txrU6wXcY4 .container img {
  width: 100%;
}
.cid-txrU6wXcY4 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-txrU6wXcY4 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrU6wXcY4 .mbr-table-cell {
  padding: 0;
}
.cid-txrU6wXcY4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-txrU6wXcY4 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-txrU6wXcY4 .mbr-overlay {
  z-index: 1;
}
.cid-txrU6wXcY4 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrU6wXcY4 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-txrU6wXcY4 .carousel-item .container {
    width: 100%;
  }
}
.cid-txrU6wXcY4 .carousel-item-next.carousel-item-left,
.cid-txrU6wXcY4 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-txrU6wXcY4 .active.carousel-item-right,
.cid-txrU6wXcY4 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-txrU6wXcY4 .active.carousel-item-left,
.cid-txrU6wXcY4 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-txrU6wXcY4 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-txrU6wXcY4 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrU6wXcY4 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrU6wXcY4 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-txrU6wXcY4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txrU6wXcY4 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-txrU6wXcY4 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-txrU6wXcY4 .mbr-slider .carousel-indicators li.active,
.cid-txrU6wXcY4 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-txrU6wXcY4 .mbr-slider .carousel-indicators li::after,
.cid-txrU6wXcY4 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-txrU6wXcY4 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-txrU6wXcY4 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-txrU6wXcY4 .mbr-slider > .container img {
  width: 100%;
}
.cid-txrU6wXcY4 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-txrU6wXcY4 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-txrU6wXcY4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrU6wXcY4 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrU6wXcY4 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-txrU6wXcY4 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-txrU6wXcY4 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-txrU6wXcY4 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-txrU6wXcY4 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-txrU6wXcY4 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrU6wXcY4 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-txrU6wXcY4 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-txrU6wXcY4 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-txrU6wXcY4 H2 {
  text-align: left;
  color: #ffffff;
}
.cid-txrU6wXcY4 P {
  text-align: left;
  color: #ffffff;
}
.cid-txrU6yl4g0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-txrU6yl4g0 .mbr-text {
    text-align: center;
  }
}
.cid-txrU6yl4g0 .container-fluid {
  padding: 0;
}
.cid-txrU6yl4g0 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-txrU6yl4g0 img {
  height: 100%;
  object-fit: cover;
}
.cid-txrU6yl4g0 .mbr-figure {
  height: 100%;
}
.cid-txrU6yl4g0 .col-lg-6 {
  padding: 0;
}
.cid-txrU6yl4g0 .row {
  margin: 0;
}
.cid-txrU6ziWVt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-txrU6ziWVt .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-txrU6ziWVt .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-txrU6ziWVt .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-txrU6ziWVt .mbr-figure,
  .cid-txrU6ziWVt img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-txrU6BkLMJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-txrU6BkLMJ .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-txrU6BkLMJ .social-list a:focus {
  text-decoration: none;
}
.cid-txrU6CEX52 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-txrU6CEX52 .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-txrU6CEX52 .mbr-text {
  color: #cccccc;
}
.cid-txrU6CEX52 .border-r {
  border-right: 1px solid #656565;
}
.cid-txrU6CEX52 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-txrU6CEX52 .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-txrU6CEX52 .card {
    margin-bottom: 2rem;
  }
}
.cid-txrU6DU1SX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txrU6DU1SX .title {
  margin-bottom: 2rem;
}
.cid-txrU6DU1SX .mbr-section-subtitle {
  color: #767676;
}
.cid-txrU6DU1SX a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-txrU6DU1SX a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-txrU6DU1SX textarea.form-control {
  min-height: 188px;
}
.cid-txrU6EXR3u {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrU6EXR3u .content {
    text-align: center;
  }
  .cid-txrU6EXR3u .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrU6EXR3u .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrU6EXR3u .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrU6EXR3u .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrU6EXR3u .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrU6EXR3u .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrU6EXR3u .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrU6EXR3u .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrU6EXR3u .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrU6EXR3u .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrU6EXR3u .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrU6EXR3u .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrU6EXR3u H5 {
  color: #000000;
}
.cid-txrU6EXR3u P {
  color: #000000;
}
.cid-txrU6G9QXw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrU6G9QXw .content {
    text-align: center;
  }
  .cid-txrU6G9QXw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrU6G9QXw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrU6G9QXw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrU6G9QXw .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrU6G9QXw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrU6G9QXw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrU6G9QXw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrU6G9QXw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrU6G9QXw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrU6G9QXw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrU6G9QXw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrU6G9QXw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrU6G9QXw H5 {
  color: #000000;
}
.cid-txrU6G9QXw P {
  color: #000000;
}
.cid-txrUhDKQ99 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-txrUhDKQ99 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-txrUhDKQ99 a {
  font-style: normal;
}
.cid-txrUhDKQ99 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-txrUhDKQ99 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-txrUhDKQ99 .nav-item:focus,
.cid-txrUhDKQ99 .nav-link:focus {
  outline: none;
}
.cid-txrUhDKQ99 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-txrUhDKQ99 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-txrUhDKQ99 .menu-logo {
  margin-right: auto;
}
.cid-txrUhDKQ99 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-txrUhDKQ99 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-txrUhDKQ99 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-txrUhDKQ99 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-txrUhDKQ99 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-txrUhDKQ99 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-txrUhDKQ99 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-txrUhDKQ99 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-txrUhDKQ99 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-txrUhDKQ99 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-txrUhDKQ99 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-txrUhDKQ99 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-txrUhDKQ99 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrUhDKQ99 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-txrUhDKQ99 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrUhDKQ99 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-txrUhDKQ99 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-txrUhDKQ99 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-txrUhDKQ99 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-txrUhDKQ99 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-txrUhDKQ99 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-txrUhDKQ99 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-txrUhDKQ99 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-txrUhDKQ99 button.navbar-toggler:focus {
  outline: none;
}
.cid-txrUhDKQ99 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txrUhDKQ99 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txrUhDKQ99 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txrUhDKQ99 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txrUhDKQ99 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txrUhDKQ99 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrUhDKQ99 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txrUhDKQ99 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txrUhDKQ99 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrUhDKQ99 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-txrUhDKQ99 .collapsed .btn {
  display: flex;
}
.cid-txrUhDKQ99 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-txrUhDKQ99 .collapsed .navbar-collapse.collapsing,
.cid-txrUhDKQ99 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-txrUhDKQ99 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-txrUhDKQ99 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-txrUhDKQ99 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-txrUhDKQ99 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-txrUhDKQ99 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-txrUhDKQ99 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-txrUhDKQ99 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-txrUhDKQ99 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-txrUhDKQ99 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-txrUhDKQ99 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-txrUhDKQ99 .collapsed button.navbar-toggler {
  display: block;
}
.cid-txrUhDKQ99 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-txrUhDKQ99 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-txrUhDKQ99 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-txrUhDKQ99 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-txrUhDKQ99 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-txrUhDKQ99 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-txrUhDKQ99 .navbar-expand {
    flex-direction: column;
  }
  .cid-txrUhDKQ99 img {
    height: 3.8rem !important;
  }
  .cid-txrUhDKQ99 .btn {
    display: flex;
  }
  .cid-txrUhDKQ99 button.navbar-toggler {
    display: block;
  }
  .cid-txrUhDKQ99 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-txrUhDKQ99 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-txrUhDKQ99 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-txrUhDKQ99 .navbar-collapse.collapsing,
  .cid-txrUhDKQ99 .navbar-collapse.show {
    display: block !important;
  }
  .cid-txrUhDKQ99 .navbar-collapse.collapsing .navbar-nav,
  .cid-txrUhDKQ99 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-txrUhDKQ99 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-txrUhDKQ99 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-txrUhDKQ99 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-txrUhDKQ99 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrUhDKQ99 .navbar-collapse.collapsing .navbar-buttons,
  .cid-txrUhDKQ99 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-txrUhDKQ99 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-txrUhDKQ99 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrUhDKQ99 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-txrUhDKQ99 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-txrUhDKQ99 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-txrUhDKQ99 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-txrUhDKQ99 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-txrUhDKQ99 .navbar-collapse {
  flex-basis: auto;
}
.cid-txrUhDKQ99 .nav-link:hover,
.cid-txrUhDKQ99 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-txrUhvnCBq {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txrUhvnCBq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txrUhvnCBq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrUhvnCBq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrUhvnCBq .title {
  padding: 0 2rem;
}
.cid-txrUhvnCBq .container {
  padding: 0 1rem;
}
.cid-txrUhvnCBq .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-txrUhvnCBq .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-txrUhvnCBq .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrUhvnCBq .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrUhvnCBq .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-txrUhvnCBq .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-txrUhvnCBq .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-txrUhvnCBq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txrUhvnCBq .icon-focus {
  display: none;
}
.cid-txrUhvnCBq .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-txrUhvnCBq .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-txrUhvnCBq li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-txrUhvnCBq li {
  position: relative;
}
.cid-txrUhvnCBq .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-txrUhvnCBq .btn {
  font-family: Rubik !important;
}
.cid-txrUhvnCBq .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-txrUhvnCBq .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUhvnCBq li:not(:last-child):after {
    top: 9px;
  }
  .cid-txrUhvnCBq .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-txrUhvnCBq .container {
    padding: 0rem 0.5rem;
  }
  .cid-txrUhvnCBq .title {
    padding: 0 1rem;
  }
}
.cid-txrUhvnCBq H2 {
  color: #000000;
}
.cid-txrUhyEI1C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-txrUhyEI1C .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txrUhyEI1C .section-text {
  padding: 2rem 0;
}
.cid-txrUhyEI1C .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-txrUhyEI1C .inner-container {
    width: 100% !important;
  }
}
.cid-txrUhzdXNY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-txrUhzdXNY .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-txrUhzdXNY .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-txrUhzdXNY .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-txrUhzdXNY .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-txrUhzdXNY .plan .list-group-item:last-child::after {
  display: none;
}
.cid-txrUhzdXNY .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-txrUhzdXNY .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txrUhzdXNY .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-txrUhzdXNY .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-txrUhzdXNY .price-figure {
    font-size: 4.25rem;
  }
}
.cid-txrUhzdXNY .plan-title {
  color: #9933cc;
}
.cid-txrUhAOOyb .modal-body .close {
  background: #1b1b1b;
}
.cid-txrUhAOOyb .modal-body .close span {
  font-style: normal;
}
.cid-txrUhAOOyb .carousel-inner > .active,
.cid-txrUhAOOyb .carousel-inner > .next,
.cid-txrUhAOOyb .carousel-inner > .prev {
  display: table;
}
.cid-txrUhAOOyb .carousel-control .icon-next,
.cid-txrUhAOOyb .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-txrUhAOOyb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUhAOOyb .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrUhAOOyb .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-txrUhAOOyb .boxed-slider > div {
  position: relative;
}
.cid-txrUhAOOyb .container img {
  width: 100%;
}
.cid-txrUhAOOyb .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-txrUhAOOyb .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrUhAOOyb .mbr-table-cell {
  padding: 0;
}
.cid-txrUhAOOyb .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-txrUhAOOyb .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-txrUhAOOyb .mbr-overlay {
  z-index: 1;
}
.cid-txrUhAOOyb .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrUhAOOyb .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-txrUhAOOyb .carousel-item .container {
    width: 100%;
  }
}
.cid-txrUhAOOyb .carousel-item-next.carousel-item-left,
.cid-txrUhAOOyb .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-txrUhAOOyb .active.carousel-item-right,
.cid-txrUhAOOyb .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-txrUhAOOyb .active.carousel-item-left,
.cid-txrUhAOOyb .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-txrUhAOOyb .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-txrUhAOOyb .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrUhAOOyb .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrUhAOOyb .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-txrUhAOOyb .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txrUhAOOyb .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-txrUhAOOyb .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-txrUhAOOyb .mbr-slider .carousel-indicators li.active,
.cid-txrUhAOOyb .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-txrUhAOOyb .mbr-slider .carousel-indicators li::after,
.cid-txrUhAOOyb .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-txrUhAOOyb .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-txrUhAOOyb .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-txrUhAOOyb .mbr-slider > .container img {
  width: 100%;
}
.cid-txrUhAOOyb .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-txrUhAOOyb .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-txrUhAOOyb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrUhAOOyb .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrUhAOOyb .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-txrUhAOOyb .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-txrUhAOOyb .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-txrUhAOOyb .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-txrUhAOOyb .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-txrUhAOOyb .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrUhAOOyb .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-txrUhAOOyb .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-txrUhAOOyb .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-txrUhAOOyb H2 {
  text-align: left;
  color: #ffffff;
}
.cid-txrUhAOOyb P {
  text-align: left;
  color: #ffffff;
}
.cid-txrUhC3ZhM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-txrUhC3ZhM .mbr-text {
    text-align: center;
  }
}
.cid-txrUhC3ZhM .container-fluid {
  padding: 0;
}
.cid-txrUhC3ZhM .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-txrUhC3ZhM img {
  height: 100%;
  object-fit: cover;
}
.cid-txrUhC3ZhM .mbr-figure {
  height: 100%;
}
.cid-txrUhC3ZhM .col-lg-6 {
  padding: 0;
}
.cid-txrUhC3ZhM .row {
  margin: 0;
}
.cid-txrUhCWghQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-txrUhCWghQ .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-txrUhCWghQ .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-txrUhCWghQ .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-txrUhCWghQ .mbr-figure,
  .cid-txrUhCWghQ img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-txrUhF7TiV {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-txrUhF7TiV .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-txrUhF7TiV .social-list a:focus {
  text-decoration: none;
}
.cid-txrUhG7eyD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-txrUhG7eyD .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-txrUhG7eyD .mbr-text {
  color: #cccccc;
}
.cid-txrUhG7eyD .border-r {
  border-right: 1px solid #656565;
}
.cid-txrUhG7eyD p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-txrUhG7eyD .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-txrUhG7eyD .card {
    margin-bottom: 2rem;
  }
}
.cid-txrUhHlKoe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txrUhHlKoe .title {
  margin-bottom: 2rem;
}
.cid-txrUhHlKoe .mbr-section-subtitle {
  color: #767676;
}
.cid-txrUhHlKoe a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-txrUhHlKoe a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-txrUhHlKoe textarea.form-control {
  min-height: 188px;
}
.cid-txrUhInmvO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrUhInmvO .content {
    text-align: center;
  }
  .cid-txrUhInmvO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrUhInmvO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrUhInmvO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrUhInmvO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrUhInmvO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrUhInmvO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrUhInmvO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrUhInmvO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrUhInmvO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrUhInmvO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrUhInmvO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUhInmvO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrUhInmvO H5 {
  color: #000000;
}
.cid-txrUhInmvO P {
  color: #000000;
}
.cid-txrUhJvYoY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrUhJvYoY .content {
    text-align: center;
  }
  .cid-txrUhJvYoY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrUhJvYoY .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrUhJvYoY .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrUhJvYoY .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrUhJvYoY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrUhJvYoY .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrUhJvYoY .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrUhJvYoY .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrUhJvYoY .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrUhJvYoY .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrUhJvYoY .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUhJvYoY .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrUhJvYoY H5 {
  color: #000000;
}
.cid-txrUhJvYoY P {
  color: #000000;
}
.cid-txrUkJSqKu .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-txrUkJSqKu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-txrUkJSqKu a {
  font-style: normal;
}
.cid-txrUkJSqKu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-txrUkJSqKu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-txrUkJSqKu .nav-item:focus,
.cid-txrUkJSqKu .nav-link:focus {
  outline: none;
}
.cid-txrUkJSqKu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-txrUkJSqKu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-txrUkJSqKu .menu-logo {
  margin-right: auto;
}
.cid-txrUkJSqKu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-txrUkJSqKu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-txrUkJSqKu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-txrUkJSqKu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-txrUkJSqKu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-txrUkJSqKu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-txrUkJSqKu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-txrUkJSqKu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-txrUkJSqKu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-txrUkJSqKu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-txrUkJSqKu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-txrUkJSqKu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-txrUkJSqKu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrUkJSqKu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-txrUkJSqKu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrUkJSqKu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-txrUkJSqKu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-txrUkJSqKu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-txrUkJSqKu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-txrUkJSqKu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-txrUkJSqKu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-txrUkJSqKu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-txrUkJSqKu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-txrUkJSqKu button.navbar-toggler:focus {
  outline: none;
}
.cid-txrUkJSqKu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txrUkJSqKu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txrUkJSqKu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txrUkJSqKu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txrUkJSqKu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txrUkJSqKu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrUkJSqKu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txrUkJSqKu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txrUkJSqKu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrUkJSqKu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-txrUkJSqKu .collapsed .btn {
  display: flex;
}
.cid-txrUkJSqKu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-txrUkJSqKu .collapsed .navbar-collapse.collapsing,
.cid-txrUkJSqKu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-txrUkJSqKu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-txrUkJSqKu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-txrUkJSqKu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-txrUkJSqKu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-txrUkJSqKu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-txrUkJSqKu .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-txrUkJSqKu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-txrUkJSqKu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-txrUkJSqKu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-txrUkJSqKu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-txrUkJSqKu .collapsed button.navbar-toggler {
  display: block;
}
.cid-txrUkJSqKu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-txrUkJSqKu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-txrUkJSqKu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-txrUkJSqKu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-txrUkJSqKu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-txrUkJSqKu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-txrUkJSqKu .navbar-expand {
    flex-direction: column;
  }
  .cid-txrUkJSqKu img {
    height: 3.8rem !important;
  }
  .cid-txrUkJSqKu .btn {
    display: flex;
  }
  .cid-txrUkJSqKu button.navbar-toggler {
    display: block;
  }
  .cid-txrUkJSqKu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-txrUkJSqKu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-txrUkJSqKu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-txrUkJSqKu .navbar-collapse.collapsing,
  .cid-txrUkJSqKu .navbar-collapse.show {
    display: block !important;
  }
  .cid-txrUkJSqKu .navbar-collapse.collapsing .navbar-nav,
  .cid-txrUkJSqKu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-txrUkJSqKu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-txrUkJSqKu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-txrUkJSqKu .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-txrUkJSqKu .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrUkJSqKu .navbar-collapse.collapsing .navbar-buttons,
  .cid-txrUkJSqKu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-txrUkJSqKu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-txrUkJSqKu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrUkJSqKu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-txrUkJSqKu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-txrUkJSqKu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-txrUkJSqKu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-txrUkJSqKu .menu-logo {
    flex-shrink: 0;
  }
}
.cid-txrUkJSqKu .navbar-collapse {
  flex-basis: auto;
}
.cid-txrUkJSqKu .nav-link:hover,
.cid-txrUkJSqKu .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-txrUkBDGUX {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txrUkBDGUX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txrUkBDGUX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrUkBDGUX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrUkBDGUX .title {
  padding: 0 2rem;
}
.cid-txrUkBDGUX .container {
  padding: 0 1rem;
}
.cid-txrUkBDGUX .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-txrUkBDGUX .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-txrUkBDGUX .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrUkBDGUX .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrUkBDGUX .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-txrUkBDGUX .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-txrUkBDGUX .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-txrUkBDGUX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txrUkBDGUX .icon-focus {
  display: none;
}
.cid-txrUkBDGUX .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-txrUkBDGUX .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-txrUkBDGUX li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-txrUkBDGUX li {
  position: relative;
}
.cid-txrUkBDGUX .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-txrUkBDGUX .btn {
  font-family: Rubik !important;
}
.cid-txrUkBDGUX .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-txrUkBDGUX .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUkBDGUX li:not(:last-child):after {
    top: 9px;
  }
  .cid-txrUkBDGUX .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-txrUkBDGUX .container {
    padding: 0rem 0.5rem;
  }
  .cid-txrUkBDGUX .title {
    padding: 0 1rem;
  }
}
.cid-txrUkBDGUX H2 {
  color: #000000;
}
.cid-txrUkEJtVB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-txrUkEJtVB .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txrUkEJtVB .section-text {
  padding: 2rem 0;
}
.cid-txrUkEJtVB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-txrUkEJtVB .inner-container {
    width: 100% !important;
  }
}
.cid-txrUkFjNAt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-txrUkFjNAt .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-txrUkFjNAt .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-txrUkFjNAt .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-txrUkFjNAt .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-txrUkFjNAt .plan .list-group-item:last-child::after {
  display: none;
}
.cid-txrUkFjNAt .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-txrUkFjNAt .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txrUkFjNAt .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-txrUkFjNAt .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-txrUkFjNAt .price-figure {
    font-size: 4.25rem;
  }
}
.cid-txrUkFjNAt .plan-title {
  color: #9933cc;
}
.cid-txrUkGOE81 .modal-body .close {
  background: #1b1b1b;
}
.cid-txrUkGOE81 .modal-body .close span {
  font-style: normal;
}
.cid-txrUkGOE81 .carousel-inner > .active,
.cid-txrUkGOE81 .carousel-inner > .next,
.cid-txrUkGOE81 .carousel-inner > .prev {
  display: table;
}
.cid-txrUkGOE81 .carousel-control .icon-next,
.cid-txrUkGOE81 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-txrUkGOE81 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUkGOE81 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrUkGOE81 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-txrUkGOE81 .boxed-slider > div {
  position: relative;
}
.cid-txrUkGOE81 .container img {
  width: 100%;
}
.cid-txrUkGOE81 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-txrUkGOE81 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrUkGOE81 .mbr-table-cell {
  padding: 0;
}
.cid-txrUkGOE81 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-txrUkGOE81 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-txrUkGOE81 .mbr-overlay {
  z-index: 1;
}
.cid-txrUkGOE81 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrUkGOE81 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-txrUkGOE81 .carousel-item .container {
    width: 100%;
  }
}
.cid-txrUkGOE81 .carousel-item-next.carousel-item-left,
.cid-txrUkGOE81 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-txrUkGOE81 .active.carousel-item-right,
.cid-txrUkGOE81 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-txrUkGOE81 .active.carousel-item-left,
.cid-txrUkGOE81 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-txrUkGOE81 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-txrUkGOE81 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrUkGOE81 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrUkGOE81 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-txrUkGOE81 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txrUkGOE81 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-txrUkGOE81 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-txrUkGOE81 .mbr-slider .carousel-indicators li.active,
.cid-txrUkGOE81 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-txrUkGOE81 .mbr-slider .carousel-indicators li::after,
.cid-txrUkGOE81 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-txrUkGOE81 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-txrUkGOE81 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-txrUkGOE81 .mbr-slider > .container img {
  width: 100%;
}
.cid-txrUkGOE81 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-txrUkGOE81 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-txrUkGOE81 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrUkGOE81 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrUkGOE81 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-txrUkGOE81 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-txrUkGOE81 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-txrUkGOE81 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-txrUkGOE81 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-txrUkGOE81 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrUkGOE81 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-txrUkGOE81 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-txrUkGOE81 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-txrUkGOE81 H2 {
  text-align: left;
  color: #ffffff;
}
.cid-txrUkGOE81 P {
  text-align: left;
  color: #ffffff;
}
.cid-txrUkIbOaW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-txrUkIbOaW .mbr-text {
    text-align: center;
  }
}
.cid-txrUkIbOaW .container-fluid {
  padding: 0;
}
.cid-txrUkIbOaW .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-txrUkIbOaW img {
  height: 100%;
  object-fit: cover;
}
.cid-txrUkIbOaW .mbr-figure {
  height: 100%;
}
.cid-txrUkIbOaW .col-lg-6 {
  padding: 0;
}
.cid-txrUkIbOaW .row {
  margin: 0;
}
.cid-txrUkJ263K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-txrUkJ263K .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-txrUkJ263K .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-txrUkJ263K .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-txrUkJ263K .mbr-figure,
  .cid-txrUkJ263K img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-txrUkKZirq {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-txrUkKZirq .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-txrUkKZirq .social-list a:focus {
  text-decoration: none;
}
.cid-txrUkM9M3b {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-txrUkM9M3b .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-txrUkM9M3b .mbr-text {
  color: #cccccc;
}
.cid-txrUkM9M3b .border-r {
  border-right: 1px solid #656565;
}
.cid-txrUkM9M3b p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-txrUkM9M3b .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-txrUkM9M3b .card {
    margin-bottom: 2rem;
  }
}
.cid-txrUkNmV8n {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txrUkNmV8n .title {
  margin-bottom: 2rem;
}
.cid-txrUkNmV8n .mbr-section-subtitle {
  color: #767676;
}
.cid-txrUkNmV8n a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-txrUkNmV8n a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-txrUkNmV8n textarea.form-control {
  min-height: 188px;
}
.cid-txrUkOphvE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrUkOphvE .content {
    text-align: center;
  }
  .cid-txrUkOphvE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrUkOphvE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrUkOphvE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrUkOphvE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrUkOphvE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrUkOphvE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrUkOphvE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrUkOphvE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrUkOphvE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrUkOphvE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrUkOphvE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUkOphvE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrUkOphvE H5 {
  color: #000000;
}
.cid-txrUkOphvE P {
  color: #000000;
}
.cid-txrUkPBM5U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrUkPBM5U .content {
    text-align: center;
  }
  .cid-txrUkPBM5U .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrUkPBM5U .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrUkPBM5U .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrUkPBM5U .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrUkPBM5U .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrUkPBM5U .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrUkPBM5U .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrUkPBM5U .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrUkPBM5U .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrUkPBM5U .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrUkPBM5U .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUkPBM5U .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrUkPBM5U H5 {
  color: #000000;
}
.cid-txrUkPBM5U P {
  color: #000000;
}
.cid-txrUQ0yT0j .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-txrUQ0yT0j .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-txrUQ0yT0j a {
  font-style: normal;
}
.cid-txrUQ0yT0j .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-txrUQ0yT0j .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-txrUQ0yT0j .nav-item:focus,
.cid-txrUQ0yT0j .nav-link:focus {
  outline: none;
}
.cid-txrUQ0yT0j .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-txrUQ0yT0j .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-txrUQ0yT0j .menu-logo {
  margin-right: auto;
}
.cid-txrUQ0yT0j .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-txrUQ0yT0j .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-txrUQ0yT0j .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-txrUQ0yT0j .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-txrUQ0yT0j .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-txrUQ0yT0j .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-txrUQ0yT0j .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-txrUQ0yT0j .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-txrUQ0yT0j .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-txrUQ0yT0j .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-txrUQ0yT0j .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-txrUQ0yT0j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-txrUQ0yT0j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrUQ0yT0j .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-txrUQ0yT0j .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrUQ0yT0j .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-txrUQ0yT0j .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-txrUQ0yT0j .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-txrUQ0yT0j .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-txrUQ0yT0j .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-txrUQ0yT0j .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-txrUQ0yT0j .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-txrUQ0yT0j button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-txrUQ0yT0j button.navbar-toggler:focus {
  outline: none;
}
.cid-txrUQ0yT0j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txrUQ0yT0j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txrUQ0yT0j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txrUQ0yT0j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txrUQ0yT0j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txrUQ0yT0j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrUQ0yT0j nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txrUQ0yT0j nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txrUQ0yT0j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txrUQ0yT0j .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-txrUQ0yT0j .collapsed .btn {
  display: flex;
}
.cid-txrUQ0yT0j .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-txrUQ0yT0j .collapsed .navbar-collapse.collapsing,
.cid-txrUQ0yT0j .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-txrUQ0yT0j .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-txrUQ0yT0j .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-txrUQ0yT0j .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-txrUQ0yT0j .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-txrUQ0yT0j .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-txrUQ0yT0j .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-txrUQ0yT0j .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-txrUQ0yT0j .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-txrUQ0yT0j .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-txrUQ0yT0j .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-txrUQ0yT0j .collapsed button.navbar-toggler {
  display: block;
}
.cid-txrUQ0yT0j .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-txrUQ0yT0j .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-txrUQ0yT0j .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-txrUQ0yT0j .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-txrUQ0yT0j .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-txrUQ0yT0j .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-txrUQ0yT0j .navbar-expand {
    flex-direction: column;
  }
  .cid-txrUQ0yT0j img {
    height: 3.8rem !important;
  }
  .cid-txrUQ0yT0j .btn {
    display: flex;
  }
  .cid-txrUQ0yT0j button.navbar-toggler {
    display: block;
  }
  .cid-txrUQ0yT0j .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-txrUQ0yT0j .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-txrUQ0yT0j .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-txrUQ0yT0j .navbar-collapse.collapsing,
  .cid-txrUQ0yT0j .navbar-collapse.show {
    display: block !important;
  }
  .cid-txrUQ0yT0j .navbar-collapse.collapsing .navbar-nav,
  .cid-txrUQ0yT0j .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-txrUQ0yT0j .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-txrUQ0yT0j .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-txrUQ0yT0j .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-txrUQ0yT0j .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrUQ0yT0j .navbar-collapse.collapsing .navbar-buttons,
  .cid-txrUQ0yT0j .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-txrUQ0yT0j .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-txrUQ0yT0j .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-txrUQ0yT0j .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-txrUQ0yT0j .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-txrUQ0yT0j .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-txrUQ0yT0j .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-txrUQ0yT0j .menu-logo {
    flex-shrink: 0;
  }
}
.cid-txrUQ0yT0j .navbar-collapse {
  flex-basis: auto;
}
.cid-txrUQ0yT0j .nav-link:hover,
.cid-txrUQ0yT0j .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-txrUPSGL48 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txrUPSGL48 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txrUPSGL48 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrUPSGL48 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrUPSGL48 .title {
  padding: 0 2rem;
}
.cid-txrUPSGL48 .container {
  padding: 0 1rem;
}
.cid-txrUPSGL48 .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-txrUPSGL48 .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-txrUPSGL48 .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrUPSGL48 .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-txrUPSGL48 .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-txrUPSGL48 .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-txrUPSGL48 .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-txrUPSGL48 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txrUPSGL48 .icon-focus {
  display: none;
}
.cid-txrUPSGL48 .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-txrUPSGL48 .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-txrUPSGL48 li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-txrUPSGL48 li {
  position: relative;
}
.cid-txrUPSGL48 .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-txrUPSGL48 .btn {
  font-family: Rubik !important;
}
.cid-txrUPSGL48 .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-txrUPSGL48 .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUPSGL48 li:not(:last-child):after {
    top: 9px;
  }
  .cid-txrUPSGL48 .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-txrUPSGL48 .container {
    padding: 0rem 0.5rem;
  }
  .cid-txrUPSGL48 .title {
    padding: 0 1rem;
  }
}
.cid-txrUPSGL48 H2 {
  color: #000000;
}
.cid-txrUPV4jB3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-txrUPV4jB3 .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-txrUPV4jB3 .section-text {
  padding: 2rem 0;
}
.cid-txrUPV4jB3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-txrUPV4jB3 .inner-container {
    width: 100% !important;
  }
}
.cid-txrUPVEvRP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-txrUPVEvRP .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-txrUPVEvRP .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-txrUPVEvRP .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-txrUPVEvRP .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-txrUPVEvRP .plan .list-group-item:last-child::after {
  display: none;
}
.cid-txrUPVEvRP .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-txrUPVEvRP .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txrUPVEvRP .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-txrUPVEvRP .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-txrUPVEvRP .price-figure {
    font-size: 4.25rem;
  }
}
.cid-txrUPVEvRP .plan-title {
  color: #9933cc;
}
.cid-txrUPXF6hX .modal-body .close {
  background: #1b1b1b;
}
.cid-txrUPXF6hX .modal-body .close span {
  font-style: normal;
}
.cid-txrUPXF6hX .carousel-inner > .active,
.cid-txrUPXF6hX .carousel-inner > .next,
.cid-txrUPXF6hX .carousel-inner > .prev {
  display: table;
}
.cid-txrUPXF6hX .carousel-control .icon-next,
.cid-txrUPXF6hX .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-txrUPXF6hX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUPXF6hX .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrUPXF6hX .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-txrUPXF6hX .boxed-slider > div {
  position: relative;
}
.cid-txrUPXF6hX .container img {
  width: 100%;
}
.cid-txrUPXF6hX .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-txrUPXF6hX .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrUPXF6hX .mbr-table-cell {
  padding: 0;
}
.cid-txrUPXF6hX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-txrUPXF6hX .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-txrUPXF6hX .mbr-overlay {
  z-index: 1;
}
.cid-txrUPXF6hX .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrUPXF6hX .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-txrUPXF6hX .carousel-item .container {
    width: 100%;
  }
}
.cid-txrUPXF6hX .carousel-item-next.carousel-item-left,
.cid-txrUPXF6hX .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-txrUPXF6hX .active.carousel-item-right,
.cid-txrUPXF6hX .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-txrUPXF6hX .active.carousel-item-left,
.cid-txrUPXF6hX .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-txrUPXF6hX .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-txrUPXF6hX .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txrUPXF6hX .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txrUPXF6hX .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-txrUPXF6hX .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txrUPXF6hX .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-txrUPXF6hX .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-txrUPXF6hX .mbr-slider .carousel-indicators li.active,
.cid-txrUPXF6hX .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-txrUPXF6hX .mbr-slider .carousel-indicators li::after,
.cid-txrUPXF6hX .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-txrUPXF6hX .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-txrUPXF6hX .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-txrUPXF6hX .mbr-slider > .container img {
  width: 100%;
}
.cid-txrUPXF6hX .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-txrUPXF6hX .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-txrUPXF6hX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-txrUPXF6hX .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-txrUPXF6hX .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-txrUPXF6hX .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-txrUPXF6hX .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-txrUPXF6hX .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-txrUPXF6hX .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-txrUPXF6hX .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-txrUPXF6hX .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-txrUPXF6hX .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-txrUPXF6hX .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-txrUPXF6hX H2 {
  text-align: left;
  color: #ffffff;
}
.cid-txrUPXF6hX P {
  text-align: left;
  color: #ffffff;
}
.cid-txrUPYRqUw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-txrUPYRqUw .mbr-text {
    text-align: center;
  }
}
.cid-txrUPYRqUw .container-fluid {
  padding: 0;
}
.cid-txrUPYRqUw .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-txrUPYRqUw img {
  height: 100%;
  object-fit: cover;
}
.cid-txrUPYRqUw .mbr-figure {
  height: 100%;
}
.cid-txrUPYRqUw .col-lg-6 {
  padding: 0;
}
.cid-txrUPYRqUw .row {
  margin: 0;
}
.cid-txrUPZLnbU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-txrUPZLnbU .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-txrUPZLnbU .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-txrUPZLnbU .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-txrUPZLnbU .mbr-figure,
  .cid-txrUPZLnbU img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-txrUQ1RmEJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-txrUQ1RmEJ .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-txrUQ1RmEJ .social-list a:focus {
  text-decoration: none;
}
.cid-txrUQ2UHVh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-txrUQ2UHVh .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-txrUQ2UHVh .mbr-text {
  color: #cccccc;
}
.cid-txrUQ2UHVh .border-r {
  border-right: 1px solid #656565;
}
.cid-txrUQ2UHVh p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-txrUQ2UHVh .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-txrUQ2UHVh .card {
    margin-bottom: 2rem;
  }
}
.cid-txrUQ4dgAu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-txrUQ4dgAu .title {
  margin-bottom: 2rem;
}
.cid-txrUQ4dgAu .mbr-section-subtitle {
  color: #767676;
}
.cid-txrUQ4dgAu a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-txrUQ4dgAu a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-txrUQ4dgAu textarea.form-control {
  min-height: 188px;
}
.cid-txrUQ5eTtF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrUQ5eTtF .content {
    text-align: center;
  }
  .cid-txrUQ5eTtF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrUQ5eTtF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrUQ5eTtF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrUQ5eTtF .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrUQ5eTtF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrUQ5eTtF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrUQ5eTtF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrUQ5eTtF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrUQ5eTtF .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrUQ5eTtF .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrUQ5eTtF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUQ5eTtF .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrUQ5eTtF H5 {
  color: #000000;
}
.cid-txrUQ5eTtF P {
  color: #000000;
}
.cid-txrUQ6q1Rt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-txrUQ6q1Rt .content {
    text-align: center;
  }
  .cid-txrUQ6q1Rt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrUQ6q1Rt .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txrUQ6q1Rt .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txrUQ6q1Rt .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txrUQ6q1Rt .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txrUQ6q1Rt .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txrUQ6q1Rt .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txrUQ6q1Rt .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txrUQ6q1Rt .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txrUQ6q1Rt .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txrUQ6q1Rt .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txrUQ6q1Rt .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txrUQ6q1Rt H5 {
  color: #000000;
}
.cid-txrUQ6q1Rt P {
  color: #000000;
}
.cid-rDetd0duCN .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-rDetd0duCN .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rDetd0duCN a {
  font-style: normal;
}
.cid-rDetd0duCN .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rDetd0duCN .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rDetd0duCN .nav-item:focus,
.cid-rDetd0duCN .nav-link:focus {
  outline: none;
}
.cid-rDetd0duCN .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rDetd0duCN .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rDetd0duCN .menu-logo {
  margin-right: auto;
}
.cid-rDetd0duCN .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rDetd0duCN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rDetd0duCN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rDetd0duCN .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rDetd0duCN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rDetd0duCN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rDetd0duCN .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rDetd0duCN .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rDetd0duCN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rDetd0duCN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rDetd0duCN button.navbar-toggler:focus {
  outline: none;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rDetd0duCN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rDetd0duCN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rDetd0duCN .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rDetd0duCN .collapsed .btn {
  display: flex;
}
.cid-rDetd0duCN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing,
.cid-rDetd0duCN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rDetd0duCN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rDetd0duCN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rDetd0duCN .collapsed button.navbar-toggler {
  display: block;
}
.cid-rDetd0duCN .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rDetd0duCN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rDetd0duCN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rDetd0duCN .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rDetd0duCN .navbar-expand {
    flex-direction: column;
  }
  .cid-rDetd0duCN img {
    height: 3.8rem !important;
  }
  .cid-rDetd0duCN .btn {
    display: flex;
  }
  .cid-rDetd0duCN button.navbar-toggler {
    display: block;
  }
  .cid-rDetd0duCN .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rDetd0duCN .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rDetd0duCN .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing,
  .cid-rDetd0duCN .navbar-collapse.show {
    display: block !important;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-buttons,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rDetd0duCN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rDetd0duCN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rDetd0duCN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rDetd0duCN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rDetd0duCN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rDetd0duCN .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rDetd0duCN .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rDetd0duCN .navbar-collapse {
  flex-basis: auto;
}
.cid-rDetd0duCN .nav-link:hover,
.cid-rDetd0duCN .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tz4cRe5nRQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tz4cRe5nRQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tz4cRe5nRQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tz4cRe5nRQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tz4cRe5nRQ .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tz4cRe5nRQ .container {
  padding: 0;
}
.cid-tz4cRe5nRQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tz4cRe5nRQ .icon-focus {
  display: none;
}
.cid-tz4cRe5nRQ .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-tz4cRe5nRQ .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-tz4cRe5nRQ li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-tz4cRe5nRQ li {
  position: relative;
}
.cid-tz4cRe5nRQ .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tz4cRe5nRQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tz4cRe5nRQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tz4cRe5nRQ .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-tz4cRe5nRQ .btn {
  font-family: Rubik !important;
}
.cid-tz4cRe5nRQ .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tz4cRe5nRQ .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tz4cRe5nRQ .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tz4cRe5nRQ li:not(:last-child):after {
    top: 9px;
  }
  .cid-tz4cRe5nRQ .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
}
.cid-tz4cSMMtxU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tz4cSMMtxU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tz4cSMMtxU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tz4cSMMtxU .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tz4cSMMtxU .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tz4cSMMtxU .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tz4cSMMtxU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tz4cSMMtxU .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tz4cSMMtxU .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tz4cSMMtxU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tz4cSMMtxU .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tz4cSMMtxU .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tz4cSMMtxU .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tz4cSMMtxU .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tz4cSMMtxU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tz4cSMMtxU .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tz4cSMMtxU .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tz4cSMMtxU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tz4cSMMtxU .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tz4cSMMtxU .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tz4cUxceoh {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tz4cUxceoh .image-block {
  margin: auto;
  height: 400px;
  overflow: hidden;
}
.cid-tz4cUxceoh .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tz4cUxceoh .image-block:hover:before {
  opacity: 0.2;
}
.cid-tz4cUxceoh .image-block:hover .wrap {
  opacity: 1;
}
.cid-tz4cUxceoh h4 {
  letter-spacing: 2px;
}
.cid-tz4cUxceoh figcaption {
  position: relative;
}
.cid-tz4cUxceoh figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tz4cUxceoh img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tz4cUxceoh .card {
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tz4cUxceoh .wrap {
    opacity: 1 !important;
  }
  .cid-tz4cUxceoh .image-block:before {
    opacity: 0.2 !important;
  }
}
.cid-tz4cXbYWgL {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tz4cXbYWgL .image-block {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.cid-tz4cXbYWgL .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tz4cXbYWgL .image-block:hover:before {
  opacity: 0.4;
}
.cid-tz4cXbYWgL .image-block:hover .wrap {
  opacity: 1;
}
.cid-tz4cXbYWgL .image-block:hover img {
  transform: scale(1.05);
}
.cid-tz4cXbYWgL .row {
  justify-content: center;
  padding: 0.2rem;
}
.cid-tz4cXbYWgL h4 {
  letter-spacing: 2px;
}
.cid-tz4cXbYWgL figcaption {
  position: relative;
}
.cid-tz4cXbYWgL figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tz4cXbYWgL img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tz4cXbYWgL .col-md-4 {
  padding: 0.2rem;
}
@media (min-width: 992px) {
  .cid-tz4cXbYWgL .col-lg-25 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.2rem;
  }
  .cid-tz4cXbYWgL .image-block {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tz4cXbYWgL .image-block:before {
    opacity: 0.4;
  }
  .cid-tz4cXbYWgL .image-block .wrap {
    opacity: 1;
  }
}
.cid-tz4djm8Cvf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1c1c1c;
}
.cid-tz4djm8Cvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tz4djm8Cvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tz4djm8Cvf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tz4djm8Cvf .container-fluid {
    padding: 0 30px;
  }
}
.cid-tz4djm8Cvf .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tz4djm8Cvf .container {
    padding: 0 30px;
  }
}
.cid-tz4djm8Cvf .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
.cid-tz4djm8Cvf .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 310px;
  max-width: 310px;
}
@media (max-width: 768px) {
  .cid-tz4djm8Cvf .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tz4djm8Cvf .embla__slide .card-wrap {
  width: 100%;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a {
  display: block;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a:hover .item-wrapper .image-wrap img {
  transform: scale(1.06);
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont {
  opacity: 1;
  transform: translate(0) rotate(-45deg);
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont::after {
  opacity: 1;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .item-wrapper {
  margin-bottom: 32px;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .item-wrapper .image-wrap {
  position: relative;
  height: 195px;
  border-radius: 10px;
  overflow: hidden;
  padding: 14px 20px;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date {
  position: relative;
  z-index: 1;
  pointer-events: visible;
  margin-bottom: 0;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date span {
  display: block;
  font-size: 32%;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .content-wrap .mbr-desc {
  margin-bottom: 4px;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .content-wrap .mbr-text {
  margin-bottom: 28px;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .content-wrap .mbr-iconfont {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transform: translate(-2px, 2px) rotate(-45deg);
  transition: all 0.3s ease-out;
}
.cid-tz4djm8Cvf .embla__slide .card-wrap a .content-wrap .mbr-iconfont::after {
  content: '';
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-tz4djm8Cvf .embla__button--next,
.cid-tz4djm8Cvf .embla__button--prev {
  display: flex;
}
.cid-tz4djm8Cvf .embla__button {
  bottom: -2rem;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #82786e;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tz4djm8Cvf .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tz4djm8Cvf .embla__button:hover {
  background: transparent;
  color: #ff3366;
}
.cid-tz4djm8Cvf .embla__button.embla__button--prev {
  left: 0;
}
.cid-tz4djm8Cvf .embla__button.embla__button--next {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  .cid-tz4djm8Cvf .embla__button {
    top: auto;
  }
}
.cid-tz4djm8Cvf .embla {
  position: relative;
  width: 100%;
}
.cid-tz4djm8Cvf .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tz4djm8Cvf .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tz4djm8Cvf .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tz4djm8Cvf .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tz4djm8Cvf .mbr-section-title {
  color: #ffffff;
}
.cid-tz4djm8Cvf .mbr-date {
  color: #ffffff;
}
.cid-tz4djm8Cvf .mbr-desc {
  color: #ffffff;
}
.cid-tz4djm8Cvf .mbr-text {
  color: #ffffff;
}
.cid-tz4doStUJX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00261a;
}
.cid-tz4doStUJX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tz4doStUJX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tz4doStUJX .row {
    padding: 0;
  }
  .cid-tz4doStUJX .container-fluid {
    padding: 0;
  }
}
.cid-tz4doStUJX .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 10px;
  max-height: 1000px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tz4doStUJX .items {
    grid-template-columns: 1fr 1fr;
    max-height: 1500px;
  }
}
@media (max-width: 425px) {
  .cid-tz4doStUJX .items {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .cid-tz4doStUJX .items-card {
    padding-top: 100px;
  }
}
.cid-tz4doStUJX .items-card .item {
  margin-bottom: 14px;
  height: 380px;
}
@media (max-width: 768px) {
  .cid-tz4doStUJX .items-card .item {
    margin-bottom: 5px;
  }
}
.cid-tz4doStUJX .items-card .item .item-wrapper {
  height: 100%;
  border-radius: 20px;
}
.cid-tz4doStUJX .items-card .item .item-wrapper .item-img {
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.cid-tz4doStUJX .items-card .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tz4doStUJX .items-card:nth-child(2n) {
  padding-top: 0;
}
.cid-tz4dCd18s3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tz4dCd18s3 .text-wrapper {
  padding: 1rem;
}
.cid-tz4dCd18s3 .row {
  margin: 0;
}
.cid-tz4dCd18s3 .mbr-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tz4dCd18s3 .icon {
  margin: -10.5rem auto 0;
  width: 102px;
  height: 102px;
  background: #fafafa;
  padding: 0;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tz4dCd18s3 .icon {
    width: 70px;
    height: 70px;
    margin: -25rem auto 0;
  }
}
@media (max-width: 576px) {
  .cid-tz4dCd18s3 .icon {
    margin: -47.3rem auto 0;
  }
}
.cid-tz4dCd18s3 .icon span {
  color: #84858a;
  font-size: 25px;
}
.cid-tz4dCd18s3 .image {
  padding: 0;
  position: relative;
}
.cid-tz4dCd18s3 .image .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #20232a;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-tz4dCd18s3 .image:hover .image-overlay {
  opacity: .2;
}
.cid-tz4dCd18s3 .image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tz4dNHZsf3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #1f1d1a;
}
.cid-tz4dNHZsf3 .row {
  justify-content: center;
}
.cid-tz4dNHZsf3 .col-title {
  margin-bottom: 2.5rem;
}
.cid-tz4dNHZsf3 .mbr-section-title {
  color: #F6B7D2;
}
.cid-tz4dNHZsf3 .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-tz4dNHZsf3 .cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tz4dNHZsf3 .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 639px) {
  .cid-tz4dNHZsf3 .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tz4dNHZsf3 .card {
  display: flex;
  width: 100%;
  border-radius: 0.75rem;
  background-color: #75083a;
  min-height: 432px;
}
@media (max-width: 991px) {
  .cid-tz4dNHZsf3 .card {
    min-height: 372px;
  }
}
@media (max-width: 639px) {
  .cid-tz4dNHZsf3 .card {
    min-height: 276px;
  }
}
.cid-tz4dNHZsf3 .card:hover .card-img-bg img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tz4dNHZsf3 .card:hover .card-title {
  text-decoration: underline;
}
.cid-tz4dNHZsf3 .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
}
.cid-tz4dNHZsf3 .card-img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.75rem;
  border-top-right-radius: 100px;
  overflow: hidden;
}
.cid-tz4dNHZsf3 .card-img-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: .3s;
}
.cid-tz4dNHZsf3 .card-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  padding: 96px 16px 24px;
  position: relative;
  z-index: 5;
}
.cid-tz4dNHZsf3 .card-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(to bottom, transparent, #000000);
  mix-blend-mode: multiply;
  transform: matrix(1, 0, 0, 1, 0, 1);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.cid-tz4dNHZsf3 .card-title {
  width: 100%;
  margin-bottom: 0;
  color: #F6B7D2;
  position: relative;
  z-index: 11;
}
.cid-tz4dNHZsf3 .card-text {
  width: 100%;
  color: #FEF9EE;
  margin-top: 0.25rem;
  margin-bottom: 0;
  position: relative;
  z-index: 11;
}
.cid-tz4dNHZsf3 .mbr-section-btn {
  margin-top: 30px;
}
.cid-tz4dVELz0B {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fef1e5;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
}
.cid-tz4dVELz0B .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tz4dVELz0B .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tz4dVELz0B .mbr-gallery {
  border-radius: 20px;
  border: 3px solid #000;
  overflow: hidden;
}
.cid-tz4dVELz0B .mbr-section-head {
  width: fit-content;
  border-radius: 20px;
  background-color: #006b54;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 80px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-tz4dVELz0B .mbr-section-head .display-7 {
    font-size: 23.8px;
  }
}
.cid-tz4dVELz0B .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tz4dVELz0B .item-wrapper img {
  object-fit: cover;
}
.cid-tz4dVELz0B .item-wrapper img {
  height: 100%;
}
.cid-tz4dVELz0B .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-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  transition: 0.2s;
}
.cid-tz4dVELz0B .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tz4dVELz0B .carousel-control,
.cid-tz4dVELz0B .close {
  background: #1b1b1b;
}
.cid-tz4dVELz0B .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tz4dVELz0B .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tz4dVELz0B .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
}
.cid-tz4dVELz0B .close::before {
  content: '\e91a';
}
.cid-tz4dVELz0B .close:hover {
  opacity: .7;
}
.cid-tz4dVELz0B .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  opacity: 0.5;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tz4dVELz0B .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tz4dVELz0B .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tz4dVELz0B .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tz4dVELz0B .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tz4dVELz0B .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-tz4dVELz0B .carousel-indicators li.active,
.cid-tz4dVELz0B .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tz4dVELz0B .carousel-indicators li::after,
.cid-tz4dVELz0B .carousel-indicators li::before {
  content: none;
}
.cid-tz4dVELz0B .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tz4dVELz0B .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tz4dVELz0B .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tz4dVELz0B .carousel-indicators {
    display: none;
  }
}
.cid-tz4dVELz0B .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tz4dVELz0B .carousel-inner > .active {
  display: block;
}
.cid-tz4dVELz0B .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tz4dVELz0B .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tz4dVELz0B .carousel-control:hover {
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-tz4dVELz0B .carousel-control,
  .cid-tz4dVELz0B .carousel-indicators,
  .cid-tz4dVELz0B .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tz4dVELz0B .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tz4dVELz0B .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tz4dVELz0B .carousel-indicators .active,
.cid-tz4dVELz0B .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tz4dVELz0B .carousel-indicators .active {
  background: #fff;
}
.cid-tz4dVELz0B .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tz4dVELz0B .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tz4dVELz0B .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tz4dVELz0B .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tz4dVELz0B .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tz4dVELz0B .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tz4dVELz0B .carousel {
  width: 100%;
}
.cid-tz4dVELz0B .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tz4dVELz0B .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tz4dVELz0B .modal.fade .modal-dialog,
.cid-tz4dVELz0B .modal.in .modal-dialog {
  transform: none;
}
.cid-tz4dVELz0B .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tz4dVELz0B H6 {
  text-align: center;
}
.cid-tz4dVELz0B H3 {
  text-align: center;
}
.cid-tz4ePFjC6X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tz4ePFjC6X .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-tz4ePFjC6X .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tz4ePFjC6X .row {
  justify-content: center;
}
.cid-tz4ePFjC6X img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2) translateX(-8%);
  transition: 1.5s all;
}
.cid-tz4ePFjC6X .item-img {
  display: flex;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tz4ePFjC6X .item-img {
    height: 264px;
  }
}
@media (max-width: 767px) {
  .cid-tz4ePFjC6X .item-img {
    height: 528px;
  }
}
@media (min-width: 768px) {
  .cid-tz4ePFjC6X .item-img:hover img {
    transform: scale(1.2) translateX(8%);
  }
}
.cid-tz4ePFjC6X .item:focus,
.cid-tz4ePFjC6X span:focus {
  outline: none;
}
.cid-tz4ePFjC6X .item {
  cursor: pointer;
  padding: 0;
}
.cid-tz4ePFjC6X .item-wrapper {
  position: relative;
  border-radius: 0;
  background: #f9f7f5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tz4ePFjC6X .item-wrapper {
  background: transparent;
}
.cid-tz4ePFjC6X .item-content {
  padding: 30px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-tz4ePFjC6X .item-content {
    padding: 24px 12px 48px;
  }
}
.cid-tz4ePFjC6X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tz4ePFjC6X .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-tz4ePFjC6X .mbr-text {
  text-align: center;
  color: #222222;
}
.cid-tz4ePFjC6X .item-title {
  text-align: center;
  color: #999999;
  margin-bottom: 4px;
}
.cid-tz4fawfLMP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fef7f2;
}
@media (min-width: 1400px) {
  .cid-tz4fawfLMP .container {
    max-width: 1162px;
  }
}
.cid-tz4fawfLMP .btn {
  padding: 24px 60px;
  color: #000000;
  border-radius: 60px;
}
.cid-tz4fawfLMP .btn:hover,
.cid-tz4fawfLMP .btn:focus {
  border-color: #ffff33 !important;
  background-color: #ffff33 !important;
}
@media (min-width: 768px) {
  .cid-tz4fawfLMP .mbr-section-head {
    display: flex;
    justify-content: space-between;
  }
}
.cid-tz4fawfLMP img,
.cid-tz4fawfLMP .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-tz4fawfLMP .item-img {
  height: 100%;
}
.cid-tz4fawfLMP .item-img img {
  object-fit: cover;
}
.cid-tz4fawfLMP .item-wrapper {
  position: relative;
  height: 100%;
}
.cid-tz4fawfLMP .item-content {
  z-index: 3;
  min-width: 250px;
  text-align: center;
  top: 60%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tz4fawfLMP .mbr-text,
.cid-tz4fawfLMP .mbr-section-btn {
  color: #ffffff;
}
.cid-tz4fawfLMP .item-wrapper:hover .item-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tz4fawfLMP .item-wrapper:hover img {
  -webkit-filter: brightness(30%);
  filter: brightness(30%);
}
.cid-tz4fawfLMP .item:focus,
.cid-tz4fawfLMP span:focus {
  outline: none;
}
.cid-tz4fawfLMP .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tz4fawfLMP .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tz4fawfLMP .item {
  padding: 0;
  margin: 0;
}
.cid-tz4fawfLMP .Bg {
  padding: 0.5rem 1rem;
  background-color: #ffff33;
}
.cid-uZQ27uWI60 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uZQ27uWI60 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZQ27uWI60 a {
  font-style: normal;
}
.cid-uZQ27uWI60 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZQ27uWI60 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uZQ27uWI60 .nav-item:focus,
.cid-uZQ27uWI60 .nav-link:focus {
  outline: none;
}
.cid-uZQ27uWI60 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uZQ27uWI60 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZQ27uWI60 .menu-logo {
  margin-right: auto;
}
.cid-uZQ27uWI60 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uZQ27uWI60 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZQ27uWI60 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZQ27uWI60 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZQ27uWI60 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uZQ27uWI60 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZQ27uWI60 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZQ27uWI60 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZQ27uWI60 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZQ27uWI60 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZQ27uWI60 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZQ27uWI60 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZQ27uWI60 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZQ27uWI60 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZQ27uWI60 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZQ27uWI60 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZQ27uWI60 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZQ27uWI60 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZQ27uWI60 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZQ27uWI60 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZQ27uWI60 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZQ27uWI60 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZQ27uWI60 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZQ27uWI60 button.navbar-toggler:focus {
  outline: none;
}
.cid-uZQ27uWI60 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZQ27uWI60 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZQ27uWI60 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZQ27uWI60 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZQ27uWI60 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZQ27uWI60 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZQ27uWI60 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZQ27uWI60 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZQ27uWI60 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZQ27uWI60 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uZQ27uWI60 .collapsed .btn {
  display: flex;
}
.cid-uZQ27uWI60 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZQ27uWI60 .collapsed .navbar-collapse.collapsing,
.cid-uZQ27uWI60 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZQ27uWI60 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZQ27uWI60 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZQ27uWI60 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZQ27uWI60 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZQ27uWI60 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uZQ27uWI60 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uZQ27uWI60 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZQ27uWI60 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZQ27uWI60 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZQ27uWI60 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZQ27uWI60 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZQ27uWI60 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZQ27uWI60 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZQ27uWI60 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZQ27uWI60 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZQ27uWI60 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZQ27uWI60 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZQ27uWI60 .navbar-expand {
    flex-direction: column;
  }
  .cid-uZQ27uWI60 img {
    height: 3.8rem !important;
  }
  .cid-uZQ27uWI60 .btn {
    display: flex;
  }
  .cid-uZQ27uWI60 button.navbar-toggler {
    display: block;
  }
  .cid-uZQ27uWI60 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZQ27uWI60 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZQ27uWI60 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZQ27uWI60 .navbar-collapse.collapsing,
  .cid-uZQ27uWI60 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZQ27uWI60 .navbar-collapse.collapsing .navbar-nav,
  .cid-uZQ27uWI60 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZQ27uWI60 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZQ27uWI60 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZQ27uWI60 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uZQ27uWI60 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZQ27uWI60 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZQ27uWI60 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZQ27uWI60 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZQ27uWI60 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZQ27uWI60 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZQ27uWI60 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZQ27uWI60 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZQ27uWI60 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZQ27uWI60 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uZQ27uWI60 .navbar-collapse {
  flex-basis: auto;
}
.cid-uZQ27uWI60 .nav-link:hover,
.cid-uZQ27uWI60 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZQ27vbsd5 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZQ27vbsd5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZQ27vbsd5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ27vbsd5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ27vbsd5 .title {
  padding: 0 2rem;
}
.cid-uZQ27vbsd5 .container {
  padding: 0 1rem;
}
.cid-uZQ27vbsd5 .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-uZQ27vbsd5 .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-uZQ27vbsd5 .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ27vbsd5 .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ27vbsd5 .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-uZQ27vbsd5 .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-uZQ27vbsd5 .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uZQ27vbsd5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ27vbsd5 .icon-focus {
  display: none;
}
.cid-uZQ27vbsd5 .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uZQ27vbsd5 .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-uZQ27vbsd5 li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uZQ27vbsd5 li {
  position: relative;
}
.cid-uZQ27vbsd5 .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uZQ27vbsd5 .btn {
  font-family: Rubik !important;
}
.cid-uZQ27vbsd5 .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uZQ27vbsd5 .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ27vbsd5 li:not(:last-child):after {
    top: 9px;
  }
  .cid-uZQ27vbsd5 .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-uZQ27vbsd5 .container {
    padding: 0rem 0.5rem;
  }
  .cid-uZQ27vbsd5 .title {
    padding: 0 1rem;
  }
}
.cid-uZQ27vbsd5 H2 {
  color: #000000;
}
.cid-uZQ27vwmiF .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ27vwmiF .modal-body .close span {
  font-style: normal;
}
.cid-uZQ27vwmiF .carousel-inner > .active,
.cid-uZQ27vwmiF .carousel-inner > .next,
.cid-uZQ27vwmiF .carousel-inner > .prev {
  display: table;
}
.cid-uZQ27vwmiF .carousel-control .icon-next,
.cid-uZQ27vwmiF .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uZQ27vwmiF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ27vwmiF .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ27vwmiF .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uZQ27vwmiF .boxed-slider > div {
  position: relative;
}
.cid-uZQ27vwmiF .container img {
  width: 100%;
}
.cid-uZQ27vwmiF .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uZQ27vwmiF .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ27vwmiF .mbr-table-cell {
  padding: 0;
}
.cid-uZQ27vwmiF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uZQ27vwmiF .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uZQ27vwmiF .mbr-overlay {
  z-index: 1;
}
.cid-uZQ27vwmiF .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ27vwmiF .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uZQ27vwmiF .carousel-item .container {
    width: 100%;
  }
}
.cid-uZQ27vwmiF .carousel-item-next.carousel-item-left,
.cid-uZQ27vwmiF .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uZQ27vwmiF .active.carousel-item-right,
.cid-uZQ27vwmiF .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uZQ27vwmiF .active.carousel-item-left,
.cid-uZQ27vwmiF .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uZQ27vwmiF .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uZQ27vwmiF .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ27vwmiF .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ27vwmiF .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uZQ27vwmiF .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZQ27vwmiF .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uZQ27vwmiF .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uZQ27vwmiF .mbr-slider .carousel-indicators li.active,
.cid-uZQ27vwmiF .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uZQ27vwmiF .mbr-slider .carousel-indicators li::after,
.cid-uZQ27vwmiF .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uZQ27vwmiF .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uZQ27vwmiF .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uZQ27vwmiF .mbr-slider > .container img {
  width: 100%;
}
.cid-uZQ27vwmiF .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uZQ27vwmiF .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uZQ27vwmiF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ27vwmiF .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ27vwmiF .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uZQ27vwmiF .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uZQ27vwmiF .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uZQ27vwmiF .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uZQ27vwmiF .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uZQ27vwmiF .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ27vwmiF .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uZQ27vwmiF .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uZQ27vwmiF .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uZQ27vwmiF H2 {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ27vwmiF P {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ27vO885 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-uZQ27vO885 .mbr-text {
    text-align: center;
  }
}
.cid-uZQ27vO885 .container-fluid {
  padding: 0;
}
.cid-uZQ27vO885 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-uZQ27vO885 img {
  height: 100%;
  object-fit: cover;
}
.cid-uZQ27vO885 .mbr-figure {
  height: 100%;
}
.cid-uZQ27vO885 .col-lg-6 {
  padding: 0;
}
.cid-uZQ27vO885 .row {
  margin: 0;
}
.cid-uZQ2ZaHY00 .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ2ZaHY00 .modal-body .close span {
  font-style: normal;
}
.cid-uZQ2ZaHY00 .carousel-inner > .active,
.cid-uZQ2ZaHY00 .carousel-inner > .next,
.cid-uZQ2ZaHY00 .carousel-inner > .prev {
  display: table;
}
.cid-uZQ2ZaHY00 .carousel-control .icon-next,
.cid-uZQ2ZaHY00 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uZQ2ZaHY00 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ2ZaHY00 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ2ZaHY00 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uZQ2ZaHY00 .boxed-slider > div {
  position: relative;
}
.cid-uZQ2ZaHY00 .container img {
  width: 100%;
}
.cid-uZQ2ZaHY00 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uZQ2ZaHY00 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ2ZaHY00 .mbr-table-cell {
  padding: 0;
}
.cid-uZQ2ZaHY00 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uZQ2ZaHY00 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uZQ2ZaHY00 .mbr-overlay {
  z-index: 1;
}
.cid-uZQ2ZaHY00 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ2ZaHY00 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uZQ2ZaHY00 .carousel-item .container {
    width: 100%;
  }
}
.cid-uZQ2ZaHY00 .carousel-item-next.carousel-item-left,
.cid-uZQ2ZaHY00 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uZQ2ZaHY00 .active.carousel-item-right,
.cid-uZQ2ZaHY00 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uZQ2ZaHY00 .active.carousel-item-left,
.cid-uZQ2ZaHY00 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uZQ2ZaHY00 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators li.active,
.cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators li::after,
.cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uZQ2ZaHY00 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uZQ2ZaHY00 .mbr-slider > .container img {
  width: 100%;
}
.cid-uZQ2ZaHY00 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uZQ2ZaHY00 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uZQ2ZaHY00 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ2ZaHY00 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ2ZaHY00 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uZQ2ZaHY00 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uZQ2ZaHY00 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uZQ2ZaHY00 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uZQ2ZaHY00 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uZQ2ZaHY00 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ2ZaHY00 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uZQ2ZaHY00 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uZQ2ZaHY00 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uZQ2ZaHY00 H2 {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ2ZaHY00 P {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ27w0rxi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-uZQ27w0rxi .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-uZQ27w0rxi .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uZQ27w0rxi .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-uZQ27w0rxi .mbr-figure,
  .cid-uZQ27w0rxi img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uZQ27wafPU {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-uZQ27wafPU .mbr-iconfont-social {
  font-size: 32px;
  color: #ff3366;
}
.cid-uZQ27wafPU .social-list a:focus {
  text-decoration: none;
}
.cid-uZQ5uFenPI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZQ5uFenPI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZQ5uFenPI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ5uFenPI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ5uFenPI .title {
  padding: 0 2rem;
}
.cid-uZQ5uFenPI .container {
  padding: 0 1rem;
}
.cid-uZQ5uFenPI .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-uZQ5uFenPI .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-uZQ5uFenPI .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ5uFenPI .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ5uFenPI .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-uZQ5uFenPI .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-uZQ5uFenPI .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uZQ5uFenPI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ5uFenPI .icon-focus {
  display: none;
}
.cid-uZQ5uFenPI .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uZQ5uFenPI .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-uZQ5uFenPI li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uZQ5uFenPI li {
  position: relative;
}
.cid-uZQ5uFenPI .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uZQ5uFenPI .btn {
  font-family: Rubik !important;
}
.cid-uZQ5uFenPI .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uZQ5uFenPI .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ5uFenPI li:not(:last-child):after {
    top: 9px;
  }
  .cid-uZQ5uFenPI .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-uZQ5uFenPI .container {
    padding: 0rem 0.5rem;
  }
  .cid-uZQ5uFenPI .title {
    padding: 0 1rem;
  }
}
.cid-uZQ5uFenPI H2 {
  color: #000000;
}
.cid-uZQ31nfAFk .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ31nfAFk .modal-body .close span {
  font-style: normal;
}
.cid-uZQ31nfAFk .carousel-inner > .active,
.cid-uZQ31nfAFk .carousel-inner > .next,
.cid-uZQ31nfAFk .carousel-inner > .prev {
  display: table;
}
.cid-uZQ31nfAFk .carousel-control .icon-next,
.cid-uZQ31nfAFk .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uZQ31nfAFk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ31nfAFk .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ31nfAFk .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uZQ31nfAFk .boxed-slider > div {
  position: relative;
}
.cid-uZQ31nfAFk .container img {
  width: 100%;
}
.cid-uZQ31nfAFk .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uZQ31nfAFk .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ31nfAFk .mbr-table-cell {
  padding: 0;
}
.cid-uZQ31nfAFk .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uZQ31nfAFk .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uZQ31nfAFk .mbr-overlay {
  z-index: 1;
}
.cid-uZQ31nfAFk .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ31nfAFk .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uZQ31nfAFk .carousel-item .container {
    width: 100%;
  }
}
.cid-uZQ31nfAFk .carousel-item-next.carousel-item-left,
.cid-uZQ31nfAFk .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uZQ31nfAFk .active.carousel-item-right,
.cid-uZQ31nfAFk .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uZQ31nfAFk .active.carousel-item-left,
.cid-uZQ31nfAFk .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uZQ31nfAFk .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uZQ31nfAFk .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ31nfAFk .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ31nfAFk .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uZQ31nfAFk .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZQ31nfAFk .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uZQ31nfAFk .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uZQ31nfAFk .mbr-slider .carousel-indicators li.active,
.cid-uZQ31nfAFk .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uZQ31nfAFk .mbr-slider .carousel-indicators li::after,
.cid-uZQ31nfAFk .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uZQ31nfAFk .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uZQ31nfAFk .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uZQ31nfAFk .mbr-slider > .container img {
  width: 100%;
}
.cid-uZQ31nfAFk .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uZQ31nfAFk .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uZQ31nfAFk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ31nfAFk .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ31nfAFk .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uZQ31nfAFk .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uZQ31nfAFk .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uZQ31nfAFk .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uZQ31nfAFk .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uZQ31nfAFk .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ31nfAFk .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uZQ31nfAFk .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uZQ31nfAFk .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uZQ31nfAFk H2 {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ31nfAFk P {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ27wkNoh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dsc-6422-lr-raw-1920-srvb-laurentferry-com-all-rights-reserved-ask-before-use-1920x1280.jpg");
}
.cid-uZQ27wkNoh .card-img span {
  color: #ffffff;
  font-size: 5.5rem;
}
.cid-uZQ27wkNoh .mbr-text {
  color: #cccccc;
}
.cid-uZQ27wkNoh .border-r {
  border-right: 1px solid #656565;
}
.cid-uZQ27wkNoh p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uZQ27wkNoh .border-r {
    border-right: 0px solid #656565;
  }
}
@media (max-width: 576px) {
  .cid-uZQ27wkNoh .card {
    margin-bottom: 2rem;
  }
}
.cid-uZQ27wyNUV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uZQ27wyNUV .list-group-item {
  padding: .75rem 3.25rem;
}
.cid-uZQ27wyNUV .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-uZQ27wyNUV .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-uZQ27wyNUV .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-uZQ27wyNUV .plan .list-group-item:last-child::after {
  display: none;
}
.cid-uZQ27wyNUV .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-uZQ27wyNUV .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZQ27wyNUV .price-figure {
  font-weight: 700;
  color: #232323;
}
.cid-uZQ27wyNUV .price-value {
  font-weight: 700;
  vertical-align: top;
}
@media (max-width: 550px) {
  .cid-uZQ27wyNUV .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uZQ27wyNUV .plan-title {
  color: #9933cc;
}
.cid-uZQ3KMZSAv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZQ3KMZSAv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZQ3KMZSAv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ3KMZSAv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ3KMZSAv .title {
  padding: 0 2rem;
}
.cid-uZQ3KMZSAv .container {
  padding: 0 1rem;
}
.cid-uZQ3KMZSAv .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-uZQ3KMZSAv .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-uZQ3KMZSAv .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ3KMZSAv .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ3KMZSAv .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-uZQ3KMZSAv .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-uZQ3KMZSAv .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uZQ3KMZSAv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ3KMZSAv .icon-focus {
  display: none;
}
.cid-uZQ3KMZSAv .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uZQ3KMZSAv .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-uZQ3KMZSAv li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uZQ3KMZSAv li {
  position: relative;
}
.cid-uZQ3KMZSAv .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uZQ3KMZSAv .btn {
  font-family: Rubik !important;
}
.cid-uZQ3KMZSAv .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uZQ3KMZSAv .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ3KMZSAv li:not(:last-child):after {
    top: 9px;
  }
  .cid-uZQ3KMZSAv .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-uZQ3KMZSAv .container {
    padding: 0rem 0.5rem;
  }
  .cid-uZQ3KMZSAv .title {
    padding: 0 1rem;
  }
}
.cid-uZQ3KMZSAv H2 {
  color: #000000;
}
.cid-uZQ4NIRev3 .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ4NIRev3 .modal-body .close span {
  font-style: normal;
}
.cid-uZQ4NIRev3 .carousel-inner > .active,
.cid-uZQ4NIRev3 .carousel-inner > .next,
.cid-uZQ4NIRev3 .carousel-inner > .prev {
  display: table;
}
.cid-uZQ4NIRev3 .carousel-control .icon-next,
.cid-uZQ4NIRev3 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uZQ4NIRev3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ4NIRev3 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ4NIRev3 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uZQ4NIRev3 .boxed-slider > div {
  position: relative;
}
.cid-uZQ4NIRev3 .container img {
  width: 100%;
}
.cid-uZQ4NIRev3 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uZQ4NIRev3 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ4NIRev3 .mbr-table-cell {
  padding: 0;
}
.cid-uZQ4NIRev3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uZQ4NIRev3 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uZQ4NIRev3 .mbr-overlay {
  z-index: 1;
}
.cid-uZQ4NIRev3 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ4NIRev3 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uZQ4NIRev3 .carousel-item .container {
    width: 100%;
  }
}
.cid-uZQ4NIRev3 .carousel-item-next.carousel-item-left,
.cid-uZQ4NIRev3 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uZQ4NIRev3 .active.carousel-item-right,
.cid-uZQ4NIRev3 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uZQ4NIRev3 .active.carousel-item-left,
.cid-uZQ4NIRev3 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uZQ4NIRev3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-indicators li.active,
.cid-uZQ4NIRev3 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-indicators li::after,
.cid-uZQ4NIRev3 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uZQ4NIRev3 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uZQ4NIRev3 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uZQ4NIRev3 .mbr-slider > .container img {
  width: 100%;
}
.cid-uZQ4NIRev3 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uZQ4NIRev3 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uZQ4NIRev3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZQ4NIRev3 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uZQ4NIRev3 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uZQ4NIRev3 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uZQ4NIRev3 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uZQ4NIRev3 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uZQ4NIRev3 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uZQ4NIRev3 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uZQ4NIRev3 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uZQ4NIRev3 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uZQ4NIRev3 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uZQ4NIRev3 H2 {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ4NIRev3 P {
  text-align: left;
  color: #ffffff;
}
.cid-uZQ48yv7JS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uZQ48yv7JS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uZQ48yv7JS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZQ48yv7JS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZQ48yv7JS .title {
  padding: 0 2rem;
}
.cid-uZQ48yv7JS .container {
  padding: 0 1rem;
}
.cid-uZQ48yv7JS .mbr-gallery-item div {
  border-radius: 6px;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 10;
  max-width: 400px;
}
.cid-uZQ48yv7JS .mbr-gallery-item div img {
  object-fit: cover;
  height: 100%;
}
.cid-uZQ48yv7JS .mbr-gallery-item div:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ48yv7JS .mbr-gallery-item div:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-uZQ48yv7JS .mbr-gallery-item div:hover:before {
  opacity: 0.5;
  width: 0;
  height: 0;
}
.cid-uZQ48yv7JS .mbr-gallery-item div:hover:after {
  opacity: 0;
  height: 100%;
  width: 100%;
}
.cid-uZQ48yv7JS .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uZQ48yv7JS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uZQ48yv7JS .icon-focus {
  display: none;
}
.cid-uZQ48yv7JS .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uZQ48yv7JS .btn-primary-outline:hover {
  background: transparent !important;
  color: #9933cc !important;
}
.cid-uZQ48yv7JS li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uZQ48yv7JS li {
  position: relative;
}
.cid-uZQ48yv7JS .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uZQ48yv7JS .btn {
  font-family: Rubik !important;
}
.cid-uZQ48yv7JS .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uZQ48yv7JS .mbr-gallery-title:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ48yv7JS li:not(:last-child):after {
    top: 9px;
  }
  .cid-uZQ48yv7JS .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
  .cid-uZQ48yv7JS .container {
    padding: 0rem 0.5rem;
  }
  .cid-uZQ48yv7JS .title {
    padding: 0 1rem;
  }
}
.cid-uZQ48yv7JS H2 {
  color: #000000;
}
.cid-uZQ27wSWG3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uZQ27wSWG3 .title {
  margin-bottom: 2rem;
}
.cid-uZQ27wSWG3 .mbr-section-subtitle {
  color: #767676;
}
.cid-uZQ27wSWG3 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uZQ27wSWG3 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uZQ27wSWG3 textarea.form-control {
  min-height: 188px;
}
.cid-uZQ27x44NG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZQ27x44NG .content {
    text-align: center;
  }
  .cid-uZQ27x44NG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uZQ27x44NG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uZQ27x44NG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uZQ27x44NG .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uZQ27x44NG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZQ27x44NG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uZQ27x44NG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uZQ27x44NG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uZQ27x44NG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZQ27x44NG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZQ27x44NG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ27x44NG .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZQ27x44NG H5 {
  color: #000000;
}
.cid-uZQ27x44NG P {
  color: #000000;
}
.cid-uZQ27xhuFl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZQ27xhuFl .content {
    text-align: center;
  }
  .cid-uZQ27xhuFl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uZQ27xhuFl .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uZQ27xhuFl .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uZQ27xhuFl .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uZQ27xhuFl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZQ27xhuFl .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uZQ27xhuFl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uZQ27xhuFl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uZQ27xhuFl .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZQ27xhuFl .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZQ27xhuFl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQ27xhuFl .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZQ27xhuFl H5 {
  color: #000000;
}
.cid-uZQ27xhuFl P {
  color: #000000;
}
.cid-uZQCVBXazD .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uZQCVBXazD .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uZQCVBXazD a {
  font-style: normal;
}
.cid-uZQCVBXazD .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uZQCVBXazD .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uZQCVBXazD .nav-item:focus,
.cid-uZQCVBXazD .nav-link:focus {
  outline: none;
}
.cid-uZQCVBXazD .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uZQCVBXazD .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uZQCVBXazD .menu-logo {
  margin-right: auto;
}
.cid-uZQCVBXazD .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uZQCVBXazD .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uZQCVBXazD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uZQCVBXazD .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uZQCVBXazD .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uZQCVBXazD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uZQCVBXazD .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uZQCVBXazD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uZQCVBXazD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uZQCVBXazD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uZQCVBXazD .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uZQCVBXazD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uZQCVBXazD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZQCVBXazD .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uZQCVBXazD .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZQCVBXazD .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uZQCVBXazD .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uZQCVBXazD .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uZQCVBXazD .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uZQCVBXazD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uZQCVBXazD .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uZQCVBXazD .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uZQCVBXazD button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uZQCVBXazD button.navbar-toggler:focus {
  outline: none;
}
.cid-uZQCVBXazD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZQCVBXazD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uZQCVBXazD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uZQCVBXazD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uZQCVBXazD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uZQCVBXazD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZQCVBXazD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uZQCVBXazD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uZQCVBXazD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uZQCVBXazD .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uZQCVBXazD .collapsed .btn {
  display: flex;
}
.cid-uZQCVBXazD .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uZQCVBXazD .collapsed .navbar-collapse.collapsing,
.cid-uZQCVBXazD .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uZQCVBXazD .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uZQCVBXazD .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uZQCVBXazD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uZQCVBXazD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uZQCVBXazD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uZQCVBXazD .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uZQCVBXazD .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uZQCVBXazD .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uZQCVBXazD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uZQCVBXazD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uZQCVBXazD .collapsed button.navbar-toggler {
  display: block;
}
.cid-uZQCVBXazD .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uZQCVBXazD .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uZQCVBXazD .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uZQCVBXazD .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uZQCVBXazD .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uZQCVBXazD .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uZQCVBXazD .navbar-expand {
    flex-direction: column;
  }
  .cid-uZQCVBXazD img {
    height: 3.8rem !important;
  }
  .cid-uZQCVBXazD .btn {
    display: flex;
  }
  .cid-uZQCVBXazD button.navbar-toggler {
    display: block;
  }
  .cid-uZQCVBXazD .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uZQCVBXazD .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uZQCVBXazD .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uZQCVBXazD .navbar-collapse.collapsing,
  .cid-uZQCVBXazD .navbar-collapse.show {
    display: block !important;
  }
  .cid-uZQCVBXazD .navbar-collapse.collapsing .navbar-nav,
  .cid-uZQCVBXazD .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uZQCVBXazD .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uZQCVBXazD .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uZQCVBXazD .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uZQCVBXazD .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZQCVBXazD .navbar-collapse.collapsing .navbar-buttons,
  .cid-uZQCVBXazD .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uZQCVBXazD .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uZQCVBXazD .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uZQCVBXazD .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uZQCVBXazD .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uZQCVBXazD .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uZQCVBXazD .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uZQCVBXazD .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uZQCVBXazD .navbar-collapse {
  flex-basis: auto;
}
.cid-uZQCVBXazD .nav-link:hover,
.cid-uZQCVBXazD .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uZQCVCaJTA {
  background-image: url("../../../assets/images/img-14949-hz-place-dauphine-laurentferryphotography-optimisee-rose-exportee-pour-publication-2-1920x128024.jpg");
}
.cid-uZQCVCaJTA H1 {
  color: #ffffff;
}
.cid-uZQCVCiBGH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-uZQCVCiBGH .testimonial-text {
  font-style: italic;
  color: #676767;
  font-weight: 300;
}
.cid-uZQCVCiBGH .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uZQCVCiBGH .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-uZQCVCiBGH .mbr-figure,
  .cid-uZQCVCiBGH img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uZQCVCR6Wm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uZQCVCR6Wm .title {
  margin-bottom: 2rem;
}
.cid-uZQCVCR6Wm .mbr-section-subtitle {
  color: #767676;
}
.cid-uZQCVCR6Wm a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uZQCVCR6Wm a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uZQCVCR6Wm textarea.form-control {
  min-height: 188px;
}
.cid-uZQCVCZLPw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZQCVCZLPw .content {
    text-align: center;
  }
  .cid-uZQCVCZLPw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uZQCVCZLPw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uZQCVCZLPw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uZQCVCZLPw .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uZQCVCZLPw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZQCVCZLPw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uZQCVCZLPw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uZQCVCZLPw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uZQCVCZLPw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZQCVCZLPw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZQCVCZLPw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQCVCZLPw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZQCVCZLPw H5 {
  color: #000000;
}
.cid-uZQCVCZLPw P {
  color: #000000;
}
.cid-uZQCVDaLQp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uZQCVDaLQp .content {
    text-align: center;
  }
  .cid-uZQCVDaLQp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uZQCVDaLQp .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uZQCVDaLQp .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uZQCVDaLQp .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uZQCVDaLQp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uZQCVDaLQp .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uZQCVDaLQp .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-uZQCVDaLQp .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uZQCVDaLQp .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uZQCVDaLQp .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uZQCVDaLQp .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uZQCVDaLQp .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-uZQCVDaLQp H5 {
  color: #000000;
}
.cid-uZQCVDaLQp P {
  color: #000000;
}
