@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.9rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.84rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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.92rem;
    font-size: calc( 2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.365rem + (4.9 - 2.365) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #b08342 !important;
}
.bg-success {
  background-color: #eab132 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #333447 !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b08342 !important;
  border-color: #b08342 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #785a2d !important;
  border-color: #785a2d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #785a2d !important;
  border-color: #785a2d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f0a500 !important;
  border-color: #f0a500 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a37000 !important;
  border-color: #a37000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a37000 !important;
  border-color: #a37000 !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: #eab132 !important;
  border-color: #eab132 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #bc8813 !important;
  border-color: #bc8813 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #bc8813 !important;
  border-color: #bc8813 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #333447 !important;
  border-color: #333447 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #13131a !important;
  border-color: #13131a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #13131a !important;
  border-color: #13131a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #664c26;
  color: #664c26;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #b08342;
  border-color: #b08342;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b08342 !important;
  border-color: #b08342 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #8a5f00;
  color: #8a5f00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #f0a500;
  border-color: #f0a500;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f0a500 !important;
  border-color: #f0a500 !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: #a57711;
  color: #a57711;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #eab132;
  border-color: #eab132;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #eab132 !important;
  border-color: #eab132 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #08090c;
  color: #08090c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #333447;
  border-color: #333447;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #333447 !important;
  border-color: #333447 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #b08342 !important;
}
.text-secondary {
  color: #f0a500 !important;
}
.text-success {
  color: #eab132 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #333447 !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #664c26 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8a5f00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #a57711 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #08090c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #333447;
}
.alert-danger {
  background-color: #000000;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b08342;
  border-color: #b08342;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b08342;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9bf99;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdf7eb;
}
.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: #a3a4bd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #b08342;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b08342;
  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: #b08342;
  border-bottom-color: #b08342;
}
.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: #b08342 !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: #f0a500 !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='%23b08342' %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;
}
hr {
  border: none;
  background-color: #000000;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #000000;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #000000 !important;
}
.btn-danger:hover {
  color: #000000 !important;
}
.btn-warning:hover {
  color: #333447 !important;
}
.btn-success:hover {
  color: #eab132 !important;
}
.btn-info:hover {
  color: #82786e !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #f0a500 !important;
}
.btn-primary:hover {
  color: #b08342 !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #000000 !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #000000;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #f0a500 !important;
}
.btn-success-outline:hover::before {
  background-color: #eab132 !important;
}
.btn-info-outline:hover::before {
  background-color: #82786e !important;
}
.btn-primary-outline:hover::before {
  background-color: #b08342 !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #333447 !important;
}
.btn-danger-outline:hover::before {
  background-color: #000000 !important;
}
.cid-sDddFtjqpd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDddFtjqpd .menu-text {
  padding: 0 2rem;
  color: #5b6c8f;
}
@media (max-width: 992px) {
  .cid-sDddFtjqpd .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-sDddFtjqpd .iconfont-wrapper {
  color: #103178 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sDddFtjqpd .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-sDddFtjqpd .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sDddFtjqpd .container {
    padding: 0 1rem;
  }
}
.cid-sDddFtjqpd .menu-tite {
  background: #b08342;
  width: 100%;
  padding: 0.4rem 0rem;
  text-align: center;
  color: #ffffff;
}
.cid-sDddFtjqpd .nav-link {
  position: relative;
}
.cid-sDddFtjqpd .nav-link:hover {
  color: #82786e !important;
}
.cid-sDddFtjqpd nav.navbar {
  position: fixed;
}
.cid-sDddFtjqpd .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #101010;
}
.cid-sDddFtjqpd .navbar.opened {
  transition: all 0.3s;
}
.cid-sDddFtjqpd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDddFtjqpd .navbar .navbar-logo img {
  width: auto;
}
.cid-sDddFtjqpd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDddFtjqpd .navbar.collapsed {
  justify-content: center;
}
.cid-sDddFtjqpd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDddFtjqpd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDddFtjqpd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDddFtjqpd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDddFtjqpd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDddFtjqpd .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-sDddFtjqpd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDddFtjqpd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDddFtjqpd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDddFtjqpd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDddFtjqpd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDddFtjqpd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDddFtjqpd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDddFtjqpd .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-sDddFtjqpd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDddFtjqpd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDddFtjqpd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDddFtjqpd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDddFtjqpd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDddFtjqpd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDddFtjqpd .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDddFtjqpd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDddFtjqpd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDddFtjqpd .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-sDddFtjqpd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDddFtjqpd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDddFtjqpd .dropdown-item:hover,
.cid-sDddFtjqpd .dropdown-item:focus {
  background: #b08342 !important;
  color: white !important;
}
.cid-sDddFtjqpd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDddFtjqpd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDddFtjqpd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-sDddFtjqpd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDddFtjqpd .dropdown-menu,
.cid-sDddFtjqpd .navbar.opened {
  background: #101010 !important;
}
.cid-sDddFtjqpd .nav-item:focus,
.cid-sDddFtjqpd .nav-link:focus {
  outline: none;
}
.cid-sDddFtjqpd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDddFtjqpd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDddFtjqpd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDddFtjqpd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDddFtjqpd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDddFtjqpd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDddFtjqpd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDddFtjqpd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDddFtjqpd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDddFtjqpd .dropdown-item.active,
.cid-sDddFtjqpd .dropdown-item:active {
  background-color: transparent;
}
.cid-sDddFtjqpd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDddFtjqpd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDddFtjqpd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDddFtjqpd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #101010;
}
.cid-sDddFtjqpd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDddFtjqpd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDddFtjqpd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDddFtjqpd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDddFtjqpd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDddFtjqpd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b08342;
}
.cid-sDddFtjqpd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDddFtjqpd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDddFtjqpd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDddFtjqpd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDddFtjqpd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDddFtjqpd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDddFtjqpd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDddFtjqpd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDddFtjqpd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDddFtjqpd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDddFtjqpd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDddFtjqpd .navbar {
    height: 70px;
  }
  .cid-sDddFtjqpd .navbar.opened {
    height: auto;
  }
  .cid-sDddFtjqpd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDddGC5h9y {
  overflow: hidden !important;
  background-image: url("../../../assets/images/shutterstock-1147816632.png");
}
.cid-sDddGC5h9y .container-fluid {
  padding: 0 5rem;
}
.cid-sDddGC5h9y .animated-element {
  color: #efefef;
}
.cid-sDddGC5h9y .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sDddGC5h9y .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sDddGC5h9y .container-fluid {
    padding: 0 1rem;
  }
  .cid-sDddGC5h9y .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-sDddGC5h9y .mbr-section-title {
  color: #b08342;
}


