body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.36rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 2.24rem;
}
/* ---- 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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #1f690c !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  border: 0px!important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1f690c !important;
  border-color: #1f690c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0b2404 !important;
  border-color: #0b2404 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0b2404 !important;
  border-color: #0b2404 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-secondary {
  border: 0px!important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #003bff !important;
  border-color: #003bff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0029b3 !important;
  border-color: #0029b3 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0029b3 !important;
  border-color: #0029b3 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-info {
  border: 0px!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-info:hover,
.btn-info:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-success {
  border: 0px!important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-warning {
  border: 0px!important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-danger {
  border: 0px!important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-white {
  border: 0px!important;
  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-white:hover,
.btn-white:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-black {
  border: 0px!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-black:hover,
.btn-black:focus {
  background-color: #003bff !important;
  box-shadow: none!important;
}
.btn-primary-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #1f690c;
  color: #1f690c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #1f690c;
  border-color: #1f690c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1f690c !important;
  border-color: #1f690c !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background-color: white!important;
  color: #1f690c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-secondary-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #003bff;
  color: #003bff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #003bff;
  border-color: #003bff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #003bff !important;
  border-color: #003bff !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background-color: white!important;
  color: #1f690c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-info-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #82786e;
  color: #82786e;
}
.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-info-outline:hover,
.btn-info-outline:focus {
  background-color: white!important;
  color: #1f690c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-success-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #f7ed4a;
  color: #f7ed4a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  background-color: white!important;
  color: #1f690c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-warning-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #808080;
  color: #808080;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  background-color: white!important;
  color: #1f690c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-danger-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #b1a374;
  color: #b1a374;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  background-color: white!important;
  color: #1f690c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-black-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.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-black-outline:hover,
.btn-black-outline:focus {
  background-color: white!important;
  color: #1f690c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.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: #1f690c !important;
}
.text-secondary {
  color: #003bff !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #3ac516 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #6689ff !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fbf7ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1f690c;
  border-color: #1f690c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1f690c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #41db19;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 2.24rem;
}
blockquote {
  border-color: #1f690c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1f690c;
  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: #1f690c;
  border-bottom-color: #1f690c;
}
.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: #1f690c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #003bff !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='%231f690c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sdqnhtXKpx {
  background-image: url("../../../assets/images/mainimage-2000x1500.jpeg");
}
.cid-sdqnhtXKpx .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-sdqnhtXKpx .mbr-section-title,
.cid-sdqnhtXKpx .icon-wrap {
  color: #ffffff;
}
.cid-sdqnhtXKpx .mbr-text,
.cid-sdqnhtXKpx .mbr-section-btn {
  color: #ffffff;
}
.cid-se6c8Ujjdj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se6c8Ujjdj .link-wrap {
  width: 100%;
}
.cid-se6c8Ujjdj .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-se6c8Ujjdj .container {
    max-width: 1400px;
  }
  .cid-se6c8Ujjdj .col-lg-6 {
    max-width: 47%;
  }
}
.cid-se6c8Ujjdj .row {
  justify-content: space-between;
}
.cid-se6c8Ujjdj .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-se6c8Ujjdj .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  transition: all 0.3s;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-se6c8Ujjdj .link a:hover:before {
  right: -3px;
}
.cid-se6c8Ujjdj .link,
.cid-se6c8Ujjdj .link-wrap {
  color: #ffffff;
}
.cid-se6c8Ujjdj .mbr-text,
.cid-se6c8Ujjdj .mbr-section-btn {
  color: #333333;
}
.cid-sCB44CKGME {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f1f1;
}
.cid-sCB44CKGME .carousel-item {
  justify-content: center;
}
.cid-sCB44CKGME .carousel-item.active,
.cid-sCB44CKGME .carousel-item-next,
.cid-sCB44CKGME .carousel-item-prev {
  display: flex;
}
.cid-sCB44CKGME .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sCB44CKGME .carousel-controls {
    display: none;
  }
}
.cid-sCB44CKGME .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sCB44CKGME .author-wrap {
  margin-bottom: 10px;
}
.cid-sCB44CKGME .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sCB44CKGME .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sCB44CKGME .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sCB44CKGME .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sCB44CKGME .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sCB44CKGME .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sCB44CKGME .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sCB44CKGME .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #c1c1c1;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sCB44CKGME .carousel-indicators li.active {
  background-color: #1f690c;
}
.cid-sCB44CKGME .carousel-indicators li.active,
.cid-sCB44CKGME .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCB44CKGME .carousel-indicators li::after,
.cid-sCB44CKGME .carousel-indicators li::before {
  content: none;
}
.cid-sCB44CKGME .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCB44CKGME .carousel-indicators {
    display: none !important;
  }
}
.cid-sDJtEAXWdv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}
.cid-sDJtEAXWdv .card-wrapper {
  display: flex;
}
.cid-sDJtEAXWdv .mbr-iconfont {
  font-size: 2rem;
  color: #0095ff;
  padding-right: 1.5rem;
}
.cid-sDJtEAXWdv h4 {
  margin: 0;
}
.cid-sDJtEAXWdv .card-text {
  color: #999999;
}
.cid-sDJtEAXWdv .card-title {
  text-align: center;
}
.cid-se6jfgCYD3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #555555;
}
@media (max-width: 767px) {
  .cid-se6jfgCYD3 .content {
    text-align: center;
  }
  .cid-se6jfgCYD3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se6jfgCYD3 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se6jfgCYD3 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se6jfgCYD3 .media-wrap img {
  height: 6rem;
}
.cid-se6jfgCYD3 .mbr-text {
  color: #8d97ad;
}
.cid-se6jfgCYD3 .p-title {
  font-size: 17px;
}
.cid-se6jfgCYD3 .p-title span {
  color: #111111;
}
.cid-se6jfgCYD3 .title-card {
  font-size: 1.3rem;
}
.cid-se6jfgCYD3 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-se6jfgCYD3 .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-se6jfgCYD3 .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-se6jfgCYD3 .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-se6jfgCYD3 .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-se6jfgCYD3 .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-se6jfgCYD3 .copyright img {
  margin-right: 10px;
}
.cid-se6jfgCYD3 .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #cccccc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-se6jfgCYD3 .icon-transition span:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-se6jfgCYD3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se6jfgCYD3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-se6jfgCYD3 .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se6jfgCYD3 H5 {
  color: #ffffff;
}
.cid-se6jfgCYD3 .p-title,
.cid-se6jfgCYD3 .social-media {
  color: #cccccc;
}
.cid-se6jfgCYD3 .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-rOMqBO2KJL .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOMqBO2KJL .dropdown-menu {
  padding: 0;
}
.cid-rOMqBO2KJL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-rOMqBO2KJL .dropdown-item:hover,
.cid-rOMqBO2KJL .dropdown-item:focus {
  background: #1f690c !important;
  color: white!important;
}
.cid-rOMqBO2KJL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-rOMqBO2KJL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rOMqBO2KJL .nav-link {
  position: relative;
}
.cid-rOMqBO2KJL .container {
  display: flex;
  margin: auto;
}
.cid-rOMqBO2KJL .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rOMqBO2KJL .navbar-caption {
  padding-right: 4rem;
}
.cid-rOMqBO2KJL .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-rOMqBO2KJL .dropdown-menu,
.cid-rOMqBO2KJL .navbar.opened {
  background: #555555 !important;
}
.cid-rOMqBO2KJL .nav-item:focus,
.cid-rOMqBO2KJL .nav-link:focus {
  outline: none;
}
.cid-rOMqBO2KJL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOMqBO2KJL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rOMqBO2KJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rOMqBO2KJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rOMqBO2KJL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rOMqBO2KJL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rOMqBO2KJL .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #555555;
}
.cid-rOMqBO2KJL .navbar.opened {
  transition: all .3s;
}
.cid-rOMqBO2KJL .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-rOMqBO2KJL .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-rOMqBO2KJL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rOMqBO2KJL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rOMqBO2KJL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rOMqBO2KJL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rOMqBO2KJL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rOMqBO2KJL .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: 55%;
}
.cid-rOMqBO2KJL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rOMqBO2KJL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rOMqBO2KJL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rOMqBO2KJL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rOMqBO2KJL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rOMqBO2KJL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rOMqBO2KJL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rOMqBO2KJL .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: 55%;
  }
  .cid-rOMqBO2KJL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rOMqBO2KJL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rOMqBO2KJL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rOMqBO2KJL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rOMqBO2KJL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rOMqBO2KJL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rOMqBO2KJL .navbar.navbar-short {
  background: #555555 !important;
  min-height: 60px;
}
.cid-rOMqBO2KJL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rOMqBO2KJL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rOMqBO2KJL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rOMqBO2KJL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rOMqBO2KJL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rOMqBO2KJL .dropdown-item.active,
.cid-rOMqBO2KJL .dropdown-item:active {
  background-color: transparent;
}
.cid-rOMqBO2KJL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rOMqBO2KJL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rOMqBO2KJL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rOMqBO2KJL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #555555;
}
.cid-rOMqBO2KJL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rOMqBO2KJL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rOMqBO2KJL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rOMqBO2KJL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-rOMqBO2KJL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOMqBO2KJL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rOMqBO2KJL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rOMqBO2KJL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rOMqBO2KJL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rOMqBO2KJL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rOMqBO2KJL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOMqBO2KJL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rOMqBO2KJL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rOMqBO2KJL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOMqBO2KJL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rOMqBO2KJL a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rOMqBO2KJL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rOMqBO2KJL .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rOMqBO2KJL .navbar {
    height: 77px;
  }
  .cid-rOMqBO2KJL .navbar.opened {
    height: auto;
  }
  .cid-rOMqBO2KJL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se9AC6Is0A {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dcs-header-website-3-2000x841.jpg");
}
.cid-se9AC6Is0A .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-se9AC6Is0A .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-se9AC6Is0A .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-se9AC6Is0A .card-title,
.cid-se9AC6Is0A .card-img {
  text-align: left;
}
.cid-se9AC6Is0A .mbr-text,
.cid-se9AC6Is0A .mbr-section-btn {
  text-align: left;
}
.cid-se9AQFkVTp {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  background-color: #ffffff;
}
.cid-se9AQFkVTp ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-se9AQFkVTp ul li {
  padding: 1rem 0;
}
.cid-se9AQFkVTp ul li:hover {
  color: #1f690c;
}
.cid-se9AQFkVTp .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-se9AQFkVTp .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-se9AQFkVTp .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-se9AQFkVTp .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se9AQFkVTp .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-se9AQFkVTp .map {
    height: auto;
  }
}
.cid-se9AQFkVTp .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-se9AQFkVTp .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-se9AQFkVTp .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-se9AQFkVTp .social-list a:hover {
  opacity: 1;
}
.cid-se9AQFkVTp .row-element,
.cid-se9AQFkVTp .image-element {
  padding: 0;
}
.cid-se9AQFkVTp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-se9AQFkVTp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1f690c, #003bff);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-se9AQFkVTp .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-se9AQFkVTp .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-se9AQFkVTp .text-content {
    padding: 2rem 1rem;
  }
  .cid-se9AQFkVTp .underline .line {
    height: 2px;
  }
  .cid-se9AQFkVTp .mbr-title,
  .cid-se9AQFkVTp .underline,
  .cid-se9AQFkVTp .mbr-text,
  .cid-se9AQFkVTp .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-se9AQFkVTp .mbr-title,
.cid-se9AQFkVTp .underline {
  color: #000000;
}
.cid-se9AQFkVTp .mbr-text,
.cid-se9AQFkVTp .mbr-section-btn {
  color: #ffffff;
}
.cid-se9AQFkVTp mbr-list LI {
  color: #ffffff;
}
.cid-se9AQFkVTp mbr-list {
  text-align: center;
}
.cid-se9AQFkVTp .mbr-list,
.cid-se9AQFkVTp .social-list mbr-list {
  color: #ffffff;
}
.cid-se9AQFkVTp .mbr-text {
  color: #000000;
}
.cid-se9AQFkVTp .social-list,
.cid-se9AQFkVTp .mbr-list {
  color: #000000;
}
.cid-se9AQFkVTp .social-list,
.cid-se9AQFkVTp .mbr-list UL {
  text-align: left;
}
.cid-sCB4lDcCN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f1f1;
}
.cid-sCB4lDcCN0 .carousel-item {
  justify-content: center;
}
.cid-sCB4lDcCN0 .carousel-item.active,
.cid-sCB4lDcCN0 .carousel-item-next,
.cid-sCB4lDcCN0 .carousel-item-prev {
  display: flex;
}
.cid-sCB4lDcCN0 .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-controls {
    display: none;
  }
}
.cid-sCB4lDcCN0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sCB4lDcCN0 .author-wrap {
  margin-bottom: 10px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sCB4lDcCN0 .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sCB4lDcCN0 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sCB4lDcCN0 .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sCB4lDcCN0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #c1c1c1;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active {
  background-color: #1f690c;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active,
.cid-sCB4lDcCN0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCB4lDcCN0 .carousel-indicators li::after,
.cid-sCB4lDcCN0 .carousel-indicators li::before {
  content: none;
}
.cid-sCB4lDcCN0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-indicators {
    display: none !important;
  }
}
.cid-sDJtEAXWdv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}
.cid-sDJtEAXWdv .card-wrapper {
  display: flex;
}
.cid-sDJtEAXWdv .mbr-iconfont {
  font-size: 2rem;
  color: #0095ff;
  padding-right: 1.5rem;
}
.cid-sDJtEAXWdv h4 {
  margin: 0;
}
.cid-sDJtEAXWdv .card-text {
  color: #999999;
}
.cid-sDJtEAXWdv .card-title {
  text-align: center;
}
.cid-se9AC7yzky {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #555555;
}
@media (max-width: 767px) {
  .cid-se9AC7yzky .content {
    text-align: center;
  }
  .cid-se9AC7yzky .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se9AC7yzky .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se9AC7yzky .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se9AC7yzky .media-wrap img {
  height: 6rem;
}
.cid-se9AC7yzky .mbr-text {
  color: #8d97ad;
}
.cid-se9AC7yzky .p-title {
  font-size: 17px;
}
.cid-se9AC7yzky .p-title span {
  color: #111111;
}
.cid-se9AC7yzky .title-card {
  font-size: 1.3rem;
}
.cid-se9AC7yzky .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-se9AC7yzky .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-se9AC7yzky .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-se9AC7yzky .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-se9AC7yzky .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-se9AC7yzky .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-se9AC7yzky .copyright img {
  margin-right: 10px;
}
.cid-se9AC7yzky .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #cccccc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-se9AC7yzky .icon-transition span:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-se9AC7yzky .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se9AC7yzky .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-se9AC7yzky .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se9AC7yzky H5 {
  color: #ffffff;
}
.cid-se9AC7yzky .p-title,
.cid-se9AC7yzky .social-media {
  color: #cccccc;
}
.cid-se9AC7yzky .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-se9AC7X7aZ .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9AC7X7aZ .dropdown-menu {
  padding: 0;
}
.cid-se9AC7X7aZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-se9AC7X7aZ .dropdown-item:hover,
.cid-se9AC7X7aZ .dropdown-item:focus {
  background: #1f690c !important;
  color: white!important;
}
.cid-se9AC7X7aZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-se9AC7X7aZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-se9AC7X7aZ .nav-link {
  position: relative;
}
.cid-se9AC7X7aZ .container {
  display: flex;
  margin: auto;
}
.cid-se9AC7X7aZ .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se9AC7X7aZ .navbar-caption {
  padding-right: 4rem;
}
.cid-se9AC7X7aZ .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-se9AC7X7aZ .dropdown-menu,
.cid-se9AC7X7aZ .navbar.opened {
  background: #555555 !important;
}
.cid-se9AC7X7aZ .nav-item:focus,
.cid-se9AC7X7aZ .nav-link:focus {
  outline: none;
}
.cid-se9AC7X7aZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9AC7X7aZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se9AC7X7aZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-se9AC7X7aZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9AC7X7aZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se9AC7X7aZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se9AC7X7aZ .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #555555;
}
.cid-se9AC7X7aZ .navbar.opened {
  transition: all .3s;
}
.cid-se9AC7X7aZ .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-se9AC7X7aZ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-se9AC7X7aZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se9AC7X7aZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se9AC7X7aZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-se9AC7X7aZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se9AC7X7aZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se9AC7X7aZ .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: 55%;
}
.cid-se9AC7X7aZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se9AC7X7aZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se9AC7X7aZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se9AC7X7aZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se9AC7X7aZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se9AC7X7aZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se9AC7X7aZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se9AC7X7aZ .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: 55%;
  }
  .cid-se9AC7X7aZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se9AC7X7aZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se9AC7X7aZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se9AC7X7aZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-se9AC7X7aZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se9AC7X7aZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se9AC7X7aZ .navbar.navbar-short {
  background: #555555 !important;
  min-height: 60px;
}
.cid-se9AC7X7aZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se9AC7X7aZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se9AC7X7aZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se9AC7X7aZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se9AC7X7aZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se9AC7X7aZ .dropdown-item.active,
.cid-se9AC7X7aZ .dropdown-item:active {
  background-color: transparent;
}
.cid-se9AC7X7aZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se9AC7X7aZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-se9AC7X7aZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-se9AC7X7aZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #555555;
}
.cid-se9AC7X7aZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se9AC7X7aZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se9AC7X7aZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se9AC7X7aZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-se9AC7X7aZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se9AC7X7aZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se9AC7X7aZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se9AC7X7aZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se9AC7X7aZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se9AC7X7aZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se9AC7X7aZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9AC7X7aZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se9AC7X7aZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se9AC7X7aZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9AC7X7aZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-se9AC7X7aZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-se9AC7X7aZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-se9AC7X7aZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se9AC7X7aZ .navbar {
    height: 77px;
  }
  .cid-se9AC7X7aZ .navbar.opened {
    height: auto;
  }
  .cid-se9AC7X7aZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se9ud2Wk5W {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dcs-header-website-3-2000x841.jpg");
}
.cid-se9ud2Wk5W .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-se9ud2Wk5W .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-se9ud2Wk5W .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-se9ud2Wk5W .card-title,
.cid-se9ud2Wk5W .card-img {
  text-align: left;
}
.cid-se9ud2Wk5W .mbr-text,
.cid-se9ud2Wk5W .mbr-section-btn {
  text-align: left;
}
.cid-sCB4lDcCN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f1f1;
}
.cid-sCB4lDcCN0 .carousel-item {
  justify-content: center;
}
.cid-sCB4lDcCN0 .carousel-item.active,
.cid-sCB4lDcCN0 .carousel-item-next,
.cid-sCB4lDcCN0 .carousel-item-prev {
  display: flex;
}
.cid-sCB4lDcCN0 .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-controls {
    display: none;
  }
}
.cid-sCB4lDcCN0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sCB4lDcCN0 .author-wrap {
  margin-bottom: 10px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sCB4lDcCN0 .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sCB4lDcCN0 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sCB4lDcCN0 .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sCB4lDcCN0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #c1c1c1;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active {
  background-color: #1f690c;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active,
.cid-sCB4lDcCN0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCB4lDcCN0 .carousel-indicators li::after,
.cid-sCB4lDcCN0 .carousel-indicators li::before {
  content: none;
}
.cid-sCB4lDcCN0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-indicators {
    display: none !important;
  }
}
.cid-sDJtEAXWdv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}
.cid-sDJtEAXWdv .card-wrapper {
  display: flex;
}
.cid-sDJtEAXWdv .mbr-iconfont {
  font-size: 2rem;
  color: #0095ff;
  padding-right: 1.5rem;
}
.cid-sDJtEAXWdv h4 {
  margin: 0;
}
.cid-sDJtEAXWdv .card-text {
  color: #999999;
}
.cid-sDJtEAXWdv .card-title {
  text-align: center;
}
.cid-se9ud4o4AR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #555555;
}
@media (max-width: 767px) {
  .cid-se9ud4o4AR .content {
    text-align: center;
  }
  .cid-se9ud4o4AR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se9ud4o4AR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se9ud4o4AR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se9ud4o4AR .media-wrap img {
  height: 6rem;
}
.cid-se9ud4o4AR .mbr-text {
  color: #8d97ad;
}
.cid-se9ud4o4AR .p-title {
  font-size: 17px;
}
.cid-se9ud4o4AR .p-title span {
  color: #111111;
}
.cid-se9ud4o4AR .title-card {
  font-size: 1.3rem;
}
.cid-se9ud4o4AR .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-se9ud4o4AR .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-se9ud4o4AR .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-se9ud4o4AR .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-se9ud4o4AR .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-se9ud4o4AR .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-se9ud4o4AR .copyright img {
  margin-right: 10px;
}
.cid-se9ud4o4AR .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #cccccc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-se9ud4o4AR .icon-transition span:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-se9ud4o4AR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se9ud4o4AR .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-se9ud4o4AR .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se9ud4o4AR H5 {
  color: #ffffff;
}
.cid-se9ud4o4AR .p-title,
.cid-se9ud4o4AR .social-media {
  color: #cccccc;
}
.cid-se9ud4o4AR .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-se9ud4PLhi .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9ud4PLhi .dropdown-menu {
  padding: 0;
}
.cid-se9ud4PLhi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-se9ud4PLhi .dropdown-item:hover,
.cid-se9ud4PLhi .dropdown-item:focus {
  background: #1f690c !important;
  color: white!important;
}
.cid-se9ud4PLhi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-se9ud4PLhi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-se9ud4PLhi .nav-link {
  position: relative;
}
.cid-se9ud4PLhi .container {
  display: flex;
  margin: auto;
}
.cid-se9ud4PLhi .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se9ud4PLhi .navbar-caption {
  padding-right: 4rem;
}
.cid-se9ud4PLhi .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-se9ud4PLhi .dropdown-menu,
.cid-se9ud4PLhi .navbar.opened {
  background: #555555 !important;
}
.cid-se9ud4PLhi .nav-item:focus,
.cid-se9ud4PLhi .nav-link:focus {
  outline: none;
}
.cid-se9ud4PLhi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9ud4PLhi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se9ud4PLhi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-se9ud4PLhi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9ud4PLhi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se9ud4PLhi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se9ud4PLhi .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #555555;
}
.cid-se9ud4PLhi .navbar.opened {
  transition: all .3s;
}
.cid-se9ud4PLhi .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-se9ud4PLhi .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-se9ud4PLhi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se9ud4PLhi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se9ud4PLhi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-se9ud4PLhi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se9ud4PLhi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se9ud4PLhi .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: 55%;
}
.cid-se9ud4PLhi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se9ud4PLhi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se9ud4PLhi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se9ud4PLhi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se9ud4PLhi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se9ud4PLhi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se9ud4PLhi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se9ud4PLhi .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: 55%;
  }
  .cid-se9ud4PLhi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se9ud4PLhi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se9ud4PLhi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se9ud4PLhi .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-se9ud4PLhi .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se9ud4PLhi .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se9ud4PLhi .navbar.navbar-short {
  background: #555555 !important;
  min-height: 60px;
}
.cid-se9ud4PLhi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se9ud4PLhi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se9ud4PLhi .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se9ud4PLhi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se9ud4PLhi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se9ud4PLhi .dropdown-item.active,
.cid-se9ud4PLhi .dropdown-item:active {
  background-color: transparent;
}
.cid-se9ud4PLhi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se9ud4PLhi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-se9ud4PLhi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-se9ud4PLhi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #555555;
}
.cid-se9ud4PLhi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se9ud4PLhi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se9ud4PLhi ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se9ud4PLhi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-se9ud4PLhi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se9ud4PLhi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se9ud4PLhi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se9ud4PLhi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se9ud4PLhi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se9ud4PLhi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se9ud4PLhi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9ud4PLhi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se9ud4PLhi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se9ud4PLhi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9ud4PLhi .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-se9ud4PLhi a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-se9ud4PLhi .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-se9ud4PLhi .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se9ud4PLhi .navbar {
    height: 77px;
  }
  .cid-se9ud4PLhi .navbar.opened {
    height: auto;
  }
  .cid-se9ud4PLhi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se9nwqnE4o {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dcs-header-website-3-2000x841.jpg");
}
.cid-se9nwqnE4o .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-se9nwqnE4o .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-se9nwqnE4o .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-se9nwqnE4o .card-title,
.cid-se9nwqnE4o .card-img {
  text-align: left;
}
.cid-se9nwqnE4o .mbr-text,
.cid-se9nwqnE4o .mbr-section-btn {
  text-align: left;
}
.cid-se9sUZ8B3u {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-se9sUZ8B3u img {
  width: 120px;
  margin: auto;
}
.cid-se9sUZ8B3u .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-se9sUZ8B3u .card {
    max-width: 14.28%;
  }
}
.cid-se9sUZ8B3u .mbr-text,
.cid-se9sUZ8B3u .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-se9nwruThT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-se9nwruThT .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-se9nwruThT .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-se9nwruThT .card:hover {
  margin-top: -0.6rem;
}
.cid-se9nwruThT .card-wrapper {
  position: relative;
}
.cid-se9nwruThT .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-se9nwruThT .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-se9nwruThT .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-se9nwruThT .big {
  margin-top: -25%;
}
.cid-se9nwruThT .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-se9nwruThT .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-se9nwruThT .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-sCB4lDcCN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f1f1;
}
.cid-sCB4lDcCN0 .carousel-item {
  justify-content: center;
}
.cid-sCB4lDcCN0 .carousel-item.active,
.cid-sCB4lDcCN0 .carousel-item-next,
.cid-sCB4lDcCN0 .carousel-item-prev {
  display: flex;
}
.cid-sCB4lDcCN0 .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-controls {
    display: none;
  }
}
.cid-sCB4lDcCN0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sCB4lDcCN0 .author-wrap {
  margin-bottom: 10px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sCB4lDcCN0 .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sCB4lDcCN0 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sCB4lDcCN0 .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sCB4lDcCN0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #c1c1c1;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active {
  background-color: #1f690c;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active,
.cid-sCB4lDcCN0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCB4lDcCN0 .carousel-indicators li::after,
.cid-sCB4lDcCN0 .carousel-indicators li::before {
  content: none;
}
.cid-sCB4lDcCN0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-indicators {
    display: none !important;
  }
}
.cid-sDJtEAXWdv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}
.cid-sDJtEAXWdv .card-wrapper {
  display: flex;
}
.cid-sDJtEAXWdv .mbr-iconfont {
  font-size: 2rem;
  color: #0095ff;
  padding-right: 1.5rem;
}
.cid-sDJtEAXWdv h4 {
  margin: 0;
}
.cid-sDJtEAXWdv .card-text {
  color: #999999;
}
.cid-sDJtEAXWdv .card-title {
  text-align: center;
}
.cid-se9nwsxCbM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #555555;
}
@media (max-width: 767px) {
  .cid-se9nwsxCbM .content {
    text-align: center;
  }
  .cid-se9nwsxCbM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se9nwsxCbM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se9nwsxCbM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se9nwsxCbM .media-wrap img {
  height: 6rem;
}
.cid-se9nwsxCbM .mbr-text {
  color: #8d97ad;
}
.cid-se9nwsxCbM .p-title {
  font-size: 17px;
}
.cid-se9nwsxCbM .p-title span {
  color: #111111;
}
.cid-se9nwsxCbM .title-card {
  font-size: 1.3rem;
}
.cid-se9nwsxCbM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-se9nwsxCbM .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-se9nwsxCbM .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-se9nwsxCbM .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-se9nwsxCbM .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-se9nwsxCbM .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-se9nwsxCbM .copyright img {
  margin-right: 10px;
}
.cid-se9nwsxCbM .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #cccccc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-se9nwsxCbM .icon-transition span:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-se9nwsxCbM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se9nwsxCbM .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-se9nwsxCbM .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se9nwsxCbM H5 {
  color: #ffffff;
}
.cid-se9nwsxCbM .p-title,
.cid-se9nwsxCbM .social-media {
  color: #cccccc;
}
.cid-se9nwsxCbM .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-se9nwt1IZU .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9nwt1IZU .dropdown-menu {
  padding: 0;
}
.cid-se9nwt1IZU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-se9nwt1IZU .dropdown-item:hover,
.cid-se9nwt1IZU .dropdown-item:focus {
  background: #1f690c !important;
  color: white!important;
}
.cid-se9nwt1IZU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-se9nwt1IZU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-se9nwt1IZU .nav-link {
  position: relative;
}
.cid-se9nwt1IZU .container {
  display: flex;
  margin: auto;
}
.cid-se9nwt1IZU .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se9nwt1IZU .navbar-caption {
  padding-right: 4rem;
}
.cid-se9nwt1IZU .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-se9nwt1IZU .dropdown-menu,
.cid-se9nwt1IZU .navbar.opened {
  background: #555555 !important;
}
.cid-se9nwt1IZU .nav-item:focus,
.cid-se9nwt1IZU .nav-link:focus {
  outline: none;
}
.cid-se9nwt1IZU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9nwt1IZU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se9nwt1IZU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-se9nwt1IZU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se9nwt1IZU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se9nwt1IZU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se9nwt1IZU .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #555555;
}
.cid-se9nwt1IZU .navbar.opened {
  transition: all .3s;
}
.cid-se9nwt1IZU .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-se9nwt1IZU .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-se9nwt1IZU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se9nwt1IZU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se9nwt1IZU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-se9nwt1IZU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se9nwt1IZU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se9nwt1IZU .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: 55%;
}
.cid-se9nwt1IZU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se9nwt1IZU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se9nwt1IZU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se9nwt1IZU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se9nwt1IZU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se9nwt1IZU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se9nwt1IZU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se9nwt1IZU .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: 55%;
  }
  .cid-se9nwt1IZU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se9nwt1IZU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se9nwt1IZU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se9nwt1IZU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-se9nwt1IZU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se9nwt1IZU .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se9nwt1IZU .navbar.navbar-short {
  background: #555555 !important;
  min-height: 60px;
}
.cid-se9nwt1IZU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se9nwt1IZU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se9nwt1IZU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se9nwt1IZU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se9nwt1IZU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se9nwt1IZU .dropdown-item.active,
.cid-se9nwt1IZU .dropdown-item:active {
  background-color: transparent;
}
.cid-se9nwt1IZU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se9nwt1IZU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-se9nwt1IZU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-se9nwt1IZU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #555555;
}
.cid-se9nwt1IZU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se9nwt1IZU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se9nwt1IZU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se9nwt1IZU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-se9nwt1IZU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se9nwt1IZU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se9nwt1IZU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se9nwt1IZU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se9nwt1IZU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se9nwt1IZU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se9nwt1IZU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9nwt1IZU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se9nwt1IZU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se9nwt1IZU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se9nwt1IZU .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-se9nwt1IZU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-se9nwt1IZU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-se9nwt1IZU .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se9nwt1IZU .navbar {
    height: 77px;
  }
  .cid-se9nwt1IZU .navbar.opened {
    height: auto;
  }
  .cid-se9nwt1IZU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sea0rM3UUc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dcs-header-website-3-2000x841.jpg");
}
.cid-sea0rM3UUc .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sea0rM3UUc .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sea0rM3UUc .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sea0rM3UUc .card-title,
.cid-sea0rM3UUc .card-img {
  text-align: left;
}
.cid-sea0rM3UUc .mbr-text,
.cid-sea0rM3UUc .mbr-section-btn {
  text-align: left;
}
.cid-sea0rMwFzw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sea0rMwFzw .mbr-text {
  position: relative;
  text-align: left;
}
.cid-sea0rMwFzw .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-sea0rMwFzw img {
  object-fit: contain;
}
.cid-sea0rMwFzw .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-sea0rMwFzw .mbr-text:after,
  .cid-sea0rMwFzw .mbr-text:before {
    display: none;
  }
}
.cid-sea0rMwFzw .mbr-section-title,
.cid-sea0rMwFzw .logo {
  text-align: left;
}
.cid-sea0Atg34r {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sea0Atg34r .image-block {
  margin: auto;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sea0Atg34r .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1f690c;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-sea0Atg34r .image-block:hover:before {
  opacity: 0.4;
}
.cid-sea0Atg34r .image-block:hover .wrap {
  opacity: 1;
}
.cid-sea0Atg34r .image-block:hover img {
  transform: scale(1.05);
}
.cid-sea0Atg34r h4 {
  letter-spacing: 2px;
}
.cid-sea0Atg34r figcaption {
  position: relative;
}
.cid-sea0Atg34r figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-sea0Atg34r img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sea0Atg34r .image-block {
    max-height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sea0Atg34r .wrap {
    opacity: 1!important;
  }
  .cid-sea0Atg34r .image-block:before {
    opacity: 0.2!important;
  }
}
.cid-sCBTVXVDvF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sCBTVXVDvF .title_block {
  margin-bottom: 80px;
}
.cid-sCBTVXVDvF .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #1f690c;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sCBTVXVDvF .mbr-section-title {
  color: #000000;
}
.cid-sCBTVXVDvF .image img {
  width: 100%;
  object-fit: cover;
}
.cid-sCBTVXVDvF .mbr-text {
  margin-top: 30px;
}
.cid-sCBTVXVDvF .nav-tabs .nav-item.open .nav-link:focus,
.cid-sCBTVXVDvF .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sCBTVXVDvF .nav-tabs {
  border: none;
}
.cid-sCBTVXVDvF .nav-item {
  width: 100%;
  margin-bottom: 30px;
}
.cid-sCBTVXVDvF .nav-tabs .nav-link {
  background-color: #f1f1f1 !important;
  line-height: 1;
  padding: 30px 40px;
  display: block;
  border-radius: 5px !important;
  border: none;
  color: #000000 !important;
  box-shadow: 0px 20px 60px 0px rgba(0, 11, 40, 0.06);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sCBTVXVDvF .nav-tabs .nav-link.active {
  background-color: #1f690c !important;
  box-shadow: 0px 40px 80px 0px rgba(1, 1, 64, 0.08);
  color: #ffffff !important;
}
.cid-sCBTVXVDvF .nav-tabs .nav-link:hover {
  background-color: #1f690c !important;
  box-shadow: 0px 20px 40px 0px rgba(0, 33, 121, 0.08);
  color: #ffffff !important;
  cursor: pointer;
}
.cid-sCBTVXVDvF .nav-tabs .nav-link strong,
.cid-sCBTVXVDvF .nav-tabs .nav-link b {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .cid-sCBTVXVDvF .title_block {
    margin-bottom: 40px;
  }
  .cid-sCBTVXVDvF .nav-tabs .nav-link {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sCBTVXVDvF .mbr-text {
    margin-top: 20px;
  }
}
.cid-sCB4lDcCN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f1f1;
}
.cid-sCB4lDcCN0 .carousel-item {
  justify-content: center;
}
.cid-sCB4lDcCN0 .carousel-item.active,
.cid-sCB4lDcCN0 .carousel-item-next,
.cid-sCB4lDcCN0 .carousel-item-prev {
  display: flex;
}
.cid-sCB4lDcCN0 .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-controls {
    display: none;
  }
}
.cid-sCB4lDcCN0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sCB4lDcCN0 .author-wrap {
  margin-bottom: 10px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sCB4lDcCN0 .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sCB4lDcCN0 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sCB4lDcCN0 .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sCB4lDcCN0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #c1c1c1;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active {
  background-color: #1f690c;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active,
.cid-sCB4lDcCN0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCB4lDcCN0 .carousel-indicators li::after,
.cid-sCB4lDcCN0 .carousel-indicators li::before {
  content: none;
}
.cid-sCB4lDcCN0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-indicators {
    display: none !important;
  }
}
.cid-sDJtEAXWdv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}
.cid-sDJtEAXWdv .card-wrapper {
  display: flex;
}
.cid-sDJtEAXWdv .mbr-iconfont {
  font-size: 2rem;
  color: #0095ff;
  padding-right: 1.5rem;
}
.cid-sDJtEAXWdv h4 {
  margin: 0;
}
.cid-sDJtEAXWdv .card-text {
  color: #999999;
}
.cid-sDJtEAXWdv .card-title {
  text-align: center;
}
.cid-sea0rOW4Dm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #555555;
}
@media (max-width: 767px) {
  .cid-sea0rOW4Dm .content {
    text-align: center;
  }
  .cid-sea0rOW4Dm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sea0rOW4Dm .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sea0rOW4Dm .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sea0rOW4Dm .media-wrap img {
  height: 6rem;
}
.cid-sea0rOW4Dm .mbr-text {
  color: #8d97ad;
}
.cid-sea0rOW4Dm .p-title {
  font-size: 17px;
}
.cid-sea0rOW4Dm .p-title span {
  color: #111111;
}
.cid-sea0rOW4Dm .title-card {
  font-size: 1.3rem;
}
.cid-sea0rOW4Dm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sea0rOW4Dm .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sea0rOW4Dm .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sea0rOW4Dm .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sea0rOW4Dm .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sea0rOW4Dm .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sea0rOW4Dm .copyright img {
  margin-right: 10px;
}
.cid-sea0rOW4Dm .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #cccccc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sea0rOW4Dm .icon-transition span:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sea0rOW4Dm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sea0rOW4Dm .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sea0rOW4Dm .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sea0rOW4Dm H5 {
  color: #ffffff;
}
.cid-sea0rOW4Dm .p-title,
.cid-sea0rOW4Dm .social-media {
  color: #cccccc;
}
.cid-sea0rOW4Dm .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-sea0rQ1B7K .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sea0rQ1B7K .dropdown-menu {
  padding: 0;
}
.cid-sea0rQ1B7K .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sea0rQ1B7K .dropdown-item:hover,
.cid-sea0rQ1B7K .dropdown-item:focus {
  background: #1f690c !important;
  color: white!important;
}
.cid-sea0rQ1B7K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sea0rQ1B7K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sea0rQ1B7K .nav-link {
  position: relative;
}
.cid-sea0rQ1B7K .container {
  display: flex;
  margin: auto;
}
.cid-sea0rQ1B7K .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sea0rQ1B7K .navbar-caption {
  padding-right: 4rem;
}
.cid-sea0rQ1B7K .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-sea0rQ1B7K .dropdown-menu,
.cid-sea0rQ1B7K .navbar.opened {
  background: #555555 !important;
}
.cid-sea0rQ1B7K .nav-item:focus,
.cid-sea0rQ1B7K .nav-link:focus {
  outline: none;
}
.cid-sea0rQ1B7K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sea0rQ1B7K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sea0rQ1B7K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sea0rQ1B7K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sea0rQ1B7K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sea0rQ1B7K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sea0rQ1B7K .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #555555;
}
.cid-sea0rQ1B7K .navbar.opened {
  transition: all .3s;
}
.cid-sea0rQ1B7K .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sea0rQ1B7K .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sea0rQ1B7K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sea0rQ1B7K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sea0rQ1B7K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sea0rQ1B7K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sea0rQ1B7K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sea0rQ1B7K .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: 55%;
}
.cid-sea0rQ1B7K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sea0rQ1B7K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sea0rQ1B7K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sea0rQ1B7K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sea0rQ1B7K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sea0rQ1B7K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sea0rQ1B7K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sea0rQ1B7K .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: 55%;
  }
  .cid-sea0rQ1B7K .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sea0rQ1B7K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sea0rQ1B7K .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sea0rQ1B7K .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sea0rQ1B7K .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sea0rQ1B7K .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sea0rQ1B7K .navbar.navbar-short {
  background: #555555 !important;
  min-height: 60px;
}
.cid-sea0rQ1B7K .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sea0rQ1B7K .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sea0rQ1B7K .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sea0rQ1B7K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sea0rQ1B7K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sea0rQ1B7K .dropdown-item.active,
.cid-sea0rQ1B7K .dropdown-item:active {
  background-color: transparent;
}
.cid-sea0rQ1B7K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sea0rQ1B7K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sea0rQ1B7K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sea0rQ1B7K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #555555;
}
.cid-sea0rQ1B7K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sea0rQ1B7K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sea0rQ1B7K ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sea0rQ1B7K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sea0rQ1B7K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sea0rQ1B7K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sea0rQ1B7K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sea0rQ1B7K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sea0rQ1B7K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sea0rQ1B7K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sea0rQ1B7K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sea0rQ1B7K nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sea0rQ1B7K nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sea0rQ1B7K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sea0rQ1B7K .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sea0rQ1B7K a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sea0rQ1B7K .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sea0rQ1B7K .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sea0rQ1B7K .navbar {
    height: 77px;
  }
  .cid-sea0rQ1B7K .navbar.opened {
    height: auto;
  }
  .cid-sea0rQ1B7K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se8WTIXW0K {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dcs-header-website-3-2000x841.jpg");
}
.cid-se8WTIXW0K .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-se8WTIXW0K .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-se8WTIXW0K .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-se8WTIXW0K .card-title,
.cid-se8WTIXW0K .card-img {
  text-align: left;
}
.cid-se8WTIXW0K .mbr-text,
.cid-se8WTIXW0K .mbr-section-btn {
  text-align: left;
}
.cid-se8WTKqJiA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se8WTKqJiA .mbr-text {
  position: relative;
  text-align: left;
}
.cid-se8WTKqJiA .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-se8WTKqJiA img {
  object-fit: contain;
}
.cid-se8WTKqJiA .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-se8WTKqJiA .mbr-text:after,
  .cid-se8WTKqJiA .mbr-text:before {
    display: none;
  }
}
.cid-se8WTKqJiA .mbr-section-title,
.cid-se8WTKqJiA .logo {
  text-align: left;
}
.cid-se91S29bbA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f1f1f1;
}
.cid-se91S29bbA .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-se91S29bbA .mbr-section-title {
  margin: 0;
}
.cid-se91S29bbA .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-se91S29bbA .card-img span {
  color: #000000;
}
.cid-se91S29bbA .row-item {
  margin-bottom: 2rem;
}
.cid-se91S29bbA .row-item:hover .wrapper {
  background: linear-gradient(90deg, #1f690c, #1f690c);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-se91S29bbA .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-se91S29bbA .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-se91S29bbA .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-se91S29bbA .mbr-card-title,
.cid-se91S29bbA .card-img {
  text-align: center;
}
.cid-se9mgYzDUH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-se9mgYzDUH .card-title {
  line-height: 1.6;
  margin: 0;
}
.cid-se9mgYzDUH .card {
  overflow: visible;
  transition: all 0.3s;
}
.cid-se9mgYzDUH .card:hover {
  margin-top: -0.6rem;
}
.cid-se9mgYzDUH .card-wrapper {
  position: relative;
}
.cid-se9mgYzDUH .card-img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  border-radius: 6px;
}
.cid-se9mgYzDUH .card-img:hover {
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
}
.cid-se9mgYzDUH .card-img:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: black;
  opacity: 0.2;
  z-index: 10;
  pointer-events: none;
  border-radius: 6px;
}
.cid-se9mgYzDUH .big {
  margin-top: -25%;
}
.cid-se9mgYzDUH .card-box {
  position: absolute;
  overflow: hidden;
  margin-bottom: -8px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-se9mgYzDUH .small {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-se9mgYzDUH .card:not(.last-child) {
    padding-bottom: 1.5rem !important;
  }
}
.cid-sCB4lDcCN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f1f1;
}
.cid-sCB4lDcCN0 .carousel-item {
  justify-content: center;
}
.cid-sCB4lDcCN0 .carousel-item.active,
.cid-sCB4lDcCN0 .carousel-item-next,
.cid-sCB4lDcCN0 .carousel-item-prev {
  display: flex;
}
.cid-sCB4lDcCN0 .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-controls {
    display: none;
  }
}
.cid-sCB4lDcCN0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sCB4lDcCN0 .author-wrap {
  margin-bottom: 10px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sCB4lDcCN0 .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sCB4lDcCN0 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sCB4lDcCN0 .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sCB4lDcCN0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #c1c1c1;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active {
  background-color: #1f690c;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active,
.cid-sCB4lDcCN0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCB4lDcCN0 .carousel-indicators li::after,
.cid-sCB4lDcCN0 .carousel-indicators li::before {
  content: none;
}
.cid-sCB4lDcCN0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-indicators {
    display: none !important;
  }
}
.cid-sDJtEAXWdv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}
.cid-sDJtEAXWdv .card-wrapper {
  display: flex;
}
.cid-sDJtEAXWdv .mbr-iconfont {
  font-size: 2rem;
  color: #0095ff;
  padding-right: 1.5rem;
}
.cid-sDJtEAXWdv h4 {
  margin: 0;
}
.cid-sDJtEAXWdv .card-text {
  color: #999999;
}
.cid-sDJtEAXWdv .card-title {
  text-align: center;
}
.cid-se8WTMzI3z {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #555555;
}
@media (max-width: 767px) {
  .cid-se8WTMzI3z .content {
    text-align: center;
  }
  .cid-se8WTMzI3z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se8WTMzI3z .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se8WTMzI3z .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se8WTMzI3z .media-wrap img {
  height: 6rem;
}
.cid-se8WTMzI3z .mbr-text {
  color: #8d97ad;
}
.cid-se8WTMzI3z .p-title {
  font-size: 17px;
}
.cid-se8WTMzI3z .p-title span {
  color: #111111;
}
.cid-se8WTMzI3z .title-card {
  font-size: 1.3rem;
}
.cid-se8WTMzI3z .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-se8WTMzI3z .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-se8WTMzI3z .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-se8WTMzI3z .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-se8WTMzI3z .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-se8WTMzI3z .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-se8WTMzI3z .copyright img {
  margin-right: 10px;
}
.cid-se8WTMzI3z .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #cccccc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-se8WTMzI3z .icon-transition span:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-se8WTMzI3z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se8WTMzI3z .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-se8WTMzI3z .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se8WTMzI3z H5 {
  color: #ffffff;
}
.cid-se8WTMzI3z .p-title,
.cid-se8WTMzI3z .social-media {
  color: #cccccc;
}
.cid-se8WTMzI3z .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-se8WTNpzSW .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se8WTNpzSW .dropdown-menu {
  padding: 0;
}
.cid-se8WTNpzSW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-se8WTNpzSW .dropdown-item:hover,
.cid-se8WTNpzSW .dropdown-item:focus {
  background: #1f690c !important;
  color: white!important;
}
.cid-se8WTNpzSW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-se8WTNpzSW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-se8WTNpzSW .nav-link {
  position: relative;
}
.cid-se8WTNpzSW .container {
  display: flex;
  margin: auto;
}
.cid-se8WTNpzSW .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se8WTNpzSW .navbar-caption {
  padding-right: 4rem;
}
.cid-se8WTNpzSW .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-se8WTNpzSW .dropdown-menu,
.cid-se8WTNpzSW .navbar.opened {
  background: #555555 !important;
}
.cid-se8WTNpzSW .nav-item:focus,
.cid-se8WTNpzSW .nav-link:focus {
  outline: none;
}
.cid-se8WTNpzSW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se8WTNpzSW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se8WTNpzSW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-se8WTNpzSW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se8WTNpzSW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se8WTNpzSW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se8WTNpzSW .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #555555;
}
.cid-se8WTNpzSW .navbar.opened {
  transition: all .3s;
}
.cid-se8WTNpzSW .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-se8WTNpzSW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-se8WTNpzSW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se8WTNpzSW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se8WTNpzSW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-se8WTNpzSW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se8WTNpzSW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se8WTNpzSW .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: 55%;
}
.cid-se8WTNpzSW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se8WTNpzSW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se8WTNpzSW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se8WTNpzSW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se8WTNpzSW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se8WTNpzSW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se8WTNpzSW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se8WTNpzSW .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: 55%;
  }
  .cid-se8WTNpzSW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se8WTNpzSW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se8WTNpzSW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se8WTNpzSW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-se8WTNpzSW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se8WTNpzSW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se8WTNpzSW .navbar.navbar-short {
  background: #555555 !important;
  min-height: 60px;
}
.cid-se8WTNpzSW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se8WTNpzSW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se8WTNpzSW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se8WTNpzSW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se8WTNpzSW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se8WTNpzSW .dropdown-item.active,
.cid-se8WTNpzSW .dropdown-item:active {
  background-color: transparent;
}
.cid-se8WTNpzSW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se8WTNpzSW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-se8WTNpzSW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-se8WTNpzSW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #555555;
}
.cid-se8WTNpzSW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se8WTNpzSW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se8WTNpzSW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se8WTNpzSW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-se8WTNpzSW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se8WTNpzSW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se8WTNpzSW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se8WTNpzSW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se8WTNpzSW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se8WTNpzSW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se8WTNpzSW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8WTNpzSW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se8WTNpzSW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se8WTNpzSW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8WTNpzSW .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-se8WTNpzSW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-se8WTNpzSW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-se8WTNpzSW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se8WTNpzSW .navbar {
    height: 77px;
  }
  .cid-se8WTNpzSW .navbar.opened {
    height: auto;
  }
  .cid-se8WTNpzSW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se8Evl3fbj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/dcs-header-website-3-2000x841.jpg");
}
.cid-se8Evl3fbj .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-se8Evl3fbj .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-se8Evl3fbj .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-se8Evl3fbj .card-title,
.cid-se8Evl3fbj .card-img {
  text-align: left;
}
.cid-se8Evl3fbj .mbr-text,
.cid-se8Evl3fbj .mbr-section-btn {
  text-align: left;
}
.cid-se8G60lQAS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se8G60lQAS .mbr-text {
  position: relative;
  text-align: left;
}
.cid-se8G60lQAS .mbr-text:before {
  color: #ffffff;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-se8G60lQAS img {
  object-fit: contain;
}
.cid-se8G60lQAS .mbr-text:after {
  color: #ffffff;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-se8G60lQAS .mbr-text:after,
  .cid-se8G60lQAS .mbr-text:before {
    display: none;
  }
}
.cid-se8G60lQAS .mbr-section-title,
.cid-se8G60lQAS .logo {
  text-align: left;
}
.cid-se8Gxwfs3E {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-se8Gxwfs3E .mbr-section-title {
  margin-bottom: 0;
}
.cid-se8Gxwfs3E .mbr-iconfont {
  color: #cccccc;
  font-size: 1rem;
}
.cid-se8Gxwfs3E .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-se8Gxwfs3E .mbr-iconfont:hover {
  color: #ffffff;
}
.cid-se8Gxwfs3E .image-wrap {
  position: relative;
}
.cid-se8Gxwfs3E .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-se8Gxwfs3E .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-se8Gxwfs3E .card-wrap {
  margin-bottom: 3rem;
}
.cid-se8Gxwfs3E .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-se8Gxwfs3E .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-se8Gxwfs3E .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-se8Gxwfs3E .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-se8Gxwfs3E .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-se8Gxwfs3E .img-overlay {
  background: linear-gradient(transparent, #555555);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-se8Gxwfs3E .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-se8Gxwfs3E .mbr-role {
  color: #1f690c;
}
.cid-se8Gxwfs3E .mbr-text {
  color: #767676;
}
.cid-sYLef7XqTL {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-sYLef7XqTL .mbr-section-title {
  margin-bottom: 0;
}
.cid-sYLef7XqTL .mbr-iconfont {
  color: #cccccc;
  font-size: 1rem;
}
.cid-sYLef7XqTL .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sYLef7XqTL .mbr-iconfont:hover {
  color: #ffffff;
}
.cid-sYLef7XqTL .image-wrap {
  position: relative;
}
.cid-sYLef7XqTL .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-sYLef7XqTL .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-sYLef7XqTL .card-wrap {
  margin-bottom: 3rem;
}
.cid-sYLef7XqTL .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-sYLef7XqTL .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-sYLef7XqTL .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-sYLef7XqTL .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sYLef7XqTL .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-sYLef7XqTL .img-overlay {
  background: linear-gradient(transparent, #555555);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-sYLef7XqTL .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-sYLef7XqTL .mbr-role {
  color: #1f690c;
}
.cid-sYLef7XqTL .mbr-text {
  color: #767676;
}
.cid-sCB4lDcCN0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f1f1;
}
.cid-sCB4lDcCN0 .carousel-item {
  justify-content: center;
}
.cid-sCB4lDcCN0 .carousel-item.active,
.cid-sCB4lDcCN0 .carousel-item-next,
.cid-sCB4lDcCN0 .carousel-item-prev {
  display: flex;
}
.cid-sCB4lDcCN0 .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #55595c;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-controls {
    display: none;
  }
}
.cid-sCB4lDcCN0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-sCB4lDcCN0 .author-wrap {
  margin-bottom: 10px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-sCB4lDcCN0 .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sCB4lDcCN0 .author-wrap .user-info {
  margin-top: 9px;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-sCB4lDcCN0 .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-sCB4lDcCN0 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sCB4lDcCN0 .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-sCB4lDcCN0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #c1c1c1;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active {
  background-color: #1f690c;
}
.cid-sCB4lDcCN0 .carousel-indicators li.active,
.cid-sCB4lDcCN0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCB4lDcCN0 .carousel-indicators li::after,
.cid-sCB4lDcCN0 .carousel-indicators li::before {
  content: none;
}
.cid-sCB4lDcCN0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCB4lDcCN0 .carousel-indicators {
    display: none !important;
  }
}
.cid-sDJtEAXWdv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f1f1f1;
}
.cid-sDJtEAXWdv .card-wrapper {
  display: flex;
}
.cid-sDJtEAXWdv .mbr-iconfont {
  font-size: 2rem;
  color: #0095ff;
  padding-right: 1.5rem;
}
.cid-sDJtEAXWdv h4 {
  margin: 0;
}
.cid-sDJtEAXWdv .card-text {
  color: #999999;
}
.cid-sDJtEAXWdv .card-title {
  text-align: center;
}
.cid-se8DRe2AlJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #555555;
}
@media (max-width: 767px) {
  .cid-se8DRe2AlJ .content {
    text-align: center;
  }
  .cid-se8DRe2AlJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se8DRe2AlJ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se8DRe2AlJ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se8DRe2AlJ .media-wrap img {
  height: 6rem;
}
.cid-se8DRe2AlJ .mbr-text {
  color: #8d97ad;
}
.cid-se8DRe2AlJ .p-title {
  font-size: 17px;
}
.cid-se8DRe2AlJ .p-title span {
  color: #111111;
}
.cid-se8DRe2AlJ .title-card {
  font-size: 1.3rem;
}
.cid-se8DRe2AlJ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-se8DRe2AlJ .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-se8DRe2AlJ .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-se8DRe2AlJ .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-se8DRe2AlJ .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-se8DRe2AlJ .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-se8DRe2AlJ .copyright img {
  margin-right: 10px;
}
.cid-se8DRe2AlJ .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #cccccc;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-se8DRe2AlJ .icon-transition span:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-se8DRe2AlJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se8DRe2AlJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-se8DRe2AlJ .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se8DRe2AlJ H5 {
  color: #ffffff;
}
.cid-se8DRe2AlJ .p-title,
.cid-se8DRe2AlJ .social-media {
  color: #cccccc;
}
.cid-se8DRe2AlJ .copyright > p {
  color: #ffffff;
  text-align: left;
}
.cid-se8DReukSt .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se8DReukSt .dropdown-menu {
  padding: 0;
}
.cid-se8DReukSt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-se8DReukSt .dropdown-item:hover,
.cid-se8DReukSt .dropdown-item:focus {
  background: #1f690c !important;
  color: white!important;
}
.cid-se8DReukSt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-se8DReukSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-se8DReukSt .nav-link {
  position: relative;
}
.cid-se8DReukSt .container {
  display: flex;
  margin: auto;
}
.cid-se8DReukSt .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se8DReukSt .navbar-caption {
  padding-right: 4rem;
}
.cid-se8DReukSt .navbar-nav {
  justify-content: space-between;
  width: -webkit-fill-available;
}
.cid-se8DReukSt .dropdown-menu,
.cid-se8DReukSt .navbar.opened {
  background: #555555 !important;
}
.cid-se8DReukSt .nav-item:focus,
.cid-se8DReukSt .nav-link:focus {
  outline: none;
}
.cid-se8DReukSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se8DReukSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-se8DReukSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-se8DReukSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-se8DReukSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-se8DReukSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-se8DReukSt .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid #e6e6e6;
  background: #555555;
}
.cid-se8DReukSt .navbar.opened {
  transition: all .3s;
}
.cid-se8DReukSt .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-se8DReukSt .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-se8DReukSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-se8DReukSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-se8DReukSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-se8DReukSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se8DReukSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se8DReukSt .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: 55%;
}
.cid-se8DReukSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-se8DReukSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-se8DReukSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-se8DReukSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-se8DReukSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se8DReukSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se8DReukSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se8DReukSt .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: 55%;
  }
  .cid-se8DReukSt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se8DReukSt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-se8DReukSt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-se8DReukSt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-se8DReukSt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-se8DReukSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-se8DReukSt .navbar.navbar-short {
  background: #555555 !important;
  min-height: 60px;
}
.cid-se8DReukSt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se8DReukSt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-se8DReukSt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-se8DReukSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se8DReukSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se8DReukSt .dropdown-item.active,
.cid-se8DReukSt .dropdown-item:active {
  background-color: transparent;
}
.cid-se8DReukSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se8DReukSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-se8DReukSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-se8DReukSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #555555;
}
.cid-se8DReukSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se8DReukSt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se8DReukSt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se8DReukSt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-se8DReukSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-se8DReukSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-se8DReukSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se8DReukSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se8DReukSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se8DReukSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se8DReukSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8DReukSt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-se8DReukSt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-se8DReukSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8DReukSt .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-se8DReukSt a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-se8DReukSt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-se8DReukSt .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-se8DReukSt .navbar {
    height: 77px;
  }
  .cid-se8DReukSt .navbar.opened {
    height: auto;
  }
  .cid-se8DReukSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
