body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.75rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.4375rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.13rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.6625rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  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: 2.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.925rem;
    font-size: calc( 1.6125rem + (2.75 - 1.6125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.6125rem + (2.75 - 1.6125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.704rem;
    font-size: calc( 1.3955rem + (2.13 - 1.3955) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.3955rem + (2.13 - 1.3955) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (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: #1f6234 !important;
}
.bg-success {
  background-color: #1f6234 !important;
}
.bg-info {
  background-color: #1b5f8c !important;
}
.bg-warning {
  background-color: #9f6d2a !important;
}
.bg-danger {
  background-color: #73460b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1f6234 !important;
  border-color: #1f6234 !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: #0a2011 !important;
  border-color: #0a2011 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a2011 !important;
  border-color: #0a2011 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c69453 !important;
  border-color: #c69453 !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: #926830 !important;
  border-color: #926830 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #926830 !important;
  border-color: #926830 !important;
}
.btn-info,
.btn-info:active {
  background-color: #1b5f8c !important;
  border-color: #1b5f8c !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: #0d2e43 !important;
  border-color: #0d2e43 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0d2e43 !important;
  border-color: #0d2e43 !important;
}
.btn-success,
.btn-success:active {
  background-color: #1f6234 !important;
  border-color: #1f6234 !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: #0a2011 !important;
  border-color: #0a2011 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a2011 !important;
  border-color: #0a2011 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #9f6d2a !important;
  border-color: #9f6d2a !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: #5a3e18 !important;
  border-color: #5a3e18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a3e18 !important;
  border-color: #5a3e18 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73460b !important;
  border-color: #73460b !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: #241603 !important;
  border-color: #241603 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !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: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !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: #1f6234;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0a2011 !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: #1f6234 !important;
  border-color: #1f6234 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c69453;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #926830 !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: #c69453 !important;
  border-color: #c69453 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b5f8c;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0d2e43 !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: #1b5f8c !important;
  border-color: #1b5f8c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1f6234;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a2011 !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: #1f6234 !important;
  border-color: #1f6234 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9f6d2a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5a3e18 !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: #9f6d2a !important;
  border-color: #9f6d2a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73460b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #241603 !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: #73460b !important;
  border-color: #73460b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.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: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #1f6234 !important;
}
.text-secondary {
  color: #c69453 !important;
}
.text-success {
  color: #1f6234 !important;
}
.text-info {
  color: #1b5f8c !important;
}
.text-warning {
  color: #9f6d2a !important;
}
.text-danger {
  color: #73460b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #06150b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #865f2d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #06150b !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0b2536 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #4e3615 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #160d02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !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: #1f6234;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1b5f8c;
}
.alert-warning {
  background-color: #9f6d2a;
}
.alert-danger {
  background-color: #73460b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1f6234;
  border-color: #1f6234;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1f6234;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3ec268;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3ec268;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #4aa2dc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9ac6f;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e78d16;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.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: #1f6234 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #1f6234;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1f6234;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1f6234;
}
.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: #1f6234;
  border-bottom-color: #1f6234;
}
.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: #1f6234 !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: #c69453 !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='%231f6234' %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;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
.cid-sSNhnn9Qhy .navbar-dropdown {
  position: relative !important;
}
.cid-sSNhnn9Qhy .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-sSNhnn9Qhy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSNhnn9Qhy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSNhnn9Qhy .dropdown-item:hover,
.cid-sSNhnn9Qhy .dropdown-item:focus {
  background: #1f6234 !important;
  color: white !important;
}
.cid-sSNhnn9Qhy .dropdown-item:hover span {
  color: white;
}
.cid-sSNhnn9Qhy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSNhnn9Qhy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSNhnn9Qhy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNhnn9Qhy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNhnn9Qhy .nav-link {
  position: relative;
}
.cid-sSNhnn9Qhy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .container {
    flex-wrap: nowrap;
  }
}
.cid-sSNhnn9Qhy .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNhnn9Qhy .dropdown-menu,
.cid-sSNhnn9Qhy .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNhnn9Qhy .nav-item:focus,
.cid-sSNhnn9Qhy .nav-link:focus {
  outline: none;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNhnn9Qhy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNhnn9Qhy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNhnn9Qhy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNhnn9Qhy .navbar {
  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: #ffffff;
}
.cid-sSNhnn9Qhy .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNhnn9Qhy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNhnn9Qhy .navbar .navbar-logo img {
/*   width: auto; */height:6rem !important;
}
.cid-sSNhnn9Qhy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNhnn9Qhy .navbar.collapsed {
  justify-content: center;
}
.cid-sSNhnn9Qhy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNhnn9Qhy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.1rem);
  }
}
.cid-sSNhnn9Qhy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNhnn9Qhy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNhnn9Qhy .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-sSNhnn9Qhy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNhnn9Qhy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNhnn9Qhy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNhnn9Qhy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNhnn9Qhy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNhnn9Qhy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNhnn9Qhy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNhnn9Qhy .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-sSNhnn9Qhy .navbar .navbar-logo img {
    height:6rem !important;
  }
  .cid-sSNhnn9Qhy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNhnn9Qhy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNhnn9Qhy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNhnn9Qhy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNhnn9Qhy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNhnn9Qhy .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNhnn9Qhy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNhnn9Qhy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNhnn9Qhy .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;
}
.cid-sSNhnn9Qhy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNhnn9Qhy .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .navbar-brand {
    padding-right: 40px;
  }
}
.cid-sSNhnn9Qhy .dropdown-item.active,
.cid-sSNhnn9Qhy .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNhnn9Qhy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNhnn9Qhy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNhnn9Qhy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNhnn9Qhy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNhnn9Qhy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNhnn9Qhy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNhnn9Qhy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNhnn9Qhy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNhnn9Qhy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNhnn9Qhy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNhnn9Qhy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNhnn9Qhy .navbar-dropdown {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-sSNhnn9Qhy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sSNhnn9Qhy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNhnn9Qhy .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-sSNhnn9Qhy .navbar {
    height: 70px;
  }
  .cid-sSNhnn9Qhy .navbar.opened {
    height: auto;
  }
  .cid-sSNhnn9Qhy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNhnn9Qhy .container,
.cid-sSNhnn9Qhy .container-fluid {
  flex-wrap: wrap;
}
.cid-sSNhnn9Qhy .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-sSNhnn9Qhy .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-sSNhnn9Qhy .contacts-menu .mbr-iconfont {
  color: #1f6234;
}
@media (max-width: 991px) {
  .cid-sSNhnn9Qhy .contacts-menu {
    display: none;
  }
}
.cid-sSNhnn9Qhy .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-sSNhnn9Qhy .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #1f6234;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-sSNhnn9Qhy .icon-box:hover {
  transform: scale(1.1);
}
.cid-sSNhnn9Qhy .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-sSNhnn9Qhy .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-sSNhnn9Qhy .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn .btn-black {
  color: #1f6234 !important;
}
@media (max-width: 577px) {
  .cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSNhnn9Qhy .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-sSNhnn9Qhy .navbar-collapse .nav-link:hover {
  color: #1f6234 !important;
}
.cid-tnpqNTBcvj {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tnpqNTBcvj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tnpqNTBcvj .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tnpqNTBcvj .col-text {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tnpqNTBcvj .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tnpqNTBcvj .col-form {
    padding: 30px;
  }
}
.cid-tnpqNTBcvj .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tnpqNTBcvj .text-wrapper {
    text-align: center !important;
  }
}
.cid-tnpqNTBcvj .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tnpqNTBcvj .label-text {
    text-align: center !important;
  }
}
.cid-tnpqNTBcvj .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tnpqNTBcvj .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tnpqNTBcvj .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tnpqNTBcvj .mbr-text {
    text-align: center !important;
  }
}
.cid-tnpqNTBcvj .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tnpqNTBcvj .btn-container {
  width: 100%;
  margin-top: 22px;
}
@media (max-width: 767px) {
  .cid-tnpqNTBcvj .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-tnpqNTBcvj .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tnpqNTBcvj .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tnpqNTBcvj .form-container {
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .cid-tnpqNTBcvj .form-container {
    max-width: 22rem;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cid-tnpqNTBcvj .form-container {
    text-align: center !important;
  }
}
.cid-tnpqNTBcvj .form-title {
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tnpqNTBcvj .form-title {
    text-align: center !important;
  }
}
.cid-tnpqNTBcvj .form-control {
  font-size: 1rem;
}
.cid-tnpqNTBcvj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnpqNTBcvj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnpqNTBcvj .mbr-section-title,
.cid-tnpqNTBcvj .mbr-section-btn {
  color: #ffffff;
}
.cid-tqvJitjuWX {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tqvJitjuWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqvJitjuWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .row {
    flex-direction: column-reverse;
  }
}
.cid-tqvJitjuWX .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tqvJitjuWX .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tqvJitjuWX .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tqvJitjuWX .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1b5f8c;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tqvJitjuWX .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #1f6234 !important;
}
.cid-tqvJitjuWX .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tqvJitjuWX .list-wrapper {
  margin-left: 160px;
  border-top: 2px solid #ffffff;
  padding-top: 20px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .list-wrapper {
    margin: 0 30px;
    padding-top: 12px;
  }
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .list-wrapper {
    margin: 0 30px 20px;
  }
}
.cid-tqvJitjuWX .list-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .list-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tqvJitjuWX .list-wrapper .mbr-list {
  margin-bottom: 30px;
  padding: 0;
  list-style-type: none;
}
.cid-tqvJitjuWX .list-wrapper .mbr-list li {
  padding-bottom: 6px;
  margin-bottom: 20px;
  position: relative;
}
.cid-tqvJitjuWX .list-wrapper .mbr-list li:hover::before {
  width: 0;
}
.cid-tqvJitjuWX .list-wrapper .mbr-list li::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #999999;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .list-wrapper .mbr-list li {
    width: fit-content;
  }
}
.cid-tqvJitjuWX .text-wrapper {
  margin: 0 160px 0 100px;
  border-top: 2px solid #ffffff;
  padding-top: 20px;
  position: relative;
  margin: 0 100px 0 160px;
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .text-wrapper {
    margin: 0 30px 20px;
    padding-top: 12px;
  }
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .text-wrapper {
    margin: 0 30px 20px;
  }
}
.cid-tqvJitjuWX .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tqvJitjuWX .text-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tqvJitjuWX .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tqvJitjuWX .mbr-section-title {
  color: #000000;
}
.cid-tqvJitjuWX .mbr-text {
  color: #6a6a6a;
}
.cid-tqvJitjuWX .mbr-list {
  color: #222222;
}
.cid-tqvJitjuWX .mbr-section-title,
.cid-tqvJitjuWX .mbr-section-btn {
  color: #333333;
}
.cid-tqFI3FRcmA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eeeeee;
}
.cid-tqFI3FRcmA .row {
  align-items: center;
  justify-content: center;
}
.cid-tqFI3FRcmA .col-text {
  text-align: center;
  padding: 0;
}
.cid-tqFI3FRcmA .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tqFI3FRcmA .lists-container {
    flex-wrap: wrap;
  }
}
.cid-tqFI3FRcmA .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-tqFI3FRcmA .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-tqFI3FRcmA .card-box {
  display: flex;
  flex-direction: column;
}
.cid-tqFI3FRcmA .card-number {
  color: #F0C48A;
  width: 100%;
}
.cid-tqFI3FRcmA .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-tqFI3FRcmA .card-text {
  color: #555555;
  width: 100%;
}
.cid-tqFI3FRcmA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqFI3FRcmA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqvFwqaTD2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqvFwqaTD2 .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tqvFwqaTD2 .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tqvFwqaTD2 .image-wrapper {
    padding: 30px;
    padding-left: 3rem;
  }
}
.cid-tqvFwqaTD2 .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-tqvFwqaTD2 .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tqvFwqaTD2 .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-tqvFwqaTD2 .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-tqvFwqaTD2 .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-tqvFwqaTD2 .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tqvFwqaTD2 .col-text {
    padding: 30px;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tqvFwqaTD2 .col-text {
    text-align: center;
  }
}
.cid-tqvFwqaTD2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tqvFwqaTD2 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #555555;
}
@media (max-width: 767px) {
  .cid-tqvFwqaTD2 .label-text {
    text-align: center !important;
  }
}
.cid-tqvFwqaTD2 .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-tqvFwqaTD2 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-tqvFwqaTD2 .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-tqvFwqaTD2 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tqvFwqaTD2 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tqvFwqaTD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqvFwqaTD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqFZSfzKTr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqFZSfzKTr .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-tqFZSfzKTr .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tqFZSfzKTr .row {
  justify-content: center;
}
.cid-tqFZSfzKTr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2) translateX(-8%);
  transition: 1.5s all;
}
.cid-tqFZSfzKTr .item-img {
  display: flex;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tqFZSfzKTr .item-img {
    height: 264px;
  }
}
@media (max-width: 767px) {
  .cid-tqFZSfzKTr .item-img {
    height: 528px;
  }
}
@media (min-width: 768px) {
  .cid-tqFZSfzKTr .item-img:hover img {
    transform: scale(1.2) translateX(8%);
  }
}
.cid-tqFZSfzKTr .item:focus,
.cid-tqFZSfzKTr span:focus {
  outline: none;
}
.cid-tqFZSfzKTr .item {
  cursor: pointer;
  padding: 0;
}
.cid-tqFZSfzKTr .item-wrapper {
  position: relative;
  border-radius: 0;
  background: #f9f7f5;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tqFZSfzKTr .item-wrapper {
  background: transparent;
}
.cid-tqFZSfzKTr .item-content {
  padding: 30px;
  border-radius: 0;
}
@media (max-width: 767px) {
  .cid-tqFZSfzKTr .item-content {
    padding: 24px 12px 48px;
  }
}
.cid-tqFZSfzKTr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqFZSfzKTr .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-tqFZSfzKTr .mbr-text {
  text-align: center;
  color: #222222;
}
.cid-tqFZSfzKTr .item-title {
  text-align: center;
  color: #999999;
  margin-bottom: 4px;
}
.cid-tqGPOYukA4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqGPOYukA4 .card-title {
  margin-bottom: 20px;
  color: #202020;
}
.cid-tqGPOYukA4 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #202020;
}
@media (min-width: 992px) {
  .cid-tqGPOYukA4 .google-map {
    margin-right: 17%;
  }
}
.cid-tqGPOYukA4 .google-map {
  height: 540px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tqGPOYukA4 .google-map {
    margin-bottom: 70px;
  }
}
.cid-tqGPOYukA4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tqGPOYukA4 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tqGPOYukA4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tqGPOYukA4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tqGPOYukA4 .header_box {
  margin-bottom: 40px;
}
.cid-tqGPOYukA4 .contact_content {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}
.cid-tqGPOYukA4 .card_text {
  display: inline-block;
}
.cid-tqGPOYukA4 .iconfont-wrapper {
  margin-right: 15px;
  display: inline-block;
  width: 19px;
  height: 19px;
  font-size: 19px;
  color: #202020;
}
@media (max-width: 767px) {
  .cid-tqGPOYukA4 .column_wrap {
    margin-bottom: 29px;
  }
}
.cid-tqGai2JqXr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1f6234;
}
.cid-tqGai2JqXr .mbr-section-title {
  color: #ffffff;
}
.cid-tqGai2JqXr .mbr-text,
.cid-tqGai2JqXr .mbr-section-btn {
  color: #ffffff;
}
.cid-tqGai2JqXr .btn {
  color: white!important;
  border-color: white!important;
}
.cid-tqvHzjwLhW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tqvHzjwLhW .logo-footer {
  line-height: normal;
}
.cid-tqvHzjwLhW .logo-footer .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqvHzjwLhW .copyright {
  display: flex;
  align-items: center;
}
.cid-tqvHzjwLhW .copyright .mbr-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
  align-self: center;
  flex-wrap: wrap;
}
.cid-tqvHzjwLhW .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqvHzjwLhW .social-btns a:focus {
  text-decoration: none;
}
.cid-tqvHzjwLhW .social-btns .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-tqvHzjwLhW .copyrightPart {
  display: flex;
}
.cid-tqvHzjwLhW .copyrightPart .wrap {
  justify-content: space-between;
  color: #1b5f8c;
}
.cid-tqGZKj0L18 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqGZKj0L18 .mbr-section-title {
  color: #333333;
}
.cid-tqGZKj0L18 .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tqGZKj0L18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqGZKj0L18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqGKh8KJPU {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tqGKh8KJPU .link-wrapper {
  width: 100%;
}
.cid-tqGKh8KJPU .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-tqGKh8KJPU .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-tqGKh8KJPU .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-tqGKh8KJPU .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-tqGKh8KJPU .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-tqGKh8KJPU .mbr-section-title DIV {
  text-align: center;
}
.cid-tqGKh8KJPU .mbr-text,
.cid-tqGKh8KJPU .mbr-section-btn {
  text-align: center;
}
.cid-tqGKh8KJPU .link,
.cid-tqGKh8KJPU .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tqGKh8KJPU .mbr-section-title {
  color: #ffffff;
}
.cid-tqGKh8KJPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqGKh8KJPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqGul5gLTj {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqGul5gLTj .mbr-section-title {
  color: #333333;
}
.cid-tqGul5gLTj .mbr-section-subtitle {
  color: #6c7577;
}
.cid-tqGul5gLTj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqGul5gLTj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sSw6XGqytG {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sSw6XGqytG .row {
  justify-content: center;
}
.cid-sSw6XGqytG img,
.cid-sSw6XGqytG .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sSw6XGqytG .item:focus,
.cid-sSw6XGqytG span:focus {
  outline: none;
}
.cid-sSw6XGqytG .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .col-items {
    flex-wrap: wrap;
  }
}
.cid-sSw6XGqytG .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-sSw6XGqytG .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-sSw6XGqytG .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  overflow: hidden;
  transition: 1s all;
  min-height: 463px;
}
.cid-sSw6XGqytG .item-wrapper .btn {
  padding: 10px 12px;
  min-width: 62px;
}
.cid-sSw6XGqytG .item-wrapper .btn span {
  color: #ffffff;
  margin-right: 8px;
}
.cid-sSw6XGqytG .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-sSw6XGqytG .item-wrapper .btn-primary:hover span {
  color: #1f6234 !important;
}
.cid-sSw6XGqytG .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-sSw6XGqytG .item-wrapper:hover .item-content {
    bottom: 0;
  }
  .cid-sSw6XGqytG .item-wrapper:hover .item-img img {
    transform: scale(1.2) translateY(-8%);
  }
}
.cid-sSw6XGqytG .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-sSw6XGqytG .item-img img {
  width: 100%;
  transform-style: preserve-3d;
  transition: 1.5s;
}
@media (min-width: 768px) {
  .cid-sSw6XGqytG .item-img img {
    transform: scale(1.2) translateY(8%);
  }
}
.cid-sSw6XGqytG .img-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
}
.cid-sSw6XGqytG .item-content {
  position: relative;
  bottom: -100%;
  z-index: 3;
  width: 100%;
  padding: 35px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .item-content {
    bottom: 0;
    text-align: center;
  }
}
.cid-sSw6XGqytG .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #C69453;
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .label-text {
    text-align: center !important;
  }
}
.cid-sSw6XGqytG .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-sSw6XGqytG .mbr-text {
  color: #ffffff;
}
.cid-sSw6XGqytG .item-title {
  color: #ffffff;
}
.cid-sSw6XGqytG .item-subtitle {
  color: #ffffff;
}
.cid-sSw6XGqytG .icon-wrapper {
  margin-bottom: 1rem;
}
.cid-sSw6XGqytG .icon-wrapper .mbr-iconfont {
  font-size: 33px;
  color: #ffffff;
}
.cid-sSw6XGqytG .mbr-section-head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-sSw6XGqytG .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSw6XGqytG .mbr-section-head {
    text-align: center !important;
  }
}
.cid-sSw6XGqytG .mbr-section-subtitle {
  text-align: center;
}
.cid-tqGTShvwt2 {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1278.jpg");
}
.cid-tqGTShvwt2 .link-wrapper {
  width: 100%;
}
.cid-tqGTShvwt2 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-tqGTShvwt2 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-tqGTShvwt2 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-tqGTShvwt2 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-tqGTShvwt2 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-tqGTShvwt2 .mbr-section-title DIV {
  text-align: center;
}
.cid-tqGTShvwt2 .mbr-text,
.cid-tqGTShvwt2 .mbr-section-btn {
  text-align: center;
}
.cid-tqGTShvwt2 .link,
.cid-tqGTShvwt2 .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tqGTShvwt2 .mbr-section-title {
  color: #ffffff;
}
.cid-tqGTShvwt2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqGTShvwt2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqGYJky56p {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-tqGYJky56p .mbr-section-title {
  color: #06182d;
}
.cid-tqGYJky56p .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1b5f8c;
  background: linear-gradient(#1b5f8c 0%, #1b5f8c 69%, #1b5f8c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tqGYJky56p .mbr-section-subtitle {
  color: #06182d;
}
.cid-tqGYJky56p .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tqGYJky56p .mbr-text {
  color: #1b5f8c;
  font-weight: 300;
}
.cid-tqGYJky56p .title-text {
  margin-bottom: 70px;
}
.cid-tqGYJky56p .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-tqGYJky56p .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-tqGYJky56p .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tqGYJky56p .title-text .mbr-section-title {
  color: #c69453;
}
.cid-tqGYJky56p .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-tqGYJky56p .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-tqGYJky56p .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tqGYJky56p .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #ffc900;
}
.cid-tqGYJky56p .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-tqGYJky56p .p-4 {
  padding: 1rem 0 !important;
}
.cid-tqGYJky56p .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-tqGYJky56p .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tqGYJky56p .mbri-arrow-up:before {
  content: "\e960";
}
.cid-tqGYJky56p .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tqGYJky56p .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-tqGYJky56p .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-tqGYJky56p .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-tqGYJky56p .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-tqGYJky56p .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-tqGYJky56p .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ffc900;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-tqGYJky56p .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-tqGYJky56p .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tqGYJky56p .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-tqGYJky56p .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-tqGYJky56p .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-tqGYJky56p .card .card-header a.panel-title .toggle-icon:before,
.cid-tqGYJky56p .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-tqGYJky56p .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-tqGYJky56p .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-tqGYJky56p .card .panel-body {
  padding: 14px 20px;
}
.cid-tqGYJky56p .card .panel-body p {
  color: #1b5f8c;
  line-height: 1.5;
}
.cid-tqGYJky56p .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-tqGYJky56p .title-text .mbr-section-title {
  color: #222222;
}
.cid-tqGYJky56p .card .panel-body p {
  color: #333333;
}
.cid-tqHfALI8sN {
  padding-top: 7rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1278.jpg");
}
.cid-tqHfALI8sN .link-wrapper {
  width: 100%;
}
.cid-tqHfALI8sN .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-tqHfALI8sN .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-tqHfALI8sN .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-tqHfALI8sN .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-tqHfALI8sN .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-tqHfALI8sN .mbr-section-title DIV {
  text-align: center;
}
.cid-tqHfALI8sN .mbr-text,
.cid-tqHfALI8sN .mbr-section-btn {
  text-align: center;
}
.cid-tqHfALI8sN .link,
.cid-tqHfALI8sN .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tqHfALI8sN .mbr-section-title {
  color: #ffffff;
}
.cid-tqHfALI8sN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqHfALI8sN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqOpsefEA7 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tqOpsefEA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqOpsefEA7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqOpsefEA7 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tqOpsefEA7 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tqOpsefEA7 .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tqOpsefEA7 .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tqOpsefEA7 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tqOpsefEA7 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tqOpsefEA7 .mbr-section-head {
  width: 100%;
}
.cid-tqOpsefEA7 .mbr-section-title {
  color: #000000;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tqOpsefEA7 .mbr-section-title {
    text-align: center;
  }
}
.cid-tqOpsefEA7 .mbr-section-subtitle {
  color: #222222;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tqOpsefEA7 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tqOpsefEA7 .card-row {
  align-items: stretch;
}
.cid-tqOpsefEA7 .card {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tqOpsefEA7 .card {
    margin-top: 30px;
  }
}
.cid-tqOpsefEA7 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1f6234, #91c044);
}
@media (max-width: 1199px) {
  .cid-tqOpsefEA7 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tqOpsefEA7 .card-wrapper {
    padding: 20px;
  }
}
.cid-tqOpsefEA7 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tqOpsefEA7 .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tqOpsefEA7 .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tqOpsefEA7 .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tqOpsefEA7 .card-wrapper:hover .iconfont-wrapper-hover {
  visibility: visible;
  opacity: 1;
}
.cid-tqOpsefEA7 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tqOpsefEA7 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tqOpsefEA7 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tqOpsefEA7 .iconfont-wrapper {
    margin-bottom: 10px;
  }
}
.cid-tqOpsefEA7 .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffc900;
}
.cid-tqOpsefEA7 .card-title {
  color: #ffffff;
  margin-bottom: 20px;
  transition: .5s all;
}
@media (max-width: 767px) {
  .cid-tqOpsefEA7 .card-title {
    margin-bottom: 15px;
  }
}
.cid-tqOpsefEA7 .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tqOpsefEA7 .iconfont-wrapper-hover {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  visibility: hidden;
  opacity: 0;
  transition: .5s all;
}
.cid-tqOpsefEA7 .iconfont-wrapper-hover .mbr-iconfont {
  font-size: 32px;
  color: #ffc900;
}
.cid-tqOqZmNzzu {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tqOqZmNzzu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqOqZmNzzu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqOqZmNzzu .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tqOqZmNzzu .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tqOqZmNzzu .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tqOqZmNzzu .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tqOqZmNzzu .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tqOqZmNzzu .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tqOqZmNzzu .mbr-section-head {
  width: 100%;
}
.cid-tqOqZmNzzu .mbr-section-title {
  color: #FF014E;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tqOqZmNzzu .mbr-section-title {
    text-align: center;
  }
}
.cid-tqOqZmNzzu .mbr-section-subtitle {
  color: #222222;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tqOqZmNzzu .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tqOqZmNzzu .card-row {
  align-items: stretch;
}
.cid-tqOqZmNzzu .card {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tqOqZmNzzu .card {
    margin-top: 30px;
  }
}
.cid-tqOqZmNzzu .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1b5f8c, #1b5f8c);
}
@media (max-width: 1199px) {
  .cid-tqOqZmNzzu .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tqOqZmNzzu .card-wrapper {
    padding: 20px;
  }
}
.cid-tqOqZmNzzu .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tqOqZmNzzu .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tqOqZmNzzu .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tqOqZmNzzu .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tqOqZmNzzu .card-wrapper:hover .iconfont-wrapper-hover {
  visibility: visible;
  opacity: 1;
}
.cid-tqOqZmNzzu .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tqOqZmNzzu .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tqOqZmNzzu .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-tqOqZmNzzu .iconfont-wrapper {
    margin-bottom: 10px;
  }
}
.cid-tqOqZmNzzu .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffc900;
}
.cid-tqOqZmNzzu .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
@media (max-width: 767px) {
  .cid-tqOqZmNzzu .card-title {
    margin-bottom: 15px;
  }
}
.cid-tqOqZmNzzu .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tqOqZmNzzu .iconfont-wrapper-hover {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  visibility: hidden;
  opacity: 0;
  transition: .5s all;
}
.cid-tqOqZmNzzu .iconfont-wrapper-hover .mbr-iconfont {
  font-size: 32px;
  color: #ffc900;
}