@media (max-width: 767px) {
  .cid-sDddGC5h9y .mbr-section-title {
    line-height: 1.6rem;
    padding-top: 1rem;
    
  }
 }


@media (max-width: 767px) {
  .cid-sDddGC5h9y .mbr-section-subtitle {
    line-height: 1.5rem;
   
    
  }
 }



@media (max-width: 767px) {
  .cid-sDddGC5h9y .mbr-section-btn {
    text-align: center;
  }
 }






.cid-sDdhrrC6WZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-sDdhrrC6WZ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-sDdhrrC6WZ .text-block {
  position: relative;
  z-index: 0;
}
.cid-sDdhrrC6WZ .box {
  width: 25%;
  height: 40%;
  background: #b08342;
  position: absolute;
  top: 4%;
}
.cid-sDdhrrC6WZ .box {
  left: 20%;
}
.cid-sDdhrrC6WZ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-sDdhrrC6WZ .mbr-section-text,
.cid-sDdhrrC6WZ .mbr-section-title {
  margin-left: 31%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .cid-sDdhrrC6WZ .text-box {
    display: none;
  }
  .cid-sDdhrrC6WZ .mbr-section-title,
  .cid-sDdhrrC6WZ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-sDdhrrC6WZ .box {
    display: none;
  }
  .cid-sDdhrrC6WZ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sDdhrrC6WZ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDdhrrC6WZ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-sDdhrrC6WZ .mbr-section-text {
  color: #ffffff;
  text-align: right;
}
.cid-sDdhrrC6WZ .mbr-section-title {
  color: #b08342;
  text-align: right;
}
.cid-sDdieC88ml {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-sDdieC88ml .container {
  max-width: 1500px;
}
.cid-sDdieC88ml img {
  width: 100%;
}
.cid-sDdieC88ml h2 {
  padding: 0;
  margin: 0;
}
.cid-sDdieC88ml .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sDdieC88ml .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sDdieC88ml .img-col {
  position: relative;
}
.cid-sDdieC88ml .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-sDdieC88ml .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sDdieC88ml .img-col {
    margin-bottom: 3rem;
  }
  .cid-sDdieC88ml .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sDdieC88ml .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-sDdieC88ml .number {
    margin: auto;
  }
}
.cid-sDdieC88ml H2 {
  color: #b08342;
}
.cid-sDdieC88ml .mbr-text {
  color: #ffffff;
}

@media (max-width: 767px) {
  .cid-sDdieC88ml .mbr-section-btn {
    text-align: center;
  }
 }

.cid-sDdiHf8pQe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
@media (max-width: 992px) {
  .cid-sDdiHf8pQe {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cid-sDdiHf8pQe .text {
  padding: 0;
}
.cid-sDdiHf8pQe section {
  position: relative;
}
.cid-sDdiHf8pQe h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-sDdiHf8pQe .mbr-iconfont {
  padding: 0!important;
}
.cid-sDdiHf8pQe .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #b08342;
}
.cid-sDdiHf8pQe .box {
  background-image: url("../../../assets/images/17.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDdiHf8pQe .icon-wrap {
  background-color: #b08342 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sDdiHf8pQe .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-sDdiHf8pQe .icon-wrap span {
  padding-left: 8px;
}
.cid-sDdiHf8pQe .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sDdiHf8pQe .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-sDdiHf8pQe .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sDdiHf8pQe .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sDdiHf8pQe .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cid-sDdiHf8pQe .modalWindow .modalWindow-video {
  height: calc(100vw);
  width: 80vw;
  margin: 0 auto;
  }
}
.cid-sDdiHf8pQe a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sDdiHf8pQe a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDdiHf8pQe {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .cid-sDdiHf8pQe .box {
    height: 250px;
  }
  .cid-sDdiHf8pQe .row {
    padding: 1rem!important;
  }
}
.cid-sDdiHf8pQe H2 {
  color: #b08342;
}
.cid-sDdiTfSDzQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b08342;
}
.cid-sDdiTfSDzQ .container {
  max-width: 1500px;
}
.cid-sDdiTfSDzQ img {
  width: 100%;
}
.cid-sDdiTfSDzQ h2 {
  padding: 0;
  margin: 0;
}
.cid-sDdiTfSDzQ .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sDdiTfSDzQ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sDdiTfSDzQ .img-col {
  position: relative;
}
.cid-sDdiTfSDzQ .img2 {
  position: absolute;
  right: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-sDdiTfSDzQ .img2 {
    right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sDdiTfSDzQ .img-col {
    margin-top: 3rem;
  }
  .cid-sDdiTfSDzQ .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sDdiTfSDzQ .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-sDdiTfSDzQ .number {
    margin: auto;
  }
}
.cid-sDdiTfSDzQ H2 {
  color: #101010;
}
.cid-sDdiTfSDzQ .mbr-text {
  color: #ffffff;
}


@media (max-width: 767px) {
  .cid-sDdiTfSDzQ .mbr-section-btn {
    text-align: center;
  }
 }


.cid-sDdiTVfZWi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-sDdiTVfZWi .container {
  max-width: 1500px;
}
.cid-sDdiTVfZWi img {
  width: 100%;
}
.cid-sDdiTVfZWi h2 {
  padding: 0;
  margin: 0;
}
.cid-sDdiTVfZWi .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sDdiTVfZWi .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sDdiTVfZWi .img-col {
  position: relative;
}
.cid-sDdiTVfZWi .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-sDdiTVfZWi .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sDdiTVfZWi .img-col {
    margin-bottom: 3rem;
  }
  .cid-sDdiTVfZWi .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sDdiTVfZWi .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-sDdiTVfZWi .number {
    margin: auto;
  }
}
.cid-sDdiTVfZWi H2 {
  color: #b08342;
}
.cid-sDdiTVfZWi .mbr-text {
  text-align: left;
  color: #ffffff;
}


@media (max-width: 767px) {
  .cid-sDdiTVfZWi .mbr-section-btn {
    text-align: center;
  }
 }


.cid-sDdjAZfWBO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-sDdjAZfWBO .container {
  max-width: 1500px;
}
.cid-sDdjAZfWBO img {
  width: 100%;
}
.cid-sDdjAZfWBO h2 {
  padding: 0;
  margin: 0;
}
.cid-sDdjAZfWBO .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sDdjAZfWBO .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sDdjAZfWBO .img-col {
  position: relative;
}
.cid-sDdjAZfWBO .img2 {
  position: absolute;
  right: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-sDdjAZfWBO .img2 {
    right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sDdjAZfWBO .img-col {
    margin-top: 3rem;
  }
  .cid-sDdjAZfWBO .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sDdjAZfWBO .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-sDdjAZfWBO .number {
    margin: auto;
  }
}
.cid-sDdjAZfWBO H2 {
  color: #b08342;
}
.cid-sDdjAZfWBO .mbr-text {
  color: #b08342;
}
.cid-sDdjRc9zXk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-sDdjRc9zXk .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #b08342;
}
.cid-sDdjRc9zXk img {
  width: 100%;
}
.cid-sDdjRc9zXk p {
  margin-top: .50rem;
}
.cid-sDdjRc9zXk .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sDdjRc9zXk .content-wrapper {
  padding-top: 6rem;
}
.cid-sDdjRc9zXk h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sDdjRc9zXk .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sDdjRc9zXk p {
    margin-top: .50rem;
  }
}
@media (max-width: 992px) {
  .cid-sDdjRc9zXk .back {
    width: 100%;
    height: 75%;
  }
  .cid-sDdjRc9zXk .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sDdjRc9zXk p {
    margin-top: .50rem;
  }
}
@media (max-width: 767px) {
  .cid-sDdjRc9zXk .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sDdjRc9zXk h4 {
    right: 2rem;
  }
}


