@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Regular.woff2') format('woff2'),
         url('fonts/OpenSans-Regular.woff') format('woff'),
         url('fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'OpenSans', sans-serif;
    background: #f0f0f0;
}
.display-1 {
  font-family: 'Cormorant Garamond';
  font-size: 7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'Cormorant Garamond';
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'OpenSans';
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Cormorant Garamond';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'OpenSans';
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6B6B6B !important;
}
.bg-success {
  background-color: #314825 !important;
}
.bg-info {
  background-color: #6EC1E4 !important;
}
.bg-warning {
  background-color: #EE3102 !important;
}
.bg-danger {
  background-color: #EE2852 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6B6B6B !important;
  border-color: #6B6B6B !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #54595F !important;
  border-color: #54595F !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2b2e31 !important;
  border-color: #2b2e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2b2e31 !important;
  border-color: #2b2e31 !important;
}
.btn-info,
.btn-info:active {
  background-color: #6EC1E4 !important;
  border-color: #6EC1E4 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #27a1d4 !important;
  border-color: #27a1d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #27a1d4 !important;
  border-color: #27a1d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #314825 !important;
  border-color: #314825 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0a0f08 !important;
  border-color: #0a0f08 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a0f08 !important;
  border-color: #0a0f08 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #EE3102 !important;
  border-color: #EE3102 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #981f01 !important;
  border-color: #981f01 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #981f01 !important;
  border-color: #981f01 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #EE2852 !important;
  border-color: #EE2852 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b10e31 !important;
  border-color: #b10e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b10e31 !important;
  border-color: #b10e31 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6B6B6B;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #404040 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6B6B6B !important;
  border-color: #6B6B6B !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #54595F;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2b2e31 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #54595F !important;
  border-color: #54595F !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6EC1E4;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #27a1d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6EC1E4 !important;
  border-color: #6EC1E4 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #314825;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a0f08 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #314825 !important;
  border-color: #314825 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #EE3102;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #981f01 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #EE3102 !important;
  border-color: #EE3102 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #EE2852;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b10e31 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #EE2852 !important;
  border-color: #EE2852 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6B6B6B !important;
}
.text-secondary {
  color: #54595F !important;
}
.text-success {
  color: #314825 !important;
}
.text-info {
  color: #6EC1E4 !important;
}
.text-warning {
  color: #EE3102 !important;
}
.text-danger {
  color: #EE2852 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #383838 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #242629 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #030502 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2597c7 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #891c01 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a30d2d !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6B6B6B;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6EC1E4;
}
.alert-warning {
  background-color: #EE3102;
}
.alert-danger {
  background-color: #EE2852;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6B6B6B;
  border-color: #6B6B6B;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6B6B6B;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ababab;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a1c58e;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fecabe;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fde5ea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'OpenSans';
  font-size: 0.8rem;
  line-height: 1.5;
  font-family: 'OpenSans', serif !important;
  font-size: 0.8rem !important;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6B6B6B !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'OpenSans';
  font-size: 0.8rem;
  line-height: 1.5;
  font-family: 'OpenSans', serif !important;
  font-size: 0.8rem !important;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #6B6B6B;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6B6B6B;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6B6B6B;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6B6B6B;
  border-bottom-color: #6B6B6B;
}
.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: #fff !important;
  background-color: #6B6B6B !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #54595F !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='%236B6B6B' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sN2cSIjoTE {
  z-index: 1000;
  width: 100%;
}
.cid-sN2cSIjoTE nav.navbar {
  position: fixed;
}
.cid-sN2cSIjoTE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sN2cSIjoTE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sN2cSIjoTE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sN2cSIjoTE .dropdown-item:hover,
.cid-sN2cSIjoTE .dropdown-item:focus {
  background: #6B6B6B !important;
  color: white !important;
}
.cid-sN2cSIjoTE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sN2cSIjoTE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sN2cSIjoTE .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sN2cSIjoTE .nav-item {
  margin: 0 31px;
}
.cid-sN2cSIjoTE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sN2cSIjoTE .nav-link {
  position: relative;
}
.cid-sN2cSIjoTE .nav-link:hover,
.cid-sN2cSIjoTE .nav-link:focus,
.cid-sN2cSIjoTE .nav-link:active {
  color: #ab0025 !important;
}
.cid-sN2cSIjoTE .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .container {
    flex-wrap: inherit;
  }
}
.cid-sN2cSIjoTE .navbar-caption:hover,
.cid-sN2cSIjoTE .navbar-caption:focus,
.cid-sN2cSIjoTE .navbar-caption:active {
  color: #ab0025 !important;
}
.cid-sN2cSIjoTE .dropdown-menu,
.cid-sN2cSIjoTE .navbar.opened {
  background: #ffffff !important;
}
.cid-sN2cSIjoTE .nav-item:focus,
.cid-sN2cSIjoTE .nav-link:focus {
  outline: none;
}
.cid-sN2cSIjoTE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sN2cSIjoTE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sN2cSIjoTE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sN2cSIjoTE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sN2cSIjoTE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sN2cSIjoTE .navbar.opened {
  transition: all 0.3s;
}
.cid-sN2cSIjoTE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sN2cSIjoTE .navbar .navbar-logo img {
  width: auto;
}
.cid-sN2cSIjoTE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sN2cSIjoTE .navbar.collapsed {
  justify-content: center;
}
.cid-sN2cSIjoTE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sN2cSIjoTE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sN2cSIjoTE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sN2cSIjoTE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sN2cSIjoTE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sN2cSIjoTE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sN2cSIjoTE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sN2cSIjoTE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sN2cSIjoTE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sN2cSIjoTE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sN2cSIjoTE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sN2cSIjoTE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sN2cSIjoTE .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sN2cSIjoTE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sN2cSIjoTE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sN2cSIjoTE .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sN2cSIjoTE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sN2cSIjoTE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sN2cSIjoTE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sN2cSIjoTE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-sN2cSIjoTE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sN2cSIjoTE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sN2cSIjoTE .dropdown-item.active,
.cid-sN2cSIjoTE .dropdown-item:active {
  background-color: transparent;
}
.cid-sN2cSIjoTE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sN2cSIjoTE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sN2cSIjoTE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sN2cSIjoTE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sN2cSIjoTE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sN2cSIjoTE .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sN2cSIjoTE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sN2cSIjoTE ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: auto;
}
.cid-sN2cSIjoTE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sN2cSIjoTE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sN2cSIjoTE .navbar {
    height: 70px;
  }
  .cid-sN2cSIjoTE .navbar.opened {
    height: auto;
  }
  .cid-sN2cSIjoTE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sN2cSIjoTE .socials-wrap {
  flex-shrink: 0;
}
.cid-sN2cSIjoTE .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-sN2cSIjoTE .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-sN2cSIjoTE .socials-item .link {
  color: #000000;
}
.cid-sN2dg8se2K {
  padding-top: 6rem;
  padding-bottom: 9rem;
  background-image: url('assets/images/1.jpg');
}
.cid-sN2dg8se2K .content {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sN2dg8se2K .content {
    padding: 1rem 0;
  }
}
.cid-sN2dg8se2K .mbr-section-title {
  color: #ffffff;
  margin-bottom: 20.4px;
  text-align: right;
}
.cid-sN2dg8se2K .mbr-section-subtitle {
  color: #6b6b6b;
  margin-bottom: 9px;
}
.cid-sN2dg8se2K .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-sN2e9XVa50 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sN2e9XVa50 h2,
.cid-sN2e9XVa50 h3,
.cid-sN2e9XVa50 h4,
.cid-sN2e9XVa50 p {
  margin: 0;
}
.cid-sN2e9XVa50 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sN2e9XVa50 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-sN2e9XVa50 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sN2ebutLdI {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sN2ebutLdI h2,
.cid-sN2ebutLdI h3,
.cid-sN2ebutLdI h4,
.cid-sN2ebutLdI p {
  margin: 0;
}
.cid-sN2ebutLdI ul {
  padding: 0;
  list-style-type: none;
}
.cid-sN2ebutLdI .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sN2ebutLdI .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-sN2ebutLdI .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sN2ebutLdI .list {
  margin: 25px 0;
  color: #6b6b6b;
}
.cid-sN2ebutLdI .mbr-card-text {
  margin: 10px 0;
}
.cid-sN2ebutLdI .mbr-card-text::before {
  content: "* ";
  display: inline;
}
.cid-sN2eCcv8AK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sN2eCcv8AK h2,
.cid-sN2eCcv8AK h3,
.cid-sN2eCcv8AK h4,
.cid-sN2eCcv8AK h5 {
  margin: 0;
}
.cid-sN2eCcv8AK .mbr-section-title {
  color: #000000;
}
.cid-sN2eCcv8AK .mbr-card-title {
  text-align: center;
  color: #ab0025;
}
.cid-sN2eCcv8AK .mbr-card-subtitle {
  text-align: center;
  color: #6b6b6b;
}
.cid-sN2eCcv8AK .image-container {
  min-height: 738px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: minmax(346px, 704px) minmax(153px, 332px) minmax(153px, 332px) minmax(153px, 332px);
  grid-template-rows: 1fr 1fr;
  grid-gap: 40px;
  grid-template-areas: "img1 img2 img4 img5" "img1 img3 img4 img6";
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-sN2eCcv8AK .image-container {
    grid-template-columns: minmax(290px, 442px) minmax(290px, 442px);
    grid-template-rows: 924px 442px 442px 442px;
    grid-gap: 40px;
    grid-template-areas: "img1 img1" "img2 img4" "img3 img4" "img6 img5";
  }
}
@media (max-width: 680px) {
  .cid-sN2eCcv8AK .image-container {
    grid-template-columns: minmax(260px, 620px);
    grid-template-rows: 697px 329px 697px 329px 329px 329px;
    grid-gap: 40px;
    grid-template-areas: "img1" "img2" "img4" "img3" "img5" "img6";
  }
}
.cid-sN2eCcv8AK #img1 {
  grid-area: img1;
  background-image: url('assets/images/2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img2 {
  grid-area: img2;
  background-image: url('assets/images/3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img3 {
  grid-area: img3;
  background-image: url('assets/images/4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img4 {
  grid-area: img4;
  background-image: url('assets/images/5.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img5 {
  grid-area: img5;
  background-image: url('assets/images/6.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img6 {
  grid-area: img6;
  background-image: url('assets/images/7.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK .top-left,
.cid-sN2eCcv8AK .bottom-right {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}
.cid-sN2eCcv8AK .top-left::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #ab0025;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .top-left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #ab0025;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .bottom-right::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #ab0025;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .bottom-right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #ab0025;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: #ffffff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .image-wrap:hover .text-wrap {
  opacity: 1;
}
.cid-sN2eCcv8AK .image-wrap:hover .top-left::before {
  height: 100%;
}
.cid-sN2eCcv8AK .image-wrap:hover .top-left::after {
  width: 100%;
}
.cid-sN2eCcv8AK .image-wrap:hover .bottom-right::before {
  height: 100%;
}
.cid-sN2eCcv8AK .image-wrap:hover .bottom-right::after {
  width: 100%;
}
.cid-sN2gZzRqYE {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sN2gZzRqYE h2,
.cid-sN2gZzRqYE h3,
.cid-sN2gZzRqYE h4,
.cid-sN2gZzRqYE p {
  margin: 0;
}
.cid-sN2gZzRqYE .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sN2gZzRqYE .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sN2gZzRqYE .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-sN2gZzRqYE .mbr-first-section-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-sN2gZzRqYE .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-sN2gZzRqYE .mbr-second-section-subtitle {
  margin-bottom: 5px;
}
.cid-sN2gZzRqYE .mbr-second-section-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-sN2hlukktg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-sN2hlukktg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-sN2hlukktg .bg-image-wrap {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  background-image: url('assets/images/1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-sN2hlukktg .bg-image-wrap {
    display: none;
  }
}
.cid-sN2hlukktg .bg-image-wrap-inner {
  display: none;
}
@media (max-width: 1024px) {
  .cid-sN2hlukktg .bg-image-wrap-inner {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-image: url('assets/images/1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.cid-sN2hlukktg .inner-container {
  display: flex;
}
@media (max-width: 1024px) {
  .cid-sN2hlukktg .inner-container {
    flex-direction: column;
  }
}
.cid-sN2hlukktg .left {
  padding: 50px 0;
  display: flex;
  position: relative;
}
@media (max-width: 1024px) {
  .cid-sN2hlukktg .left {
    padding: 0;
    padding-top: 73px;
    padding-bottom: 77px;
  }
}
@media (max-width: 767px) {
  .cid-sN2hlukktg .left {
    flex-direction: column;
  }
}
.cid-sN2hlukktg .icons {
  padding: 5px 30px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cid-sN2hlukktg .icons div:first-child {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .cid-sN2hlukktg .icons {
    padding-left: 30px;
  }
}
.cid-sN2hlukktg .star-icon {
  color: #ffffff;
}
.cid-sN2hlukktg .text-left {
  padding-right: 25%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-sN2hlukktg .text-left {
    padding: 40px 20px 0px 20px;
  }
}
.cid-sN2hlukktg .right {
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .cid-sN2hlukktg .right {
    margin-top: 25px;
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-sN2hlukktg .right {
    padding: 60px 20px 40px 20px;
  }
}
.cid-sN2hlukktg .right-inner {
  width: 100%;
  padding-left: 13%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .cid-sN2hlukktg .right-inner {
    align-items: center;
    padding-left: 33px;
  }
}
@media (max-width: 767px) {
  .cid-sN2hlukktg .right-inner {
    padding-left: 0;
  }
}
.cid-sN2hlukktg h2,
.cid-sN2hlukktg p {
  margin: 0;
}
.cid-sN2hlukktg .mbr-section-title-one {
  color: #ffffff;
}
.cid-sN2hlukktg .mbr-section-title-two {
  color: #000000;
}
.cid-sN2hlukktg .mbr-text-one {
  color: #ffffff;
  font-weight: 300;
  margin-top: 14px;
}
.cid-sN2hlukktg .mbr-text-two {
  color: #6b6b6b;
  font-weight: 300;
  margin-top: 14px;
}
.cid-sN2hlukktg .text-right {
  width: 505px;
  max-width: 505px;
}
@media (max-width: 767px) {
  .cid-sN2hlukktg .text-right {
    width: 100%;
  }
}
.cid-sN2hlukktg .form-wrap {
  width: 500px;
  max-width: 500px;
  padding-top: 16px;
}
.cid-sN2hlukktg .form-wrap svg {
  position: absolute;
  right: 0;
  top: 15px;
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .cid-sN2hlukktg .form-wrap {
    width: 100%;
  }
}
.cid-sN2hlukktg .input-wrap {
  position: relative;
}
.cid-sN2hlukktg input,
.cid-sN2hlukktg select {
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 20px;
  padding: 11px 35px 11px 0;
  margin-right: 24px;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: inherit;
  color: #6b6b6b;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  outline: 0;
  cursor: pointer;
  transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
}
.cid-sN2hlukktg input:last-child,
.cid-sN2hlukktg select:last-child {
  margin-right: 0;
}
.cid-sN2hlukktg .form-check-input {
  width: 1em;
  height: 1em;
  padding: 0;
  border: 1px solid #000000;
}
.cid-sN2hlukktg .form-check-input:checked {
  padding: 0;
  width: 1em;
  height: 1em;
  background-color: #000000;
  border-color: #000000;
}
.cid-sN2hlukktg .form-control {
  color: #000000;
  border-radius: 0;
  outline: none;
}
.cid-sN2hlukktg .value {
  border: none;
}
.cid-sN2hlukktg .link-wrap {
  padding-top: 5px;
}
.cid-sN2hlukktg .link {
  font-weight: 600;
  position: relative;
}
.cid-sN2hlukktg .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-sN2hlukktg input[type="range"] {
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.cid-sN2hlukktg input[type="range"]::-moz-range-track {
  border: inherit;
  background: transparent;
}
.cid-sN2hlukktg input[type="range"]::-ms-track {
  border: inherit;
  background: transparent;
  color: transparent;
}
.cid-sN2hlukktg input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 1px;
}
.cid-sN2hlukktg input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #000000;
  margin-top: -6px;
}
.cid-sN2hlukktg input[type="range"]:focus {
  outline: none;
}
.cid-sN2hlukktg input[type="range"]:focus::-webkit-slider-thumb {
  background: #000000;
}
.cid-sN2hlukktg input[type="range"]::-ms-fill-upper {
  background: transparent;
}
.cid-sN2hlukktg input[type="range"]::-ms-fill-lower {
  background: black;
}
.cid-sN2hm15nNY {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sN2hm15nNY .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sN2hm15nNY .socials,
.cid-sN2hm15nNY .contacts {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .cid-sN2hm15nNY .socials,
  .cid-sN2hm15nNY .contacts {
    width: 100%;
  }
}
.cid-sN2hm15nNY .contacts {
  text-align: right;
}
.cid-sN2hm15nNY .contacts div {
  padding-top: 37px;
  margin-bottom: 20px;
}
.cid-sN2hm15nNY .contacts div:first-child {
  padding: 0;
}
.cid-sN2hm15nNY .contacts div:last-child {
  margin: 0;
}
@media (max-width: 1024px) {
  .cid-sN2hm15nNY .contacts {
    padding-top: 30px;
  }
}
.cid-sN2hm15nNY h3,
.cid-sN2hm15nNY p {
  margin: 0;
}
.cid-sN2hm15nNY .mbr-section-title {
  color: #000000;
  margin-bottom: 6px;
}
.cid-sN2hm15nNY .mbr-contacts {
  color: #000000;
  margin-bottom: 18px;
}
.cid-sN2hm15nNY .mbr-socials {
  color: #000000;
  margin-bottom: 18px;
}
.cid-sN2hohRypA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sN2hohRypA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-sN2hohRypA h3 {
  margin: 0;
}
.cid-sN2hohRypA .content {
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sN2hohRypA .content {
    padding: 0 1rem;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .cid-sN2hohRypA .text-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sN2hohRypA .mbr-brand {
  color: #000000;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sN2hohRypA .mbr-brand {
    text-align: center;
  }
}
.cid-sN2hohRypA .mbr-text {
  color: #6b6b6b;
  margin: 10px 0 0;
  font-weight: 300;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sN2hohRypA .mbr-text {
    text-align: center;
  }
}
.cid-sN2hohRypA .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sN2hohRypA .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 767px) {
  .cid-sN2hohRypA .socials {
    margin-right: -20px;
  }
}
.cid-sN2hohRypA .socials-item .link {
  color: #000000;
}
.cid-sN2hohRypA .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-sN2hohRypA .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-sN2hohRypA .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-sN2hohRypA .socials-item,
.cid-sN2hohRypA .link P {
  color: #000000;
}
.cid-article2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-article2 h2,
.cid-article2 h3,
.cid-article2 h4,
.cid-article2 p {
  margin: 0;
}
.cid-article2 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-article2 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-article2 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-article2 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-article2 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-article2 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-features2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-features2 .content {
  padding: 1rem;
}
.cid-features2 h2,
.cid-features2 h4,
.cid-features2 p {
  margin: 0;
}
.cid-features2 .mbr-section-title {
  color: #000000;
}
.cid-features2 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-features2 .mbr-text {
  color: #6b6b6b;
  margin-top: 14px;
}
.cid-features2 .mbr-section-btn {
  margin-top: 30.4px;
}
.cid-features2 .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-team1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-team1 .mbr-section-head {
    padding: 0 18px;
  }
}
.cid-team1 .people {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-team1 .people {
    padding: 0;
  }
}
.cid-team1 .mbr-section-title {
  color: #000000;
  margin: 0;
}
.cid-team1 .mbr-section-subtitle {
  color: #6b6b6b;
  margin: 0;
}
.cid-team1 .mbr-text {
  color: #6b6b6b;
  margin: 10px auto;
}
.cid-team1 .item-name {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-team1 h3 {
  margin: 0;
}
.cid-team1 .occupation {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-team1 .item {
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-team1 .item-caption {
  padding-top: 14px;
  background: transparent;
  background: #a6a6a6;
}
.cid-team1 .item-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.cid-team1 .item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-team1 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-team1 .item:hover {
  cursor: pointer;
}
.cid-team1 .item:hover .item-img::before {
  opacity: 0.7;
}
.cid-progressbars1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .cid-progressbars1 .col-md-6 {
    width: 100%;
  }
  .cid-progressbars1 .progress-elements {
    width: 649px;
    max-width: 649px;
    padding-bottom: 130px;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .cid-progressbars1 .progress-elements {
    width: 100%;
    padding-bottom: 125px;
  }
}
.cid-progressbars1 h2,
.cid-progressbars1 h4,
.cid-progressbars1 p {
  margin: 0;
}
.cid-progressbars1 .text-elements {
  padding-left: 234px;
}
@media (max-width: 1024px) {
  .cid-progressbars1 .text-elements {
    width: 652px;
    max-width: 652px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-progressbars1 .text-elements {
    width: 100%;
  }
}
.cid-progressbars1 .mbr-section-title {
  color: #000000;
  margin-bottom: 14px;
}
.cid-progressbars1 .mbr-text {
  margin-top: 14px;
}
.cid-progressbars1 .link-wrap {
  padding-top: 25px;
}
.cid-progressbars1 .link {
  font-weight: 600;
  position: relative;
}
.cid-progressbars1 .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-progressbars1 .progress {
  height: 1px;
  width: 100%;
  margin-top: 14px;
  border-radius: 0;
  background-color: transparent;
}
.cid-progressbars1 progress::-webkit-progress-value {
  background: #000000;
}
.cid-progressbars1 progress[value]::-webkit-progress-bar {
  background: transparent;
}
.cid-progressbars1 .progressbar-title {
  position: absolute;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: end;
}
.cid-progressbars1 .title-wrap {
  position: relative;
  z-index: 5;
}
.cid-progressbars1 .number-container {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  min-width: 50px;
  font-size: x-large;
  color: #000000;
}
.cid-progressbars1 .progress-wrap {
  position: relative;
  padding-top: 36px;
}
.cid-progressbars1 .progress-wrap:first-child {
  padding: 0;
}
.cid-progressbars1 .progress-value {
  position: relative;
}
.cid-progressbars1 .progress1 .progressbar-number:before,
.cid-progressbars1 .progress2 .progressbar-number:before,
.cid-progressbars1 .progress3 .progressbar-number:before,
.cid-progressbars1 .progress4 .progressbar-number:before,
.cid-progressbars1 .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
  margin-right: 1px;
}
.cid-progressbars1 progress[value]::-moz-progress-bar {
  background: #000000;
}
.cid-progressbars1 progress::-ms-fill {
  background: #000000;
}
.cid-progressbars1 .progress1 .progress-value {
  width: calc(80 * 1%);
}
@media (max-width: 480px) {
  .cid-progressbars1 .progress1 .progress-value {
    width: 100%;
  }
}
.cid-progressbars1 .progress1 .progressbar-number:before {
  content: "80";
}
.cid-progressbars1 .progress2 .progress-value {
  width: calc(100 * 1%);
}
@media (max-width: 480px) {
  .cid-progressbars1 .progress2 .progress-value {
    width: 100%;
  }
}
.cid-progressbars1 .progress2 .progressbar-number:before {
  content: "100";
}
.cid-progressbars1 .progress3 .progress-value {
  width: calc(80 * 1%);
}
@media (max-width: 480px) {
  .cid-progressbars1 .progress3 .progress-value {
    width: 100%;
  }
}
.cid-progressbars1 .progress3 .progressbar-number:before {
  content: "80";
}
.cid-progressbars1 .progress4 .progress-value {
  width: calc(90 * 1%);
}
@media (max-width: 480px) {
  .cid-progressbars1 .progress4 .progress-value {
    width: 100%;
  }
}
.cid-progressbars1 .progress4 .progressbar-number:before {
  content: "90";
}
.cid-progressbars1 .progress5 .progress-value {
  width: calc(60 * 1%);
}
@media (max-width: 480px) {
  .cid-progressbars1 .progress5 .progress-value {
    width: 100%;
  }
}
.cid-progressbars1 .progress5 .progressbar-number:before {
  content: "60";
}
.cid-list1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-list1 .content {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}
@media (max-width: 1024px) {
  .cid-list1 .content {
    flex-wrap: wrap;
  }
}
.cid-list1 h2,
.cid-list1 h4,
.cid-list1 h3,
.cid-list1 h6,
.cid-list1 p,
.cid-list1 ul {
  margin: 0;
}
.cid-list1 ul {
  padding: 0;
  list-style-type: none;
}
.cid-list1 .heading {
  width: 35%;
  margin-bottom: 37px;
}
@media (max-width: 1024px) {
  .cid-list1 .heading {
    width: 100%;
  }
}
.cid-list1 .heading-inner {
  max-width: 476px;
}
.cid-list1 .mbr-section-title {
  color: #000000;
}
.cid-list1 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-list1 .cards {
  width: 65%;
  display: flex;
}
@media (max-width: 1024px) {
  .cid-list1 .cards {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-list1 .cards {
    flex-direction: column;
    padding-top: 0px;
  }
}
.cid-list1 .card {
  width: 34%;
}
@media (max-width: 1024px) {
  .cid-list1 .card {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-list1 .card {
    width: 100%;
    padding-top: 30px;
  }
}
.cid-list1 .mbr-card-title {
  color: #000000;
  margin-bottom: 3px;
}
.cid-list1 .mbr-card-subtitle {
  color: #6b6b6b;
}
.cid-list1 .list {
  padding-top: 5px;
  margin-bottom: 24px;
  color: #6b6b6b;
}
.cid-gallery3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-gallery3 .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-gallery3 h2,
.cid-gallery3 h3,
.cid-gallery3 h4,
.cid-gallery3 h5 {
  margin: 0;
}
.cid-gallery3 .mbr-section-head {
  margin-bottom: 40px;
}
.cid-gallery3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-gallery3 .mbr-section-subtitle {
  text-align: center;
}
.cid-gallery3 .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-gallery3 .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-gallery3 .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-gallery3 .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-gallery3 .image-wrap {
    width: 100%;
  }
}
.cid-gallery3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-gallery3 .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 270px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-gallery3 .text-wrap {
    bottom: 20px;
  }
}
.cid-gallery3 .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-form1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-form1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-form1 h2,
.cid-form1 h3,
.cid-form1 p {
  margin: 0;
}
.cid-form1 .inner-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-form1 .form-wrap {
  width: 70%;
}
@media (max-width: 1024px) {
  .cid-form1 .form-wrap {
    width: 100%;
  }
}
.cid-form1 .form-inner-wrap {
  width: 95%;
  max-width: 95%;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .cid-form1 .form-inner-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.cid-form1 .text {
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  width: 30%;
}
@media (max-width: 1024px) {
  .cid-form1 .text {
    width: 100%;
    padding-top: 50px;
  }
}
.cid-form1 .heading {
  margin-bottom: 20px;
}
.cid-form1 .mbr-section-title {
  color: #000000;
}
.cid-form1 .mbr-main-text {
  color: #6b6b6b;
  font-weight: 300;
}
.cid-form1 .mbr-section-subtitle {
  color: #000000;
  padding-right: 30%;
}
@media (max-width: 767px) {
  .cid-form1 .mbr-section-subtitle {
    padding: 0;
  }
}
.cid-form1 .mbr-sub-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-form1 .mbr-contacts {
  color: #000000;
  margin-bottom: 10px;
}
.cid-form1 form .mbr-section-btn {
  text-align: center;
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-form1 textarea {
  width: 100%;
  padding: 11px 18px;
  border: 1px solid #000000;
  height: 134px;
  border-radius: 0;
}
.cid-form1 input,
.cid-form1 select {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 20px;
  padding: 11px 0;
  margin-right: 24px;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: inherit;
  color: #6b6b6b;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  outline: 0;
  cursor: pointer;
  transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
}
.cid-form1 input:last-child,
.cid-form1 select:last-child {
  margin-right: 0;
}
.cid-form1 .form-check-input {
  padding: 0;
  border: 1px solid #000000;
}
.cid-form1 .form-check-input:checked {
  padding: 0;
  background-color: #000000;
  border-color: #000000;
}
.cid-form1 .form-control {
  color: #000000;
  border-radius: 0;
  outline: none;
}
.cid-form1 .value {
  border: none;
}
.cid-form1 input[type="range"] {
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.cid-form1 input[type="range"]::-moz-range-track {
  border: inherit;
  background: transparent;
}
.cid-form1 input[type="range"]::-ms-track {
  border: inherit;
  background: transparent;
  color: transparent;
}
.cid-form1 input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 1px;
}
.cid-form1 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #000000;
  margin-top: -6px;
}
.cid-form1 input[type="range"]:focus {
  outline: none;
}
.cid-form1 input[type="range"]:focus::-webkit-slider-thumb {
  background: #000000;
}
.cid-form1 input[type="range"]::-ms-fill-upper {
  background: transparent;
}
.cid-form1 input[type="range"]::-ms-fill-lower {
  background: black;
}
.cid-features3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-features3 h2,
.cid-features3 h4,
.cid-features3 p {
  margin: 0;
}
.cid-features3 img {
  width: 100%;
  height: auto;
}
.cid-features3 .text-elements-wrap {
  width: 88.5%;
}
@media (max-width: 767px) {
  .cid-features3 .text-elements-wrap {
    width: 100%;
  }
}
.cid-features3 .text-elements {
  padding-left: 12%;
  padding-right: 23.5%;
}
@media (max-width: 1024px) {
  .cid-features3 .text-elements {
    padding-top: 12%;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .cid-features3 .text-elements {
    padding-bottom: 12%;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .cid-features3 .col-md-7,
  .cid-features3 .col-md-5 {
    width: 100%;
  }
}
.cid-features3 .mbr-section-title {
  color: #000000;
  margin-bottom: 20px;
}
.cid-features3 .mbr-section-subtitle {
  margin-bottom: 6px;
}
.cid-features3 .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-features3 .link-wrap {
  padding-top: 25px;
}
.cid-features3 .link {
  font-weight: 600;
  position: relative;
}
.cid-features3 .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-gallery1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-gallery1 h2,
.cid-gallery1 h3,
.cid-gallery1 h4,
.cid-gallery1 h5 {
  margin: 0;
}
.cid-gallery1 .mbr-section-title {
  color: #000000;
}
.cid-gallery1 .mbr-card-title {
  text-align: center;
  color: #000000;
}
.cid-gallery1 .mbr-card-subtitle {
  text-align: center;
  color: #6b6b6b;
}
.cid-gallery1 .image-container {
  min-height: 738px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: minmax(346px, 704px) minmax(153px, 332px) minmax(153px, 332px) minmax(153px, 332px);
  grid-template-rows: 1fr 1fr;
  grid-gap: 40px;
  grid-template-areas: "img1 img2 img4 img5" "img1 img3 img4 img6";
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-gallery1 .image-container {
    grid-template-columns: minmax(290px, 442px) minmax(290px, 442px);
    grid-template-rows: 924px 442px 442px 442px;
    grid-gap: 40px;
    grid-template-areas: "img1 img1" "img2 img4" "img3 img4" "img6 img5";
  }
}
@media (max-width: 680px) {
  .cid-gallery1 .image-container {
    grid-template-columns: minmax(260px, 620px);
    grid-template-rows: 697px 329px 697px 329px 329px 329px;
    grid-gap: 40px;
    grid-template-areas: "img1" "img2" "img4" "img3" "img5" "img6";
  }
}
.cid-gallery1 #img1 {
  grid-area: img1;
  background-image: url('../_images/gallery/img1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-gallery1 #img2 {
  grid-area: img2;
  background-image: url('../_images/gallery/img2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-gallery1 #img3 {
  grid-area: img3;
  background-image: url('../_images/gallery/img3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-gallery1 #img4 {
  grid-area: img4;
  background-image: url('../_images/gallery/img4.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-gallery1 #img5 {
  grid-area: img5;
  background-image: url('../_images/gallery/img5.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-gallery1 #img6 {
  grid-area: img6;
  background-image: url('../_images/gallery/img6.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-gallery1 .top-left,
.cid-gallery1 .bottom-right {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}
.cid-gallery1 .top-left::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #ee3102;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-gallery1 .top-left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #ee3102;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-gallery1 .bottom-right::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #ee3102;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-gallery1 .bottom-right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #ee3102;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-gallery1 .text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: #ffffff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 1s ease-out;
}
.cid-gallery1 .image-wrap:hover .text-wrap {
  opacity: 1;
}
.cid-gallery1 .image-wrap:hover .top-left::before {
  height: 100%;
}
.cid-gallery1 .image-wrap:hover .top-left::after {
  width: 100%;
}
.cid-gallery1 .image-wrap:hover .bottom-right::before {
  height: 100%;
}
.cid-gallery1 .image-wrap:hover .bottom-right::after {
  width: 100%;
}
.cid-list1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-list1 .content {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}
@media (max-width: 1024px) {
  .cid-list1 .content {
    flex-wrap: wrap;
  }
}
.cid-list1 h2,
.cid-list1 h4,
.cid-list1 h3,
.cid-list1 h6,
.cid-list1 p,
.cid-list1 ul {
  margin: 0;
}
.cid-list1 ul {
  padding: 0;
  list-style-type: none;
}
.cid-list1 .heading {
  width: 35%;
  margin-bottom: 37px;
}
@media (max-width: 1024px) {
  .cid-list1 .heading {
    width: 100%;
  }
}
.cid-list1 .heading-inner {
  max-width: 476px;
}
.cid-list1 .mbr-section-title {
  color: #000000;
}
.cid-list1 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-list1 .cards {
  width: 65%;
  display: flex;
}
@media (max-width: 1024px) {
  .cid-list1 .cards {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-list1 .cards {
    flex-direction: column;
    padding-top: 0px;
  }
}
.cid-list1 .card {
  width: 34%;
}
@media (max-width: 1024px) {
  .cid-list1 .card {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-list1 .card {
    width: 100%;
    padding-top: 30px;
  }
}
.cid-list1 .mbr-card-title {
  color: #000000;
  margin-bottom: 3px;
}
.cid-list1 .mbr-card-subtitle {
  color: #6b6b6b;
}
.cid-list1 .list {
  padding-top: 5px;
  margin-bottom: 24px;
  color: #6b6b6b;
}
.cid-pricing1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-pricing1 h2,
.cid-pricing1 h4,
.cid-pricing1 h3,
.cid-pricing1 h6,
.cid-pricing1 p,
.cid-pricing1 ul {
  margin: 0;
}
.cid-pricing1 ul {
  padding: 0;
  list-style-type: none;
}
.cid-pricing1 .heading {
  margin-bottom: 37px;
}
.cid-pricing1 .mbr-section-title {
  color: #000000;
}
.cid-pricing1 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-pricing1 .cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1201px) {
  .cid-pricing1 .cards {
    justify-content: center;
  }
}
.cid-pricing1 .card {
  width: 25%;
  padding: 37px 50px 66px;
  justify-content: space-between;
}
.cid-pricing1 .card:last-child {
  margin-right: 0;
}
@media (max-width: 1440px) {
  .cid-pricing1 .card {
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-pricing1 .card {
    width: 50%;
    padding: 37px 13% 66px;
  }
}
@media (max-width: 1024px) {
  .cid-pricing1 .card {
    padding-left: 40px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .cid-pricing1 .card {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 400px) {
  .cid-pricing1 .card {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}
.cid-pricing1 .mbr-card-title {
  color: #000000;
}
.cid-pricing1 .mbr-card-subtitle {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-pricing1 .list {
  margin-top: 22px;
  color: #6b6b6b;
}
.cid-pricing1 .mbr-card-text {
  margin: 10px 0;
}
.cid-pricing1 .mbr-card-text::before {
  content: "* ";
  display: inline;
}
.cid-pricing1 .mbr-card-btn {
  margin-top: 25px;
}
.cid-pricing1 .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-article5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-article5 .content {
  display: flex;
}
@media (max-width: 1024px) {
  .cid-article5 .content {
    flex-wrap: wrap;
  }
}
.cid-article5 h2,
.cid-article5 h4,
.cid-article5 h5,
.cid-article5 p {
  margin: 0;
}
.cid-article5 .left {
  width: 75%;
  padding-right: 58px;
}
@media (max-width: 1024px) {
  .cid-article5 .left {
    width: 100%;
    padding-right: 0;
  }
}
.cid-article5 .right {
  width: 25%;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .cid-article5 .right {
    width: 100%;
    margin-top: 40px;
  }
}
.cid-article5 .info {
  flex-direction: column;
}
.cid-article5 .mbr-section-title {
  color: #000000;
  margin: -14px 0 15px;
}
.cid-article5 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-article5 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-article5 .info-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.cid-article5 .mbr-info-title {
  color: #000000;
  margin: 5px 14px 5px 0;
}
.cid-article5 .mbr-details {
  color: #6b6b6b;
  margin: 5px 0;
}
.cid-article5 .link {
  position: relative;
  margin-right: 5px;
}
.cid-form2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-form2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-form2 .bg-image-wrap {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background-image: url('../_images/background6.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-form2 .bg-image-wrap {
    display: none;
  }
}
.cid-form2 .bg-image-wrap-inner {
  display: none;
}
@media (max-width: 1024px) {
  .cid-form2 .bg-image-wrap-inner {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    background-image: url('../_images/background6.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.cid-form2 .inner-container {
  display: flex;
}
@media (max-width: 1024px) {
  .cid-form2 .inner-container {
    flex-direction: column;
  }
}
.cid-form2 .left {
  padding: 50px 0;
  display: flex;
  position: relative;
}
@media (max-width: 1024px) {
  .cid-form2 .left {
    padding: 0;
    padding-top: 73px;
    padding-bottom: 77px;
  }
}
@media (max-width: 767px) {
  .cid-form2 .left {
    flex-direction: column;
  }
}
.cid-form2 .icons {
  padding: 5px 30px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cid-form2 .icons div:first-child {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .cid-form2 .icons {
    padding-left: 30px;
  }
}
.cid-form2 .star-icon {
  color: #ffffff;
}
.cid-form2 .text-left {
  padding-right: 25%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-form2 .text-left {
    padding: 40px 20px 0px 20px;
  }
}
.cid-form2 .right {
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .cid-form2 .right {
    margin-top: 25px;
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-form2 .right {
    padding: 60px 20px 40px 20px;
  }
}
.cid-form2 .right-inner {
  width: 100%;
  padding-left: 13%;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .cid-form2 .right-inner {
    align-items: center;
    padding-left: 33px;
  }
}
@media (max-width: 767px) {
  .cid-form2 .right-inner {
    padding-left: 0;
  }
}
.cid-form2 h2,
.cid-form2 p {
  margin: 0;
}
.cid-form2 .mbr-section-title-one {
  color: #ffffff;
}
.cid-form2 .mbr-section-title-two {
  color: #000000;
}
.cid-form2 .mbr-text-one {
  color: #ffffff;
  font-weight: 300;
  margin-top: 14px;
}
.cid-form2 .mbr-text-two {
  color: #6b6b6b;
  font-weight: 300;
  margin-top: 14px;
}
.cid-form2 .text-right {
  width: 505px;
  max-width: 505px;
}
@media (max-width: 767px) {
  .cid-form2 .text-right {
    width: 100%;
  }
}
.cid-form2 .form-wrap {
  width: 500px;
  max-width: 500px;
  padding-top: 16px;
}
.cid-form2 .form-wrap svg {
  position: absolute;
  right: 0;
  top: 15px;
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .cid-form2 .form-wrap {
    width: 100%;
  }
}
.cid-form2 .input-wrap {
  position: relative;
}
.cid-form2 input,
.cid-form2 select {
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 20px;
  padding: 11px 35px 11px 0;
  margin-right: 24px;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: inherit;
  color: #6b6b6b;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  outline: 0;
  cursor: pointer;
  transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
}
.cid-form2 input:last-child,
.cid-form2 select:last-child {
  margin-right: 0;
}
.cid-form2 .form-check-input {
  width: 1em;
  height: 1em;
  padding: 0;
  border: 1px solid #000000;
}
.cid-form2 .form-check-input:checked {
  padding: 0;
  width: 1em;
  height: 1em;
  background-color: #000000;
  border-color: #000000;
}
.cid-form2 .form-control {
  color: #000000;
  border-radius: 0;
  outline: none;
}
.cid-form2 .value {
  border: none;
}
.cid-form2 .link-wrap {
  padding-top: 5px;
}
.cid-form2 .link {
  font-weight: 600;
  position: relative;
}
.cid-form2 .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-form2 input[type="range"] {
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.cid-form2 input[type="range"]::-moz-range-track {
  border: inherit;
  background: transparent;
}
.cid-form2 input[type="range"]::-ms-track {
  border: inherit;
  background: transparent;
  color: transparent;
}
.cid-form2 input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 1px;
}
.cid-form2 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #000000;
  margin-top: -6px;
}
.cid-form2 input[type="range"]:focus {
  outline: none;
}
.cid-form2 input[type="range"]:focus::-webkit-slider-thumb {
  background: #000000;
}
.cid-form2 input[type="range"]::-ms-fill-upper {
  background: transparent;
}
.cid-form2 input[type="range"]::-ms-fill-lower {
  background: black;
}
.cid-contact1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-contact1 .content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-contact1 .socials,
.cid-contact1 .contacts {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .cid-contact1 .socials,
  .cid-contact1 .contacts {
    width: 100%;
  }
}
.cid-contact1 .contacts {
  text-align: right;
}
.cid-contact1 .contacts div {
  padding-top: 37px;
  margin-bottom: 20px;
}
.cid-contact1 .contacts div:first-child {
  padding: 0;
}
.cid-contact1 .contacts div:last-child {
  margin: 0;
}
@media (max-width: 1024px) {
  .cid-contact1 .contacts {
    padding-top: 30px;
  }
}
.cid-contact1 h3,
.cid-contact1 p {
  margin: 0;
}
.cid-contact1 .mbr-section-title {
  color: #000000;
  margin-bottom: 6px;
}
.cid-contact1 .mbr-contacts {
  color: #000000;
  margin-bottom: 18px;
}
.cid-contact1 .mbr-socials {
  color: #000000;
  margin-bottom: 18px;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 7rem !important;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 3.2rem !important;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2rem !important;
}
.display-7 {
  font-family: 'OpenSans', serif !important;
  font-size: 1rem !important;
}
.display-4 {
  font-family: 'OpenSans', serif !important;
  font-size: 0.8rem !important;
}
.waitlist-form{
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
a.tg-button,
a.tg-button:visited{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;

  background: #235b90 !important;
  color: #fff !important;
  text-decoration: none !important;

  font-weight: 700;
  box-shadow: 0 10px 25px rgba(35, 91, 144, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

a.tg-button:hover{
  background: #1e4f7c !important; /* чуть темнее */
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(35, 91, 144, 0.45);
}
}

@media (max-width: 768px){
  .waitlist-form a.tg-button{ width: 100%; }
}