body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'Capture it';
  font-size: 4.4rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'gidolinya.regular';
  font-size: 2.8rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'gidolinya.regular';
  font-size: 1.2rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'gidolinya.regular';
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'gidolinya.regular';
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #8cca7f !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #efefef !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e99b7d !important;
  border-color: #e99b7d !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #de693c !important;
  border-color: #de693c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #de693c !important;
  border-color: #de693c !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: #8cca7f !important;
  border-color: #8cca7f !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #5cb34a !important;
  border-color: #5cb34a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #5cb34a !important;
  border-color: #5cb34a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #707070 !important;
  background-color: #c9c9c9 !important;
  border-color: #c9c9c9 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #da5826;
  color: #da5826;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #e99b7d;
  border-color: #e99b7d;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e99b7d !important;
  border-color: #e99b7d !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: #53a142;
  color: #53a142;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #8cca7f;
  border-color: #8cca7f;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8cca7f !important;
  border-color: #8cca7f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #bcbcbc;
  color: #bcbcbc;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #707070;
  background-color: #efefef;
  border-color: #efefef;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #000000 !important;
}
.text-secondary {
  color: #e99b7d !important;
}
.text-success {
  color: #8cca7f !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #efefef !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #da5826 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #53a142 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #bcbcbc !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #e6e6e6 !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: #efefef;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'gidolinya.regular';
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e99b7d !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-szGsZnbv65 .navbar {
  padding: .5rem 0;
  background: #8cca7f;
  transition: none;
  min-height: 77px;
}
.cid-szGsZnbv65 .navbar-dropdown.bg-color.transparent.opened {
  background: #8cca7f;
}
.cid-szGsZnbv65 a {
  font-style: normal;
}
.cid-szGsZnbv65 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-szGsZnbv65 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-szGsZnbv65 .nav-item:focus,
.cid-szGsZnbv65 .nav-link:focus {
  outline: none;
}
.cid-szGsZnbv65 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-szGsZnbv65 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-szGsZnbv65 .menu-logo {
  margin-right: auto;
}
.cid-szGsZnbv65 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-szGsZnbv65 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-szGsZnbv65 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-szGsZnbv65 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-szGsZnbv65 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-szGsZnbv65 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-szGsZnbv65 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-szGsZnbv65 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-szGsZnbv65 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-szGsZnbv65 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-szGsZnbv65 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-szGsZnbv65 .dropdown .dropdown-menu {
  background: #8cca7f;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-szGsZnbv65 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-szGsZnbv65 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-szGsZnbv65 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-szGsZnbv65 .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-szGsZnbv65 .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-szGsZnbv65 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-szGsZnbv65 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-szGsZnbv65 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-szGsZnbv65 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-szGsZnbv65 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-szGsZnbv65 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-szGsZnbv65 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-szGsZnbv65 button.navbar-toggler:focus {
  outline: none;
}
.cid-szGsZnbv65 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-szGsZnbv65 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-szGsZnbv65 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-szGsZnbv65 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-szGsZnbv65 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-szGsZnbv65 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szGsZnbv65 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-szGsZnbv65 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-szGsZnbv65 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-szGsZnbv65 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szGsZnbv65 .collapsed .btn {
  display: -webkit-flex;
}
.cid-szGsZnbv65 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-szGsZnbv65 .collapsed .navbar-collapse.collapsing,
.cid-szGsZnbv65 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-szGsZnbv65 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-szGsZnbv65 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-szGsZnbv65 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-szGsZnbv65 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-szGsZnbv65 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-szGsZnbv65 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-szGsZnbv65 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-szGsZnbv65 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-szGsZnbv65 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-szGsZnbv65 .collapsed button.navbar-toggler {
  display: block;
}
.cid-szGsZnbv65 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-szGsZnbv65 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-szGsZnbv65 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-szGsZnbv65 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-szGsZnbv65 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-szGsZnbv65 .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: 1023px) {
  .cid-szGsZnbv65 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szGsZnbv65 img {
    height: 3.8rem !important;
  }
  .cid-szGsZnbv65 .btn {
    display: -webkit-flex;
  }
  .cid-szGsZnbv65 button.navbar-toggler {
    display: block;
  }
  .cid-szGsZnbv65 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-szGsZnbv65 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-szGsZnbv65 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-szGsZnbv65 .navbar-collapse.collapsing,
  .cid-szGsZnbv65 .navbar-collapse.show {
    display: block !important;
  }
  .cid-szGsZnbv65 .navbar-collapse.collapsing .navbar-nav,
  .cid-szGsZnbv65 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-szGsZnbv65 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-szGsZnbv65 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-szGsZnbv65 .navbar-collapse.collapsing .navbar-buttons,
  .cid-szGsZnbv65 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-szGsZnbv65 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-szGsZnbv65 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-szGsZnbv65 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-szGsZnbv65 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-szGsZnbv65 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-szGsZnbv65 .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-szGsZnbv65 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-szGsZnbv65 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-szGsZnbv65 .nav-link:hover,
.cid-szGsZnbv65 .dropdown-item:hover {
  color: #cccccc !important;
}
.cid-sxZoMYMpGL {
  background-image: url("../../../assets/images/banner-cordilheira-3.png");
}
.cid-sxZoMYMpGL h3 {
  width: fit-content;
  position: relative;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sxZoMYMpGL h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sxZoMYMpGL .btn {
  margin: 0.2rem!important;
}
@media (max-width: 767px) {
  .cid-sxZoMYMpGL h3 {
    margin: auto;
    margin-bottom: 1.4rem;
  }
  .cid-sxZoMYMpGL h3:before {
    position: absolute;
    content: '';
    left: -60px;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: currentColor;
  }
}
.cid-sxZoMYMpGL H1 {
  text-align: left;
}
.cid-sxZoMYMpGL .mbr-text,
.cid-sxZoMYMpGL .mbr-section-btn {
  text-align: left;
}
.cid-sxZoMYMpGL H3 {
  text-align: left;
}
.cid-syFlz7BPX3 {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-syFlz7BPX3 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-syFlz7BPX3 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syFlz7BPX3 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syFlz7BPX3 .mbr-text,
.cid-syFlz7BPX3 .mbr-section-btn {
  color: #767676;
}
.cid-syFlz7BPX3 H1 {
  color: #e99b7d;
}
.cid-syFt9Drexk {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-syFt9Drexk .container-fluid {
  padding: 0 3rem;
}
.cid-syFt9Drexk .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #efefef;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-syFt9Drexk .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #e99b7d;
}
.cid-syFt9Drexk .table-wrap:hover .table-pricing,
.cid-syFt9Drexk .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-syFt9Drexk .table-wrap:hover .table-heading,
.cid-syFt9Drexk .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-syFt9Drexk .section-heading {
  margin-bottom: 2rem;
}
.cid-syFt9Drexk .table-heading {
  margin-bottom: 2em;
}
.cid-syFt9Drexk .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-syFt9Drexk .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #000000, #e99b7d);
  display: inline-block;
}
.cid-syFt9Drexk ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-syFt9Drexk ul li {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  padding: 0.7em 0;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-syFt9Drexk ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-syFt9Drexk hr {
  display: none;
  background: #efefef;
}
.cid-syFt9Drexk hr {
  display: block;
}
.cid-syFt9Drexk .table-heading,
.cid-syFt9Drexk .table-pricing,
.cid-syFt9Drexk .table-icon {
  color: #149dcc;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-syFt9Drexk .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-syFt9Drexk .mbr-section-btn {
  padding-top: 1rem;
}
.cid-syFt9Drexk .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-syFt9Drexk .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-syFt9Drexk .container-fluid {
    padding: 0 0rem;
  }
}
.cid-syFt9Drexk .table-pricing,
.cid-syFt9Drexk .table-icon {
  color: #8cca7f;
}
.cid-syFkz4Dnta {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/dscn1972-2000x1500.jpg");
}
@media (max-width: 992px) {
  .cid-syFkz4Dnta {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .cid-syFkz4Dnta {
    padding-top: 63px;
    padding-bottom: 63px;
  }
}
.cid-syFkz4Dnta .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-syFkz4Dnta .icon-wrap:hover {
  transform: scale(1.04);
}
.cid-syFkz4Dnta .icon-wrap span {
  padding-left: 8px;
}
.cid-syFkz4Dnta .mbr-media span {
  font-size: 36px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-syFkz4Dnta .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-syFkz4Dnta .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syFkz4Dnta .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syFkz4Dnta .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syFkz4Dnta a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syFkz4Dnta a.close:hover {
  color: #ffffff;
}
.cid-syFlj3UiVx {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-syFlj3UiVx h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-syFlj3UiVx h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syFlj3UiVx h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syFlj3UiVx .mbr-text,
.cid-syFlj3UiVx .mbr-section-btn {
  color: #767676;
}
.cid-syFlj3UiVx H1 {
  color: #e99b7d;
}
.cid-syEuhd1LUr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syEuhd1LUr .mbr-text {
    text-align: center;
  }
}
.cid-syEuhd1LUr .container-fluid {
  padding: 0;
}
.cid-syEuhd1LUr .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-syEuhd1LUr img {
  height: 100%;
  object-fit: cover;
}
.cid-syEuhd1LUr .mbr-figure {
  height: 100%;
}
.cid-syEuhd1LUr .col-lg-6 {
  padding: 0;
}
.cid-syEuhd1LUr .row {
  margin: 0;
}
.cid-syEuhd1LUr H1 {
  color: #8cca7f;
}
.cid-syEfmrywde {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syEfmrywde .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-syEfmrywde .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-syEfmrywde .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-syEfmrywde .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-syEfmrywde .container-fluid {
    padding: 0 0.0rem;
  }
}
.cid-syEfmrywde .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-syEfmrywde .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-syEfmrywde .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8!important;
}
.cid-syEfmrywde .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-syEfmrywde .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-syEfmrywde .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-syEfmrywde .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-syEfmrywde .icon-focus:before {
  content: "\e970";
  font-size: 1.2rem;
  color: black;
}
.cid-syEfmrywde .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-syEfmrywde .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-syEfmrywde .mbr-gallery-item img {
  transition: all 2s!important;
}
.cid-syEfmrywde .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-syEfmrywde .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-syEfmrywde .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-szGmVLZ4ib {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-szGmVLZ4ib h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-szGmVLZ4ib h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-szGmVLZ4ib h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-szGmVLZ4ib .mbr-text,
.cid-szGmVLZ4ib .mbr-section-btn {
  color: #767676;
}
.cid-szGmVLZ4ib H1 {
  color: #e99b7d;
}
.cid-szGmX6b5xT {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-szGmX6b5xT .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szGmX6b5xT .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-szGmX6b5xT .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-szGmX6b5xT .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-szGmX6b5xT .container-fluid {
    padding: 0 0.0rem;
  }
}
.cid-szGmX6b5xT .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szGmX6b5xT .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-szGmX6b5xT .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8!important;
}
.cid-szGmX6b5xT .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szGmX6b5xT .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-szGmX6b5xT .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-szGmX6b5xT .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-szGmX6b5xT .icon-focus:before {
  content: "\e970";
  font-size: 1.2rem;
  color: black;
}
.cid-szGmX6b5xT .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szGmX6b5xT .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-szGmX6b5xT .mbr-gallery-item img {
  transition: all 2s!important;
}
.cid-szGmX6b5xT .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-szGmX6b5xT .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-szGmX6b5xT .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-syFBT8de7l {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/dscn3110-2000x1500.jpeg");
}
@media (max-width: 992px) {
  .cid-syFBT8de7l {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .cid-syFBT8de7l {
    padding-top: 63px;
    padding-bottom: 63px;
  }
}
.cid-syFBT8de7l .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-syFBT8de7l .icon-wrap:hover {
  transform: scale(1.04);
}
.cid-syFBT8de7l .icon-wrap span {
  padding-left: 8px;
}
.cid-syFBT8de7l .mbr-media span {
  font-size: 36px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-syFBT8de7l .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-syFBT8de7l .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syFBT8de7l .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syFBT8de7l .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syFBT8de7l a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syFBT8de7l a.close:hover {
  color: #ffffff;
}
.cid-syEi5XxqAp {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-syEi5XxqAp h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-syEi5XxqAp h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syEi5XxqAp h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syEi5XxqAp .mbr-text,
.cid-syEi5XxqAp .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-syEi5XxqAp H1 {
  color: #e99b7d;
  text-align: center;
}
.cid-syFWsQ3RHD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-syFWsQ3RHD .mbr-text {
    text-align: center;
  }
}
.cid-syFWsQ3RHD .container-fluid {
  padding: 0;
}
.cid-syFWsQ3RHD .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-syFWsQ3RHD img {
  height: 100%;
  object-fit: cover;
}
.cid-syFWsQ3RHD .mbr-figure {
  height: 100%;
}
.cid-syFWsQ3RHD .col-lg-6 {
  padding: 0;
}
.cid-syFWsQ3RHD .row {
  margin: 0;
}
.cid-syFWsQ3RHD H1 {
  color: #8cca7f;
}
.cid-syEfnO2hBz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syEfnO2hBz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-syEfnO2hBz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-syEfnO2hBz .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-syEfnO2hBz .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-syEfnO2hBz .container-fluid {
    padding: 0 0.0rem;
  }
}
.cid-syEfnO2hBz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-syEfnO2hBz .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-syEfnO2hBz .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8!important;
}
.cid-syEfnO2hBz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-syEfnO2hBz .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-syEfnO2hBz .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-syEfnO2hBz .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-syEfnO2hBz .icon-focus:before {
  content: "\e970";
  font-size: 1.2rem;
  color: black;
}
.cid-syEfnO2hBz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-syEfnO2hBz .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-syEfnO2hBz .mbr-gallery-item img {
  transition: all 2s!important;
}
.cid-syEfnO2hBz .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-syEfnO2hBz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-syEfnO2hBz .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-sxZveZj6fL {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxZveZj6fL h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sxZveZj6fL h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sxZveZj6fL h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sxZveZj6fL .mbr-text,
.cid-sxZveZj6fL .mbr-section-btn {
  color: #767676;
}
.cid-sxZveZj6fL H1 {
  color: #e99b7d;
}
.cid-sxZvdRuLD5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sxZvdRuLD5 .mbr-text {
    text-align: center;
  }
}
.cid-sxZvdRuLD5 .container-fluid {
  padding: 0;
}
.cid-sxZvdRuLD5 .media-content {
  max-width: 580px;
  margin: auto;
  padding: 1rem;
}
.cid-sxZvdRuLD5 img {
  height: 100%;
  object-fit: cover;
}
.cid-sxZvdRuLD5 .mbr-figure {
  height: 100%;
}
.cid-sxZvdRuLD5 .col-lg-6 {
  padding: 0;
}
.cid-sxZvdRuLD5 .row {
  margin: 0;
}
.cid-sxZvdRuLD5 H1 {
  color: #8cca7f;
}
.cid-syDU8s7yNx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-syDU8s7yNx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-syDU8s7yNx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-syDU8s7yNx .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-syDU8s7yNx .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-syDU8s7yNx .container-fluid {
    padding: 0 0.0rem;
  }
}
.cid-syDU8s7yNx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-syDU8s7yNx .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-syDU8s7yNx .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8!important;
}
.cid-syDU8s7yNx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-syDU8s7yNx .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-syDU8s7yNx .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-syDU8s7yNx .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-syDU8s7yNx .icon-focus:before {
  content: "\e970";
  font-size: 1.2rem;
  color: black;
}
.cid-syDU8s7yNx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-syDU8s7yNx .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-syDU8s7yNx .mbr-gallery-item img {
  transition: all 2s!important;
}
.cid-syDU8s7yNx .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-syDU8s7yNx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-syDU8s7yNx .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-syFfJ30OKU {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-syFfJ30OKU h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-syFfJ30OKU h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syFfJ30OKU h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syFfJ30OKU .mbr-text,
.cid-syFfJ30OKU .mbr-section-btn {
  color: #767676;
}
.cid-syFfJ30OKU H1 {
  color: #e99b7d;
}
.cid-sxZpZRHbQL {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxZpZRHbQL a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sxZpZRHbQL a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sxZpZRHbQL .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sxZpZRHbQL .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-sxZpZRHbQL .form-control {
  background: none;
  border-radius: 0px;
}
.cid-sxZpZRHbQL textarea.form-control {
  min-height: 214.5px;
}
.cid-sxZpZRHbQL .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-sxZpZRHbQL h4,
.cid-sxZpZRHbQL p {
  margin: 0;
}
.cid-sxZpZRHbQL h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-sxZpZRHbQL h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-sxZpZRHbQL .icon {
  color: #000000;
  font-size: 2.5rem;
}
@media (max-width: 991px) {
  .cid-sxZpZRHbQL h2 {
    text-align: center;
  }
  .cid-sxZpZRHbQL h3 {
    text-align: center;
  }
  .cid-sxZpZRHbQL .input-group-btn {
    text-align: center;
  }
  .cid-sxZpZRHbQL .social-list {
    text-align: center;
  }
  .cid-sxZpZRHbQL .order-2 {
    margin-top: 2.5rem;
  }
}
.cid-sxZpZRHbQL H2 {
  color: #656565;
}
.cid-sxZpZRHbQL .content {
  text-align: left;
  color: #000000;
}
.cid-sxZpZRHbQL .type {
  text-align: left;
  padding-bottom: 8px;
  color: #000000;
}
.cid-sxZpZRHbQL .title1 {
  text-align: left;
}
.cid-sxZpZRHbQL .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-sxZpZRHbQL .title2 {
  color: #656565;
}
.cid-syFii8JqxN {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/img-20200103-163218090-2000x1500.jpeg");
}
@media (max-width: 992px) {
  .cid-syFii8JqxN {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .cid-syFii8JqxN {
    padding-top: 63px;
    padding-bottom: 63px;
  }
}
.cid-syFii8JqxN .icon-wrap {
  border: 4px solid #ffffff !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-syFii8JqxN .icon-wrap:hover {
  transform: scale(1.04);
}
.cid-syFii8JqxN .icon-wrap span {
  padding-left: 8px;
}
.cid-syFii8JqxN .mbr-media span {
  font-size: 36px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-syFii8JqxN .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-syFii8JqxN .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syFii8JqxN .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syFii8JqxN .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syFii8JqxN a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syFii8JqxN a.close:hover {
  color: #ffffff;
}
.cid-syExuWbN3K {
  padding-top: 105px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-syExuWbN3K h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-syExuWbN3K h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syExuWbN3K h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-syExuWbN3K .mbr-text,
.cid-syExuWbN3K .mbr-section-btn {
  color: #767676;
}
.cid-syExuWbN3K H1 {
  color: #e99b7d;
}
.cid-syEvVnvWCr {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-syEvVnvWCr .mbr-iconfont {
  font-size: 1.2rem!important;
}
.cid-syEvVnvWCr p {
  margin-bottom: 0!important;
}
.cid-syEvVnvWCr .card {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.cid-syEvVnvWCr .card .card-header {
  padding: 0;
  border-bottom: 1px solid #cccccc;
}
.cid-syEvVnvWCr .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-syEvVnvWCr .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-syEvVnvWCr .card .card-header a.panel-title h4 {
  padding: 0.8rem 0.2rem;
  margin-bottom: 0;
}
.cid-syEvVnvWCr .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-syEvVnvWCr .card .panel-body {
  color: #767676;
}
.cid-syEvVnvWCr .card-header {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-syEvVnvWCr .card-header:hover {
  background-color: #ffffff;
}
.cid-syEvVnvWCr .card-header:hover h4 {
  color: #e99b7d !important;
}
.cid-syEvVnvWCr H4 {
  color: #8cca7f;
}
.cid-syEvVnvWCr .panel-text {
  color: #767676;
}
.cid-szGOlT6SyF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #8cca7f;
}
@media (max-width: 767px) {
  .cid-szGOlT6SyF .content {
    text-align: center;
  }
  .cid-szGOlT6SyF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-szGOlT6SyF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-szGOlT6SyF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-szGOlT6SyF .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-szGOlT6SyF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-szGOlT6SyF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-szGOlT6SyF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-szGOlT6SyF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-szGOlT6SyF .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szGOlT6SyF .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szGOlT6SyF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szGOlT6SyF .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szGOlT6SyF .copyright > p {
  color: #ffffff;
}