@media (max-width: 767px) {
 .cid-sDdjRc9zXk .mbr-section-btn {
    text-align: center;
  }
 }


.cid-sDdkpFTLG7 {
  padding-top: 10px;
  padding-bottom: 30px;
  background-color: #b08342;
}
.cid-sDdkpFTLG7 .container {
  max-width: 1500px;
}
.cid-sDdkpFTLG7 img {
  width: 100%;
}
.cid-sDdkpFTLG7 h2 {
  padding: 0;
  margin: 0;
}
.cid-sDdkpFTLG7 .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sDdkpFTLG7 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sDdkpFTLG7 .img-col {
  position: relative;
}
.cid-sDdkpFTLG7 .img2 {
  position: absolute;
  right: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-sDdkpFTLG7 .img2 {
    right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sDdkpFTLG7 .img-col {
    margin-top: 3rem;
  }
  .cid-sDdkpFTLG7 .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sDdkpFTLG7 .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-sDdkpFTLG7 .number {
    margin: auto;
  }
}
.cid-sDdkpFTLG7 .mbr-text {
  color: #ffffff;
}

@media (max-width: 767px) {
  .cid-sDdkpFTLG7 .mbr-section-btn {
    text-align: center;
  }
 }


.cid-sDdkqek9Tr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b08342;
}
.cid-sDdkqek9Tr .container {
  max-width: 1500px;
}
.cid-sDdkqek9Tr img {
  width: 100%;
}
.cid-sDdkqek9Tr h2 {
  padding: 0;
  margin: 0;
}
.cid-sDdkqek9Tr .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-sDdkqek9Tr .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-sDdkqek9Tr .img-col {
  position: relative;
}
.cid-sDdkqek9Tr .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-sDdkqek9Tr .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sDdkqek9Tr .img-col {
    margin-bottom: 3rem;
  }
  .cid-sDdkqek9Tr .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-sDdkqek9Tr .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-sDdkqek9Tr .number {
    margin: auto;
  }
}
.cid-sDdkqek9Tr H2 {
  color: #b08342;
}
.cid-sDdkqek9Tr .mbr-text {
  color: #ffffff;
}


@media (max-width: 767px) {
  .cid-sDdkqek9Tr .mbr-section-btn {
    text-align: center;
  }
 }



.cid-sDdlde5yhs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-sDdlde5yhs .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sDdlde5yhs .mbr-figure img {
  height: 500px;
  width: 500px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-sDdlde5yhs .mbr-text,
.cid-sDdlde5yhs .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDdlde5yhs img {
    height: 250px!important;
    width: 250px!important;
  }
}
.cid-sDdlde5yhs H1 {
  color: #b08342;
}
.cid-sDdlvL6te1 {
  padding-top: 45px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/shutterstock-1147816713.png");
}
.cid-sDdlvL6te1 .carousel {
  z-index: 2;
  position: relative;
}
.cid-sDdlvL6te1 .user {
  padding: 0 !important;
}
.cid-sDdlvL6te1 .user_image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
  border: 1px solid lightgray;
  position: relative;
}
.cid-sDdlvL6te1 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sDdlvL6te1 .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sDdlvL6te1 .carousel-item.active,
.cid-sDdlvL6te1 .carousel-item-next,
.cid-sDdlvL6te1 .carousel-item-prev {
  display: flex;
}
.cid-sDdlvL6te1 .user_name {
  margin: 0;
  color: #ffffff;
}
.cid-sDdlvL6te1 .carousel-controls a {
  font-size: 2rem;
}
.cid-sDdlvL6te1 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  background: #b08342;
  opacity: 0.8;
}
.cid-sDdlvL6te1 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sDdlvL6te1 ol {
  margin-bottom: 0;
  bottom: -2.2rem;
}
.cid-sDdlvL6te1 .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: auto 7px;
  border: none;
  background: #b08342;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-sDdlvL6te1 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sDdlvL6te1 .carousel-indicators .active {
  opacity: 1;
  width: 12px;
  height: 12px;
}
.cid-sDdlvL6te1 .user_status {
  color: #767676;
}
.cid-sDdlvL6te1 .title {
  color: #ffffff;
  margin-bottom: 3.8rem;
}
.cid-sDdlvL6te1 .mbr-text {
  margin-bottom: 1.7rem;
}
.cid-sDdmLKV007 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #101010;
}
.cid-sDdmLKV007 .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-sDdmLKV007 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-sDdmLKV007 .panel-group {
  border: none;
}
.cid-sDdmLKV007 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sDdmLKV007 .panel-body,
.cid-sDdmLKV007 .card-header {
  padding: 1rem 0;
}
.cid-sDdmLKV007 .panel-title-edit {
  color: #b08342;
}
.cid-sDdmLKV007 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sDdmLKV007 H3 {
  color: #b08342;
}
.cid-sDdmLKV007 .panel-text {
  color: #ffffff;
}
.cid-sDdmMRSZ1t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #101010;
}
.cid-sDdmMRSZ1t .mbr-text,
.cid-sDdmMRSZ1t .mbr-section-subtitle {
  color: #767676;
}
.cid-sDdmMRSZ1t .card-title {
  color: #66458e;
}
.cid-sDdmMRSZ1t .card .card-img span {
  color: #b08342;
  font-size: 60px;
  background: linear-gradient(45deg, #b08342, #b08342);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-sDdmMRSZ1t .mbr-section-subtitle,
  .cid-sDdmMRSZ1t .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDdmMRSZ1t .card .card-img span {
    background: none;
  }
}
.cid-sDdmMRSZ1t .card-title,
.cid-sDdmMRSZ1t .card-img {
  color: #ffffff;
}

@media (max-width: 767px) {
  .cid-sDdmMRSZ1t .col-12 {
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:50% 
    
  }
}
.cid-sDdmNhEES2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #101010;
}
.cid-sDdmNhEES2 section {
  position: relative;
}
.cid-sDdmNhEES2 h4 {
  margin: 0;
}
.cid-sDdmNhEES2 img {
  height: 100px;
  padding-right: 8px;
  width: auto;
}
.cid-sDdmNhEES2 a {
  font-weight: 300;
}
.cid-sDdmNhEES2 .img1 {
  color: #ffffff;
}
.cid-sDdmNhEES2 .img2 {
  color: #ffffff;
}
.cid-sDdmNhEES2 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sDdmNhEES2 .media-wrap {
  /*display: flex;*/
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-sDdmNhEES2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sDdmNhEES2 .item,
.cid-sDdmNhEES2 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-sDdmNhEES2 .item h4,
.cid-sDdmNhEES2 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sDdmNhEES2 .card-img {
  width: auto;
}
.cid-sDdmNhEES2 .link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .cid-sDdmNhEES2 .item {
    justify-content: center;
  }
}
.cid-sDdmNhEES2 .item-title {
  color: #c1c1c1;
  text-align: left;
}
.cid-sDdmNhEES2 .items-title,
.cid-sDdmNhEES2 .items-title + .line-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-sDdmNhEES2 .links-title,
.cid-sDdmNhEES2 .links-title + .line-wrap {
  color: #ffffff;
}
.cid-sDdmPr1PYt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #101010;
  overflow: hidden;
}
.cid-sDdmPr1PYt .media-container-row .mbr-text {
  color: #ffffff;
}
